diff --git a/ChangeLog b/ChangeLog
index e8aaadfcd0..fbe8ab24d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -87,12 +87,16 @@ VerboseMultiSubmit, ReplaceHelpImg
- Replaced qtip with jQuery UI tooltip
- Upgraded CodeMirror to 2.37
+3.5.7.0 (not yet released)
+- bug #3779 [core] Problem with backslash in enum fields
+
3.5.6.0 (not yet released)
- bug #3593604 [status] Erroneous advisor rule
- bug #3596070 [status] localStorage broken in server status monitor
- bug #3598736 [routines] Editing a procedure with special characters
- bug #3600322 [core] Visualize GIS data throws Fatal Error
- bug #3599362 [core] Double-escaped error message
+- bug #3776 [cookies] Login without auth on second server
3.5.5.0 (2012-12-21)
- bug #3563824 [export] Support Apache's mod_deflate
diff --git a/README b/README
index f3f2c1f0b0..a03407e623 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 4.0.0-dev
+Version 4.0.0-alpha1
A set of PHP-scripts to manage MySQL over the web.
diff --git a/doc/conf.py b/doc/conf.py
index 6ca4e16a0f..90dd9d9b79 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -49,7 +49,7 @@ copyright = u'2012 - 2013, The phpMyAdmin devel team'
# built documents.
#
# The short X.Y version.
-version = '4.0.0-dev'
+version = '4.0.0-alpha1'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/js/functions.js b/js/functions.js
index 4f3317fdc5..a834ed59df 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -157,13 +157,20 @@ function PMA_current_version(data)
function PMA_display_git_revision()
{
$('#is_git_revision').remove();
- $.get("index.php?token="
- + $("input[type=hidden][name=token]").val()
- + "&git_revision=1&ajax_request=true", function (data) {
- if (data.success == true) {
- $(data.message).insertAfter('#li_pma_version');
+ $.get(
+ "index.php",
+ {
+ "server": PMA_commonParams.get('server'),
+ "token": PMA_commonParams.get('token'),
+ "git_revision": true,
+ "ajax_request": true
+ },
+ function (data) {
+ if (data.success == true) {
+ $(data.message).insertAfter('#li_pma_version');
+ }
}
- });
+ );
}
/**
@@ -3817,62 +3824,4 @@ AJAX.registerOnload('functions.js', function () {
$('a.login-link').live('click', function(e) {
e.preventDefault();
window.location.reload(true);
-});
-
-/**
- * jQuery coding for 'Change Table' and 'Add Column'. Used on tbl_structure.php *
- * Attach Ajax Event handlers for Change Table
- */
-$(function () {
- /**
- *Ajax action for submitting the "Column Change" and "Add Column" form
- **/
- $(".append_fields_form.ajax").live('submit', function(event) {
- event.preventDefault();
- /**
- * @var the_form object referring to the export form
- */
- var $form = $(this);
-
- /*
- * First validate the form; if there is a problem, avoid submitting it
- *
- * checkTableEditForm() needs a pure element and not a jQuery object,
- * this is why we pass $form[0] as a parameter (the jQuery object
- * is actually an array of DOM elements)
- */
- if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) {
- // OK, form passed validation step
- PMA_prepareForAjaxRequest($form);
- //User wants to submit the form
- PMA_ajaxShowMessage();
- $.post($form.attr('action'), $form.serialize() + '&do_save_data=1', function(data) {
- if ($("#sqlqueryresults").length != 0) {
- $("#sqlqueryresults").remove();
- } else if ($(".error").length != 0) {
- $(".error").remove();
- }
- if (data.success == true) {
- $("
';
diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php
index ec02546ed3..5bf7c58bbe 100644
--- a/libraries/pmd_common.php
+++ b/libraries/pmd_common.php
@@ -17,6 +17,7 @@ $cfgRelation = PMA_getRelationsParam();
/**
* retrieves table info and stores it in $GLOBALS['PMD']
*
+ * @return array with table info
*/
function get_tables_info()
{
@@ -31,17 +32,26 @@ function get_tables_info()
PMA_DBI_select_db($GLOBALS['db']);
$i = 0;
foreach ($tables as $one_table) {
- $GLOBALS['PMD']['TABLE_NAME'][$i] = $GLOBALS['db'] . "." . $one_table['TABLE_NAME'];
+ $GLOBALS['PMD']['TABLE_NAME'][$i]
+ = $GLOBALS['db'] . "." . $one_table['TABLE_NAME'];
$GLOBALS['PMD']['OWNER'][$i] = $GLOBALS['db'];
$GLOBALS['PMD']['TABLE_NAME_SMALL'][$i] = $one_table['TABLE_NAME'];
- $GLOBALS['PMD_URL']['TABLE_NAME'][$i] = urlencode($GLOBALS['db'] . "." . $one_table['TABLE_NAME']);
+ $GLOBALS['PMD_URL']['TABLE_NAME'][$i]
+ = urlencode($GLOBALS['db'] . "." . $one_table['TABLE_NAME']);
$GLOBALS['PMD_URL']['OWNER'][$i] = urlencode($GLOBALS['db']);
- $GLOBALS['PMD_URL']['TABLE_NAME_SMALL'][$i] = urlencode($one_table['TABLE_NAME']);
+ $GLOBALS['PMD_URL']['TABLE_NAME_SMALL'][$i]
+ = urlencode($one_table['TABLE_NAME']);
- $GLOBALS['PMD_OUT']['TABLE_NAME'][$i] = htmlspecialchars($GLOBALS['db'] . "." . $one_table['TABLE_NAME'], ENT_QUOTES);
- $GLOBALS['PMD_OUT']['OWNER'][$i] = htmlspecialchars($GLOBALS['db'], ENT_QUOTES);
- $GLOBALS['PMD_OUT']['TABLE_NAME_SMALL'][$i] = htmlspecialchars($one_table['TABLE_NAME'], ENT_QUOTES);
+ $GLOBALS['PMD_OUT']['TABLE_NAME'][$i] = htmlspecialchars(
+ $GLOBALS['db'] . "." . $one_table['TABLE_NAME'], ENT_QUOTES
+ );
+ $GLOBALS['PMD_OUT']['OWNER'][$i] = htmlspecialchars(
+ $GLOBALS['db'], ENT_QUOTES
+ );
+ $GLOBALS['PMD_OUT']['TABLE_NAME_SMALL'][$i] = htmlspecialchars(
+ $one_table['TABLE_NAME'], ENT_QUOTES
+ );
$GLOBALS['PMD']['TABLE_TYPE'][$i] = strtoupper($one_table['ENGINE']);
@@ -66,13 +76,23 @@ function get_columns_info()
PMA_DBI_select_db($GLOBALS['db']);
$tab_column = array();
for ($i = 0, $cnt = count($GLOBALS['PMD']["TABLE_NAME"]); $i < $cnt; $i++) {
- $fields_rs = PMA_DBI_query(PMA_DBI_get_columns_sql($GLOBALS['db'], $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i], null, true), null, PMA_DBI_QUERY_STORE);
+ $fields_rs = PMA_DBI_query(
+ PMA_DBI_get_columns_sql(
+ $GLOBALS['db'],
+ $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i],
+ null,
+ true
+ ),
+ null,
+ PMA_DBI_QUERY_STORE
+ );
+ $tbl_name_i = $GLOBALS['PMD']['TABLE_NAME'][$i];
$j = 0;
while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
- $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['COLUMN_ID'][$j] = $j;
- $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['COLUMN_NAME'][$j] = $row['Field'];
- $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['TYPE'][$j] = $row['Type'];
- $tab_column[$GLOBALS['PMD']['TABLE_NAME'][$i]]['NULLABLE'][$j] = $row['Null'];
+ $tab_column[$tbl_name_i]['COLUMN_ID'][$j] = $j;
+ $tab_column[$tbl_name_i]['COLUMN_NAME'][$j] = $row['Field'];
+ $tab_column[$tbl_name_i]['TYPE'][$j] = $row['Type'];
+ $tab_column[$tbl_name_i]['NULLABLE'][$j] = $row['Null'];
$j++;
}
}
@@ -89,7 +109,11 @@ function get_script_contr()
PMA_DBI_select_db($GLOBALS['db']);
$con["C_NAME"] = array();
$i = 0;
- $alltab_rs = PMA_DBI_query('SHOW TABLES FROM ' . PMA_Util::backquote($GLOBALS['db']), null, PMA_DBI_QUERY_STORE);
+ $alltab_rs = PMA_DBI_query(
+ 'SHOW TABLES FROM ' . PMA_Util::backquote($GLOBALS['db']),
+ null,
+ PMA_DBI_QUERY_STORE
+ );
while ($val = @PMA_DBI_fetch_row($alltab_rs)) {
$row = PMA_getForeigners($GLOBALS['db'], $val[0], '', 'internal');
//echo "
internal ".$GLOBALS['db']." - ".$val[0]." - ";
@@ -99,7 +123,9 @@ function get_script_contr()
$con['C_NAME'][$i] = '';
$con['DTN'][$i] = urlencode($GLOBALS['db'] . "." . $val[0]);
$con['DCN'][$i] = urlencode($field);
- $con['STN'][$i] = urlencode($value['foreign_db'] . "." . $value['foreign_table']);
+ $con['STN'][$i] = urlencode(
+ $value['foreign_db'] . "." . $value['foreign_table']
+ );
$con['SCN'][$i] = urlencode($value['foreign_field']);
$i++;
}
@@ -112,7 +138,9 @@ function get_script_contr()
$con['C_NAME'][$i] = '';
$con['DTN'][$i] = urlencode($GLOBALS['db'].".".$val[0]);
$con['DCN'][$i] = urlencode($field);
- $con['STN'][$i] = urlencode($value['foreign_db'].".".$value['foreign_table']);
+ $con['STN'][$i] = urlencode(
+ $value['foreign_db'].".".$value['foreign_table']
+ );
$con['SCN'][$i] = urlencode($value['foreign_field']);
$i++;
}
@@ -122,13 +150,15 @@ function get_script_contr()
$ti = 0;
$retval = array();
for ($i = 0, $cnt = count($con["C_NAME"]); $i < $cnt; $i++) {
+ $c_name_i = $con['C_NAME'][$i];
+ $dtn_i = $con['DTN'][$i];
$retval[$ti] = array();
- $retval[$ti][$con['C_NAME'][$i]] = array();
- if (in_array($con['DTN'][$i], $GLOBALS['PMD_URL']["TABLE_NAME"])
+ $retval[$ti][$c_name_i] = array();
+ if (in_array($dtn_i, $GLOBALS['PMD_URL']["TABLE_NAME"])
&& in_array($con['STN'][$i], $GLOBALS['PMD_URL']["TABLE_NAME"])
) {
- $retval[$ti][$con['C_NAME'][$i]][$con['DTN'][$i]] = array();
- $retval[$ti][$con['C_NAME'][$i]][$con['DTN'][$i]][$con['DCN'][$i]] = array(
+ $retval[$ti][$c_name_i][$dtn_i] = array();
+ $retval[$ti][$c_name_i][$dtn_i][$con['DCN'][$i]] = array(
0 => $con['STN'][$i],
1 => $con['SCN'][$i]
);
@@ -139,7 +169,9 @@ function get_script_contr()
}
/**
- * @return array unique or primary indizes
+ * Returns UNIQUE and PRIMARY indices
+ *
+ * @return array unique or primary indices
*/
function get_pk_or_unique_keys()
{
@@ -149,7 +181,7 @@ function get_pk_or_unique_keys()
/**
* returns all indices
*
- * @param boolean whether to include ony unique ones
+ * @param bool $unique_only whether to include only unique ones
*
* @return array indices
*/
@@ -192,10 +224,7 @@ function get_script_tabs()
for ($i = 0, $cnt = count($GLOBALS['PMD']['TABLE_NAME']); $i < $cnt; $i++) {
$j = 0;
- if (PMA_Util::isForeignKeySupported(
- $GLOBALS['PMD']['TABLE_TYPE'][$i]
- )
- ) {
+ if (PMA_Util::isForeignKeySupported($GLOBALS['PMD']['TABLE_TYPE'][$i])) {
$j = 1;
}
$retval['j_tabs'][$GLOBALS['PMD_URL']['TABLE_NAME'][$i]] = $j;
@@ -205,7 +234,9 @@ function get_script_tabs()
}
/**
- * @return array table positions and sizes
+ * Returns table position
+ *
+ * @return array table positions and sizes
*/
function get_tab_pos()
{
@@ -221,9 +252,11 @@ function get_tab_pos()
`y` AS `Y`,
`v` AS `V`,
`h` AS `H`
- FROM " . PMA_Util::backquote($cfgRelation['db']) . "." . PMA_Util::backquote($cfgRelation['designer_coords']);
- $tab_pos = PMA_DBI_fetch_result($query, 'name', null, $GLOBALS['controllink'], PMA_DBI_QUERY_STORE);
+ FROM " . PMA_Util::backquote($cfgRelation['db'])
+ . "." . PMA_Util::backquote($cfgRelation['designer_coords']);
+ $tab_pos = PMA_DBI_fetch_result(
+ $query, 'name', null, $GLOBALS['controllink'], PMA_DBI_QUERY_STORE
+ );
return count($tab_pos) ? $tab_pos : null;
}
-
?>
diff --git a/libraries/tbl_columns_definition_form.inc.php b/libraries/tbl_columns_definition_form.inc.php
index 61797e87e4..74a0bdc16a 100644
--- a/libraries/tbl_columns_definition_form.inc.php
+++ b/libraries/tbl_columns_definition_form.inc.php
@@ -180,7 +180,7 @@ if ($cfgRelation['mimework'] && $GLOBALS['cfg']['BrowseMIME']) {
);
}
-// workaround for field_fulltext, because its submitted indizes contain
+// workaround for field_fulltext, because its submitted indices contain
// the index as a value, not a key. Inserted here for easier maintaineance
// and less code to change in existing files.
if (isset($field_fulltext) && is_array($field_fulltext)) {
diff --git a/navigation.php b/navigation.php
index 39b0e8c9eb..4b4b3b36f7 100644
--- a/navigation.php
+++ b/navigation.php
@@ -20,7 +20,7 @@ if ($response->isAjax()) {
} else {
$response->addHTML(
PMA_Message::error(
- __('Fatal error: The navigation can only be accessed via ajax')
+ __('Fatal error: The navigation can only be accessed via AJAX')
)
);
}
diff --git a/po/af.po b/po/af.po
index f3863f3ac5..648c74db0c 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-05-17 15:17+0200\n"
"Last-Translator: Michal Čihař
\n"
"Language-Team: afrikaans \n"
@@ -547,7 +547,7 @@ msgstr "Export"
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -746,7 +746,7 @@ msgid "Database server"
msgstr "databasisse"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr ""
@@ -1808,7 +1808,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Stoor"
@@ -3925,22 +3925,22 @@ msgstr ""
msgid "Check Privileges"
msgstr "Geen Regte"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3952,38 +3952,38 @@ msgstr ""
"Die $cfg['PmaAbsoluteUri'] veranderlike MOET gestel wees in jou "
"konfigurasie leer!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4425,7 +4425,7 @@ msgid "Character set of the file"
msgstr "Karakterstel van die leer:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formaat"
@@ -10040,7 +10040,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11551,6 +11551,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11972,44 +11973,30 @@ msgstr "Tabel %s is verwyder"
msgid "View dump (schema) of table"
msgstr "Sien die storting (skema) van die tabel"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
msgid "Spatial column"
msgstr "totaal"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Stoor as leer (file)"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13394,6 +13381,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Stoor as leer (file)"
+
#, fuzzy
#~ msgid "Total count"
#~ msgstr "totaal"
diff --git a/po/ar.po b/po/ar.po
index 9fd79e2b49..59ed915388 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:39+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Arabic \n"
"Language-Team: Azerbaijani $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3995,38 +3995,38 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktivi PMA konfiqurasiya faylınızda "
"QURULMAMIŞDIR!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4476,7 +4476,7 @@ msgid "Character set of the file"
msgstr "Faylın Charset-i:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10231,7 +10231,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11754,6 +11754,7 @@ msgid "Global value"
msgstr "Qlobal deyer"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12180,45 +12181,31 @@ msgstr "%s cedveli leğv edildi"
msgid "View dump (schema) of table"
msgstr "Cedvelin sxemini göster"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Cemi"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Fayl olaraq qeyd et"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13636,6 +13623,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Fayl olaraq qeyd et"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/be.po b/po/be.po
index cbc14c5dd9..3f13167670 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Belarusian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4085,40 +4085,40 @@ msgstr ""
"Дырэктыва $cfg['PmaAbsoluteUri'] ПАВІННА быць вызначаная ў "
"вашым канфігурацыйным файле!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Некарэктны індэкс сэрвэра: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4570,7 +4570,7 @@ msgid "Character set of the file"
msgstr "Кадыроўка файла:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Фармат"
@@ -10548,7 +10548,7 @@ msgid "Error in ZIP archive:"
msgstr "Памылка ў ZIP-архіве:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12217,6 +12217,7 @@ msgid "Global value"
msgstr "Глябальнае значэньне"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12650,45 +12651,31 @@ msgstr "Табліца %1$s створаная."
msgid "View dump (schema) of table"
msgstr "Праглядзець дамп (схему) табліцы"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Колькасьць файлаў логу"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Захаваць як файл"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -14164,6 +14151,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "максымум адначасовых злучэньняў"
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Захаваць як файл"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/be@latin.po b/po/be@latin.po
index 14c0aea49e..e927f0ad3c 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Belarusian (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4099,41 +4099,41 @@ msgstr ""
"Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym "
"kanfihuracyjnym fajle!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Niekarektny indeks servera: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie "
"kanfihurycyju."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4582,7 +4582,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Farmat"
@@ -10546,7 +10546,7 @@ msgid "Error in ZIP archive:"
msgstr "Pamyłka ŭ ZIP-archivie:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12213,6 +12213,7 @@ msgid "Global value"
msgstr "Hlabalnaje značeńnie"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12638,45 +12639,31 @@ msgstr "Tablica %1$s stvoranaja."
msgid "View dump (schema) of table"
msgstr "Prahladzieć damp (schiemu) tablicy"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Dadać/vydalić kalonku kryteru"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Kolkaść fajłaŭ łogu"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Zachavać jak fajł"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -14162,6 +14149,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "maksymum adnačasovych złučeńniaŭ"
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Zachavać jak fajł"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/bg.po b/po/bg.po
index 89aee59b6e..0b178a1b52 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-05 10:03+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Bulgarian \n"
"Language-Team: Bengali \n"
"Language-Team: Breton $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3838,38 +3838,38 @@ msgstr ""
"RET eo d'an arventenn $cfg['PmaAbsoluteUri'] bezañ resisaet er "
"restr kefluniañ!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Meneger servijer faziek : %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh."
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4319,7 +4319,7 @@ msgid "Character set of the file"
msgstr "Strobad arouezennoù ar restr"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Furmad"
@@ -9790,7 +9790,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11268,6 +11268,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11682,39 +11683,27 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr ""
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr ""
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 3426a6855e..21ac5b4d80 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:39+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Bosnian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3993,38 +3993,38 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktiva MORA biti podješena u "
"konfiguracionoj datoteci!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4471,7 +4471,7 @@ msgid "Character set of the file"
msgstr "Karakter set datoteke:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10238,7 +10238,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11761,6 +11761,7 @@ msgid "Global value"
msgstr "Globalna vrednost"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12185,45 +12186,31 @@ msgstr "Tabela %s je odbačena"
msgid "View dump (schema) of table"
msgstr "Prikaži sadržaj (shemu) tabele"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Dodaj/obriši kolonu"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Ukupno"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Sačuvaj kao datoteku"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13616,6 +13603,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Sačuvaj kao datoteku"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/ca.po b/po/ca.po
index ba874c2bbf..4512f35bb6 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:40+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Catalan $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3830,39 +3830,39 @@ msgstr ""
"La directiva $cfg['PmaAbsoluteUri'] HA d'estar establerta a "
"l'arxiu de configuració!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Index de servidor invàlid: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Mètode d'identificació incorrecte establert a la configuració:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Es necessari actualitzar a %s %s o posterior."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "intent de sobreescriure la variable GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "possible aprofitament"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "detectat teclat numéric"
@@ -4309,7 +4309,7 @@ msgid "Character set of the file"
msgstr "Joc de caràcters de l'arxiu"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10189,7 +10189,7 @@ msgid "Error in ZIP archive:"
msgstr "Error en arxiu ZIP:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11841,6 +11841,7 @@ msgid "Global value"
msgstr "Valor global"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Descarrega"
@@ -12303,39 +12304,27 @@ 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:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Mostra visualització GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Ample"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Alt"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Etiqueta de columna"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- cap --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Columna espacial"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Redibuixa"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Desa a un arxiu"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Nom de l'arxiu"
@@ -13925,6 +13914,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "{concurrent_insert} està establert a 0"
+#~ msgid "Width"
+#~ msgstr "Ample"
+
+#~ msgid "Height"
+#~ msgstr "Alt"
+
+#~ msgid "Save to file"
+#~ msgstr "Desa a un arxiu"
+
#~ msgid "Total count"
#~ msgstr "Quantitat total"
diff --git a/po/ckb.po b/po/ckb.po
index 06449a25b6..0f75ea7c2d 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-24 08:51+0200\n"
"Last-Translator: karwan hidayat \n"
"Language-Team: Kurdish Sorani \n"
"Language-Team: Czech \n"
"Language: cs\n"
@@ -536,7 +536,7 @@ msgstr "Chybný typ exportu"
msgid "Value for the column \"%s\""
msgstr "Hodnota pro sloupec „%s“"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Použít OpenStreetMap jako základní vrstvu"
@@ -733,7 +733,7 @@ msgid "Database server"
msgstr "Databázový server"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Server"
@@ -1741,7 +1741,7 @@ msgstr "%d není platné číslo řádku."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Uložit"
@@ -3782,11 +3782,11 @@ msgstr "Zkontrolovat oprávnění pro databázi „%s“."
msgid "Check Privileges"
msgstr "Zkontrolovat oprávnění"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Nepodařilo se načíst konfigurační soubor"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3794,12 +3794,12 @@ msgstr ""
"Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv "
"chyby vypsané níže."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nepodařilo se nahrát výchozí nastavení ze souboru: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3807,38 +3807,38 @@ msgstr ""
"V konfiguračním souboru musí být nastaven parametr [code]$cfg"
"['PmaAbsoluteUri'][/code]!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Chybné číslo serveru: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "V nastavení máte špatnou přihlašovací metodu:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "Chyba: neplatný token"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "Pokus o přepsání GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "možný pokus o exploit"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "detekován číselný klíč"
@@ -4280,7 +4280,7 @@ msgid "Character set of the file"
msgstr "Znaková sada souboru"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formát"
@@ -9960,8 +9960,9 @@ msgid "Error in ZIP archive:"
msgstr "Chyba v ZIP archívu:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
-msgstr "Chyba: Navigace je přístupná jen přes ajax"
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
+msgstr "Chyba: Navigace je přístupná jen přes AJAX"
#: pmd_display_field.php:60 pmd_save_pos.php:81
msgid "Modifications have been saved"
@@ -11572,6 +11573,7 @@ msgid "Global value"
msgstr "Globální hodnota"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Stáhnout"
@@ -11975,7 +11977,6 @@ msgid "Pie"
msgstr "Koláčový"
#: tbl_chart.php:148
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
msgstr "Časový"
@@ -12027,39 +12028,27 @@ msgstr "Byla vytvořena tabulka %1$s."
msgid "View dump (schema) of table"
msgstr "Export tabulky"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Zobrazit GIS data"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Šířka"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Výška"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Název sloupce"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Žádný --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Prostorový sloupec"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Znovu vykreslit"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Uložit do souboru"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Jméno souboru"
@@ -13569,6 +13558,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastaveno na 0"
+#~ msgid "Width"
+#~ msgstr "Šířka"
+
+#~ msgid "Height"
+#~ msgstr "Výška"
+
+#~ msgid "Save to file"
+#~ msgstr "Uložit do souboru"
+
#~ msgid "Total count"
#~ msgstr "Celkový počet"
diff --git a/po/cy.po b/po/cy.po
index 1ce805b285..7ea27a648a 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-05 10:06+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Welsh \n"
@@ -545,7 +545,7 @@ msgstr "Allforio"
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -758,7 +758,7 @@ msgid "Database server"
msgstr "Cronfeydd Data"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Gweinydd"
@@ -1876,7 +1876,7 @@ msgstr "Dydy %d ddim yn rhif rhes dilys."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Cadw"
@@ -3958,62 +3958,62 @@ msgstr ""
msgid "Check Privileges"
msgstr "Gwirio Breintiau"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Failed to write file to disk."
msgid "Failed to read configuration file"
msgstr "Methu ag ysgrifennu i'r ddisg."
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Indecs gweinydd annilys: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Dylech uwchraddio i %s %s neu'n well."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4462,7 +4462,7 @@ msgid "Character set of the file"
msgstr "Set nodau y ffeil"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Fformat"
@@ -10113,7 +10113,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11633,6 +11633,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12058,47 +12059,33 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Label column"
msgstr "Ychwanegu/Dileu colofnau"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
#, fuzzy
#| msgid "- none -"
msgid "-- None --"
msgstr "-dim-"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Cyfrif ffeiliau log"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Cadw fel ffeil"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Page name"
msgid "File name"
@@ -13567,6 +13554,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Cadw fel ffeil"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/da.po b/po/da.po
index 36692ee3b1..eb40d292c2 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:40+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Danish \n"
"Language-Team: German \n"
"Language-Team: Greek \n"
"Language: el\n"
@@ -533,7 +533,7 @@ msgstr "Μη έγκυρος τύπος εξαγωγής"
msgid "Value for the column \"%s\""
msgstr "Τιμή για τη στήλη «%s»"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο"
@@ -735,7 +735,7 @@ msgid "Database server"
msgstr "Διακομιστής βάσης δεδομένων"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Διακομιστής"
@@ -1755,7 +1755,7 @@ msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γ
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Αποθήκευση"
@@ -3829,11 +3829,11 @@ msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»."
msgid "Check Privileges"
msgstr "Έλεγχος Δικαιωμάτων"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3841,12 +3841,12 @@ msgstr ""
"Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα "
"σφάλματα που εμφανίζονται παρακάτω."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3854,40 +3854,40 @@ msgstr ""
"Η πδηγία [code]$cfg['PmaAbsoluteUri'][/code] ΠΡΕΠΕΙ να οριστεί στο αρχείο "
"ρυθμίσεων!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις "
"σας."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "προσπάθεια επανεγγραφής GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "δυνατή αξιοποίηση"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "ανιχνεύτηκε αριθμητικό κλειδί"
@@ -4336,7 +4336,7 @@ msgid "Character set of the file"
msgstr "Σύνολο χαρακτήρων αρχείου"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Μορφοποίηση"
@@ -10124,8 +10124,9 @@ msgid "Error in ZIP archive:"
msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
-msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω ajax"
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
+msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω AJAX"
#: pmd_display_field.php:60 pmd_save_pos.php:81
msgid "Modifications have been saved"
@@ -11812,6 +11813,7 @@ msgid "Global value"
msgstr "Προεπιλεγμένη τιμή"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Λήψη"
@@ -12224,7 +12226,6 @@ msgid "Pie"
msgstr "Πίτα"
#: tbl_chart.php:148
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
msgstr "Χρονολόγιο"
@@ -12276,39 +12277,27 @@ msgstr "Ο πίνακας %1$s έχει δημιουργηθεί."
msgid "View dump (schema) of table"
msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πίνακα"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Εμφάνιση Οπτικοποίησης GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Πλάτος"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Ύψος"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Στήλη ετικέτας"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Τίποτα --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Χωρική στήλη"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Επανασχεδίαση"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Αποθήκευση σε αρχείο"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Ονομασία αρχείου"
@@ -13899,6 +13888,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Το concurrent_insert έχει οριστεί στο 0"
+#~ msgid "Width"
+#~ msgstr "Πλάτος"
+
+#~ msgid "Height"
+#~ msgstr "Ύψος"
+
+#~ msgid "Save to file"
+#~ msgstr "Αποθήκευση σε αρχείο"
+
#~ msgid "Total count"
#~ msgstr "Συνολικό πλήθος"
diff --git a/po/en_GB.po b/po/en_GB.po
index 2a131946d3..fa2d9ca964 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-14 10:50+0200\n"
"Last-Translator: Robert Readman \n"
"Language-Team: English (United Kingdom) \n"
"Language-Team: Spanish "
"\n"
@@ -538,7 +538,7 @@ msgstr "Tipo de exportación inválido"
msgid "Value for the column \"%s\""
msgstr "Valor para la columna \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Utilizar OpenStreetMaps como capa base"
@@ -740,7 +740,7 @@ msgid "Database server"
msgstr "Servidor de base de datos"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Servidor"
@@ -1762,7 +1762,7 @@ msgstr "%d no es un número de fila válido."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Guardar"
@@ -3851,11 +3851,11 @@ msgstr "Comprobar los privilegios para la base de datos "%s"."
msgid "Check Privileges"
msgstr "Comprobar los privilegios"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "No se pudo leer el archivo de configuración"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3863,12 +3863,12 @@ msgstr ""
"Esto generalmente significa que tiene un error de sintáxis, revisa los "
"errores que se muestran a continuación."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "No se pudo cargar la configuración predeterminada desde: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3876,40 +3876,40 @@ msgstr ""
"¡DEBE tener definido [code]$cfg['PmaAbsoluteUri'][/code] en su archivo de "
"configuración!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"El nombre del host no es válido para el servidor %1$s. Revise su "
"configuración."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticación no válido definido en la configuración:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "Error: no coincide un «token»"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "intento de sobre-escritura de la variable GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "posible aprovechamiento"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "telado numérico detectado"
@@ -4360,7 +4360,7 @@ msgid "Character set of the file"
msgstr "Conjunto de caracteres del archivo"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formato"
@@ -10171,7 +10171,8 @@ msgid "Error in ZIP archive:"
msgstr "Error en el archivo ZIP:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr "Error fatal: sólo se puede acceder a la navegación mediante AJAX"
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11853,6 +11854,7 @@ msgid "Global value"
msgstr "Valor global"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Descargar"
@@ -12263,7 +12265,6 @@ msgid "Pie"
msgstr "Torta"
#: tbl_chart.php:148
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
msgstr "Línea temporal"
@@ -12315,39 +12316,27 @@ msgstr "La Tabla %1$s se creó."
msgid "View dump (schema) of table"
msgstr "Mostrar volcado (esquema) de la tabla"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Mostrar visualización GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Anchura"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Altura"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Etiqueta de columna"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- ninguno --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Columna espacial"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Redibujar"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Guardar a un archivo"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Nombre del archivo"
@@ -13923,6 +13912,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "«concurrent_insert» está definido como 0"
+#~ msgid "Width"
+#~ msgstr "Anchura"
+
+#~ msgid "Height"
+#~ msgstr "Altura"
+
+#~ msgid "Save to file"
+#~ msgstr "Guardar a un archivo"
+
#~ msgid "Total count"
#~ msgstr "Cantidad total"
diff --git a/po/et.po b/po/et.po
index 9f3fbffdc2..418c9188c6 100644
--- a/po/et.po
+++ b/po/et.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-21 15:53+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Estonian \n"
"Language-Team: Basque $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3958,38 +3958,38 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktibak zure konfigurazio fitxategian "
"zehaztuta behar du egon!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4438,7 +4438,7 @@ msgid "Character set of the file"
msgstr "Fitxategiaren karaktereen kodeketa:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formatoa"
@@ -10207,7 +10207,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11732,6 +11732,7 @@ msgid "Global value"
msgstr "Balio orokorra"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12158,45 +12159,31 @@ msgstr "%s taula ezabatu egin da"
msgid "View dump (schema) of table"
msgstr "Ikusi taularen iraulketa (eskema)"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Gutira"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Bidali"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13598,6 +13585,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Bidali"
+
#~ msgid "Total count"
#~ msgstr "Gutira"
diff --git a/po/fa.po b/po/fa.po
index a630478f08..b2d39d38c5 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:19+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Persian \n"
"Language-Team: Finnish \n"
-"Language-Team: French \n"
+"Language-Team: French \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -536,7 +537,7 @@ msgstr "Type d'exportation invalide"
msgid "Value for the column \"%s\""
msgstr "Valeur pour la colonne «%s»"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Utiliser OpenStreetMaps comme couche de base"
@@ -737,7 +738,7 @@ msgid "Database server"
msgstr "Serveur de base de données"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Serveur"
@@ -1750,7 +1751,7 @@ msgstr "%d n'est pas un numéro de ligne valable."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Sauvegarder"
@@ -3830,11 +3831,11 @@ msgstr "Vérifier les privilèges pour la base de données "%s"."
msgid "Check Privileges"
msgstr "Vérifier les privilèges"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Impossible de lire le fichier de configuration"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3842,13 +3843,13 @@ msgstr ""
"Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez "
"vérifier si une erreur s'affiche plus bas."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Chargement de la configuration par défaut impossible depuis %1$s"
# OK
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3856,41 +3857,41 @@ msgstr ""
"Le paramètre [code]$cfg['PmaAbsoluteUri'][/code] DOIT être renseigné dans "
"votre fichier de configuration !"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Indice de serveur invalide: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre "
"configuration."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
"Le fichier de configuration contient un type d'authentification invalide : "
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vous devriez utiliser %s en version %s ou plus récente."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "Erreur: disparité du jeton"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "Tentative d'écrasement de GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "vulnérabilité possible"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "Clé numérique détectée"
@@ -4338,7 +4339,7 @@ msgid "Character set of the file"
msgstr "Jeu de caractères du fichier"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10109,7 +10110,9 @@ msgid "Error in ZIP archive:"
msgstr "Erreur rencontrée dans l'archive ZIP : "
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+#, fuzzy
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr "Erreur fatale : la navigation requiert ajax"
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11764,6 +11767,7 @@ msgid "Global value"
msgstr "Valeur globale"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Télécharger"
@@ -12167,7 +12171,6 @@ msgid "Pie"
msgstr "Tarte"
#: tbl_chart.php:148
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
msgstr "Moment"
@@ -12219,39 +12222,27 @@ 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:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Visualiser en GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Largeur"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Hauteur"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Colonne pour étiquette"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Aucun --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Colonne pour donnée spatiale"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Dessiner à nouveau"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Sauvegarder dans un fichier"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Nom du fichier"
@@ -12281,7 +12272,6 @@ msgid ""
msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire!)"
#: tbl_indexes.php:227
-#| msgid "Comment"
msgid "Comment:"
msgstr "Commentaire : "
@@ -13808,6 +13798,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Le paramètre concurrent_insert a une valeur de 0"
+#~ msgid "Width"
+#~ msgstr "Largeur"
+
+#~ msgid "Height"
+#~ msgstr "Hauteur"
+
+#~ msgid "Save to file"
+#~ msgstr "Sauvegarder dans un fichier"
+
#~ msgid "Total count"
#~ msgstr "Nombre total"
diff --git a/po/gl.po b/po/gl.po
index 9b17e1617e..7c508d5d51 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,11 +3,10 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2013-01-10 13:43+0200\n"
-"Last-Translator: Michal Čihař \n"
-"Language-Team: Galician \n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-21 19:15+0100\n"
+"Last-Translator: Xosé \n"
+"Language-Team: Galician \n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -310,7 +309,7 @@ msgid ""
"click %shere%s."
msgstr ""
"Desactivouse a configuración de almacenamento de phpMyAdmin. Para saber por "
-"que prema %saquí%s."
+"que prema %saquí%s."
#: db_printview.php:99 db_tracking.php:79 db_tracking.php:198
#: libraries/Menu.class.php:190 libraries/config/messages.inc.php:508
@@ -534,7 +533,7 @@ msgstr "Este tipo de exportación non é válido"
msgid "Value for the column \"%s\""
msgstr "Valor para a columna «%s»"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Utilizar OpenStreetMaps como capa base"
@@ -609,7 +608,6 @@ msgid "Output"
msgstr "Saída"
#: gis_data_editor.php:402
-#, fuzzy
#| msgid ""
#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below "
#| "string into the \"Value\" field"
@@ -621,7 +619,7 @@ msgstr ""
"no campo «Valor»"
#: import.php:93
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "You probably tried to upload too large file. Please refer to "
#| "%sdocumentation%s for ways to workaround this limit."
@@ -629,8 +627,8 @@ msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
msgstr ""
-"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
-"%sdocumentación%s para averiguar como evitar este límite."
+"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
+"sdocumentación%s para averiguar como evitar este límite."
#: import.php:232 import.php:497
msgid "Showing bookmark"
@@ -741,7 +739,7 @@ msgid "Database server"
msgstr "Servidor de base de datos"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Servidor"
@@ -845,7 +843,7 @@ msgid ""
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
-"Non se atopou o engadido mbstring de PHP e parece que está a usar un "
+"Non se atopou a extensión mbstring de PHP e parece que está a usar un "
"conxunto de caracteres multibyte. Sen o engadido mbstring, o phpMyAdmin é "
"incapaz de partir cadeas correctamente e pode provocar resultados "
"inesperados."
@@ -857,10 +855,11 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login will "
"expire sooner than configured in phpMyAdmin."
msgstr ""
-"O parámetro PHP [a@http://php.net/manual/en/session.configuration.php#ini."
-"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a "
-"validez das cookies que se configurou en phpMyAdmin; por causa disto, o "
-"rexistro caducará antes do que está configurado en phpMyAdmin."
+"O parámetro PHP "
+"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
+"maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a validez das "
+"cookies que se configurou en phpMyAdmin; por causa disto, o rexistro "
+"caducará antes do que está configurado en phpMyAdmin."
#: index.php:431
msgid ""
@@ -895,7 +894,7 @@ msgid ""
msgstr ""
"O almacenamento da configuración do phpMyAdmin non está configurado de todo; "
"desactiváronse algunhas funcionalidades estendidas. Para saber o por que, "
-"prema %saquí%s."
+"prema %saquí%s."
#: index.php:496
#, php-format
@@ -913,7 +912,7 @@ msgid ""
"issues."
msgstr ""
"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na "
-"%sdocumentation%s."
+"%sdocumentación%s."
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:337
msgid "\"DROP DATABASE\" statements are disabled."
@@ -967,10 +966,10 @@ msgid "Edit Index"
msgstr "Editar o índice"
#: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347
-#, fuzzy, php-format
+#, php-format
#| msgid "Add %d column(s) to index"
msgid "Add %s column(s) to index"
-msgstr "Engadir %d columna(s) ao índice"
+msgstr "Engadir %s columna(s) ao índice"
#. l10n: Default label for the y-Axis of Charts
#: js/messages.php:48 tbl_chart.php:217
@@ -1107,7 +1106,7 @@ msgstr "Memoria do sistema"
#: js/messages.php:88
msgid "System swap"
-msgstr "Arquivo de intercambio do sistema"
+msgstr "Memoria de intercambio do sistema"
#: js/messages.php:90
msgid "Average load"
@@ -1135,7 +1134,7 @@ msgstr "Memoria usada"
#: js/messages.php:97
msgid "Total Swap"
-msgstr "Arquivo de intercambio total"
+msgstr "Memoria de intercambio total"
#: js/messages.php:98
msgid "Cached Swap"
@@ -1404,7 +1403,8 @@ msgstr ""
#: js/messages.php:164
msgid "Log data loaded. Queries executed in this time span:"
msgstr ""
-"Cargáronse os datos do rexistro. Consultas executadas neste período de tempo:"
+"Cargáronse os datos do rexistro. Consultas executadas neste período de "
+"tempo:"
#: js/messages.php:166
msgid "Jump to Log table"
@@ -1515,14 +1515,14 @@ msgstr "Filas afectadas:"
#: js/messages.php:197
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
msgstr ""
-"Produciuse un fallo ao analizar o ficheiro de configuración. Parece non ser "
+"Produciuse un erro ao analizar o ficheiro de configuración. Parece non ser "
"código JSON válido."
#: js/messages.php:198
msgid ""
"Failed building chart grid with imported config. Resetting to default config…"
msgstr ""
-"Produciuse un fallo ao construír a grella da gráfica coa configuración "
+"Produciuse un erro ao construír a grella da gráfica coa configuración "
"importada. Restáurase a configuración predeterminada…"
#: js/messages.php:199 libraries/Menu.class.php:288
@@ -1551,7 +1551,7 @@ msgstr "Sistema de consellos"
#: js/messages.php:208
msgid "Possible performance issues"
-msgstr "Posibles erros de rendemento"
+msgstr "Posíbeis erros de rendemento"
#: js/messages.php:209
msgid "Issue"
@@ -1571,7 +1571,7 @@ msgstr "Xustificación"
#: js/messages.php:213
msgid "Used variable / formula"
-msgstr "Variable/ fórmula utilizada"
+msgstr "Variábel/ fórmula utilizada"
#: js/messages.php:214
msgid "Test"
@@ -1600,12 +1600,12 @@ msgstr "Produciuse un erro ao procesar a petición"
#: js/messages.php:225
#, php-format
msgid "Error code: %s"
-msgstr ""
+msgstr "Código de erro: %s"
#: js/messages.php:226
#, php-format
msgid "Error text: %s"
-msgstr ""
+msgstr "Texto do erro: %s"
#: js/messages.php:227 libraries/db_common.inc.php:58
#: libraries/db_table_exists.lib.php:28 server_databases.php:89
@@ -1758,7 +1758,7 @@ msgstr "%d non é un número de fileira válido."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Gardar"
@@ -1859,7 +1859,7 @@ msgstr "Engadir unha opción para a columna "
#: js/messages.php:334
#, php-format
msgid "%d object(s) created"
-msgstr ""
+msgstr "Creáronse %d obxecto(s)"
#: js/messages.php:337
msgid "Press escape to cancel editing"
@@ -1904,22 +1904,20 @@ msgstr ""
"eliminar ligazóns poden non funcionar despois de gravar."
#: js/messages.php:350
-#, fuzzy
#| msgid ""
#| "You can also edit most columns
by clicking directly on their content."
msgid "You can also edit most values
by double-clicking directly on them."
msgstr ""
-"Tamén se poden editar a maioría das columnas
premendo directamente o "
-"seu contido."
+"Tamén se poden editar a maioría dos valores
preméndoas directamente "
+"dúas veces."
#: js/messages.php:353
-#, fuzzy
#| msgid ""
#| "You can also edit most columns
by clicking directly on their content."
msgid "You can also edit most values
by clicking directly on them."
msgstr ""
-"Tamén se poden editar a maioría das columnas
premendo directamente o "
-"seu contido."
+"Tamén se poden editar a maioría dos valores
premendo directamente o seu "
+"contido."
#: js/messages.php:358
msgid "Go to link"
@@ -1931,7 +1929,7 @@ msgstr "Copiar nome da columna"
#: js/messages.php:360
msgid "Right-click the column name to copy it to your clipboard."
-msgstr "Prema co botón dereito para copiar o nome da columna o portapapeis."
+msgstr "Prema co botón dereito para copiar o nome da columna o portarretallos."
#: js/messages.php:361
msgid "Show data row(s)"
@@ -1954,22 +1952,19 @@ msgid "More"
msgstr "Máis"
#: js/messages.php:372
-#, fuzzy
#| msgid "Show all"
msgid "Show Panel"
-msgstr "Mostrar todo"
+msgstr "Mostrar o panel"
#: js/messages.php:373
-#, fuzzy
#| msgid "Hide indexes"
msgid "Hide Panel"
-msgstr "Agochar os índices"
+msgstr "Agochar o panel"
#: js/messages.php:376
-#, fuzzy
#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
-msgstr "Non se atopou o usuario escollido na táboa de privilexios."
+msgstr "Non foi posíbel atopar a páxina pedida no historial; pode que caducase."
#: js/messages.php:379 setup/lib/index.lib.php:188
#, php-format
@@ -1977,8 +1972,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"Existe unha versión máis recente do phpMyAdmin e debería considerar "
-"actualizala. A versión máis recente é %s, publicada o %s."
+"Existe unha versión máis recente do phpMyAdmin e debería considerar anovala. "
+"A versión máis recente é %s, publicada o %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:381
@@ -2252,48 +2247,50 @@ msgstr "PHP mostrou o seguinte erro:%s"
#: libraries/Advisor.class.php:104
#, php-format
msgid "Failed evaluating precondition for rule '%s'"
-msgstr ""
+msgstr "Non foi posíbel avaliar a pre-condición da regra «%s»"
#: libraries/Advisor.class.php:121
#, php-format
msgid "Failed calculating value for rule '%s'"
-msgstr ""
+msgstr "Non foi posíbel calcular o valor da regra «%s»"
#: libraries/Advisor.class.php:140
#, php-format
msgid "Failed running test for rule '%s'"
-msgstr ""
+msgstr "Non foi posíbel executar a proba da regra «%s»"
#: libraries/Advisor.class.php:222
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
msgid "Failed formatting string for rule '%s'."
-msgstr ""
-"Produciuse un fallo ao formatar a cadea para regra «%s». PHP lanzou o "
-"seguinte erro: %s"
+msgstr "Produciuse un erro ao formatar a cadea para a regra «%s»."
#: libraries/Advisor.class.php:378
#, php-format
msgid ""
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule"
msgstr ""
+"A declaración da regra na liña %1$s é incorrecta; esperábase a liña %2$s da "
+"regra anterior"
#: libraries/Advisor.class.php:395
-#, fuzzy, php-format
+#, php-format
#| msgid "Invalid format of CSV input on line %d."
msgid "Invalid rule declaration on line %s"
-msgstr "O formato de entrada de CSV non é válido na liña %d."
+msgstr "Hai unha declaración de regra incorrecta na liña %s"
#: libraries/Advisor.class.php:403
#, php-format
msgid "Unexpected characters on line %s"
-msgstr ""
+msgstr "Hai caracteres inesperados na liña %s"
#: libraries/Advisor.class.php:417
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
+"Hai un carácter inesperado na liña %1$s. Agardábase unha tabulación mais "
+"atopouse «%2$s»"
#: libraries/Advisor.class.php:450 server_status_queries.php:86
msgid "per second"
@@ -2315,7 +2312,7 @@ msgstr "por día"
#: libraries/Config.class.php:1063
#, php-format
msgid "Existing configuration file (%s) is not readable."
-msgstr "O arquivo de configuración existente (%s) non e lexíbel."
+msgstr "O ficheiro de configuración existente (%s) non e lexíbel."
#: libraries/Config.class.php:1093
msgid "Wrong permissions on configuration file, should not be world writable!"
@@ -2430,13 +2427,13 @@ msgstr[0] "Total: %s ocorrencia"
msgstr[1] "Total: %s ocorrencias"
#: libraries/DbSearch.class.php:330
-#, fuzzy, php-format
+#, php-format
#| msgid "%1$s match inside table %2$s"
#| msgid_plural "%1$s matches inside table %2$s"
msgid "%1$s match in %2$s"
msgid_plural "%1$s matches in %2$s"
-msgstr[0] "%1$s ocorrencia dentro da táboa %2$s"
-msgstr[1] "%1$s ocorrencias dentro da táboa %2$s"
+msgstr[0] "%1$s coincidencia en %2$s"
+msgstr[1] "%1$s coincidencias en %2$s"
#: libraries/DbSearch.class.php:345 libraries/Menu.class.php:250
#: libraries/Util.class.php:3278 libraries/Util.class.php:3486
@@ -2735,8 +2732,8 @@ msgstr "O ficheiro non foi subido como un ficheiro."
#: libraries/File.class.php:279
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
-"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
-"ini."
+"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de "
+"php.ini."
#: libraries/File.class.php:282
msgid ""
@@ -2769,8 +2766,8 @@ msgstr "Produciuse un erro descoñecido ao enviar o ficheiro."
#: libraries/File.class.php:475
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
-"Produciuse un erro ao mover o ficheiro enviado. Consulte a [doc@faq1-11]"
-"Pregunta frecuente 1.11[/doc]"
+"Produciuse un erro ao mover o ficheiro enviado. Consulte a "
+"[doc@faq1-11]Pregunta frecuente 1.11[/doc]"
#: libraries/File.class.php:493
msgid "Error while moving uploaded file."
@@ -2787,7 +2784,7 @@ msgstr "Abrir unha xanela nova co phpMyAdmin"
#: libraries/Header.class.php:386
msgid "Click on the bar to scroll to top of page"
-msgstr ""
+msgstr "Prema a barra para desprazarse até a parte superior da páxina"
#: libraries/Header.class.php:593
#: libraries/plugins/auth/AuthenticationCookie.class.php:267
@@ -2992,7 +2989,7 @@ msgstr "Motores"
#: libraries/insert_edit.lib.php:1182 tbl_chart.php:28 tbl_operations.php:184
#: tbl_relation.php:236 view_operations.php:57
msgid "Error"
-msgstr "Houbo un erro"
+msgstr "Produciuse un erro"
#: libraries/Message.class.php:254
#, php-format
@@ -3119,7 +3116,7 @@ msgstr "Estatísticas das consultas"
#: libraries/ServerStatusData.class.php:349
msgid "All status variables"
-msgstr "Todas as variables de estado"
+msgstr "Todas as variábeis de estado"
#: libraries/ServerStatusData.class.php:353
msgid "Monitor"
@@ -3161,16 +3158,16 @@ msgid "unknown table status: "
msgstr "estado da táboa descoñecido: "
#: libraries/Table.class.php:728
-#, fuzzy, php-format
+#, php-format
#| msgid "Source database"
msgid "Source database `%s` was not found!"
-msgstr "Base de datos de orixe"
+msgstr "Non foi posíbel atopar a base de datos de orixe «%s»"
#: libraries/Table.class.php:736
-#, fuzzy, php-format
+#, php-format
#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
-msgstr "Non se atopou o tema %s!"
+msgstr "Non foi posíbel atopar a base de datos de destino «%s»"
#: libraries/Table.class.php:1164
msgid "Invalid database"
@@ -3183,7 +3180,7 @@ msgstr "Nome de táboa non válido"
#: libraries/Table.class.php:1210
#, php-format
msgid "Error renaming table %1$s to %2$s"
-msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
+msgstr "Produciuse un erro ao mudarlle o nome á táboa %1$s para %2$s"
#: libraries/Table.class.php:1229
#, php-format
@@ -3200,8 +3197,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
-"Produciuse un fallo ao limpar as preferencias de IU da táboa (vexa $cfg"
-"['Servers'][$i]['MaxTableUiprefs'] %s)"
+"Produciuse un erro ao limpar as preferencias de IU da táboa (vexa "
+"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1535
#, php-format
@@ -3332,42 +3329,58 @@ msgstr "Tema"
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
+"Un enteiro de un byte; o intervalo asinado é desde -128 até 127; o intervalo "
+"sen asinar é desde 0 até 255"
#: libraries/Types.class.php:298
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
+"Un enteiro de dous bytes; o intervalo asinado é desde -32.768 até 32.767; o "
+"intervalo sen asinar é desde 0 até 65.535"
#: libraries/Types.class.php:300
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
+"Un enteiro de tres bytes; o intervalo asinado é desde -8.388.608 até "
+"8.388.607; o intervalo sen asinar é desde 0 até 16.777.215"
#: libraries/Types.class.php:302
msgid ""
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
"range is 0 to 4,294,967,295."
msgstr ""
+"Un enteiro de catro bytes; o intervalo asinado é desde -2.147.483.648 até "
+"2.147.483.647; o intervalo sen asinar é desde 0 até 4.294.967.295."
#: libraries/Types.class.php:304
msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
+"Un enteiro de dous bytes; o intervalo asinado é desde "
+"-9.223.372.036.854.775.808 até 9.223.372.036.854.775.807; o intervalo sen "
+"asinar é desde 0 até 18.446.744.073.709.551.615"
#: libraries/Types.class.php:306 libraries/Types.class.php:712
msgid ""
"A fixed-point number (M, D) - the maximum number of digits (M) is 65 "
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
+"Un número de punto fixo (M, D) - o número máximo de díxitos (M) é 65 (por "
+"omisión, 10); o número máximo de decimais (D) é 30 (por omisión, 0)"
#: libraries/Types.class.php:308
msgid ""
"A small floating-point number, allowable values are -3.402823466E+38 to "
"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
+"Un número de vírgula flutuante pequeno; os valores permitidos son "
+"-3,402823466E+38 até -1,175494351E-38, 0 e 1,175494351E-38 até "
+"3,402823466E+38"
#: libraries/Types.class.php:310
msgid ""
@@ -3375,63 +3388,80 @@ msgid ""
"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
+"Un número de vírgula flutuante de precisión dobre; os valores permitidos "
+"son-1,7976931348623157E+308 até -2,2250738585072014E-308, 0 "
+"e2,2250738585072014E-308 até 1,7976931348623157E+308"
#: libraries/Types.class.php:312
msgid ""
"Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for "
"FLOAT)"
msgstr ""
+"Sinónimo de DOUBLE (excepción: no modo de SQL REAL_AS_FLOAT é sinónimo de "
+"FLOAT)"
#: libraries/Types.class.php:314
msgid ""
"A bit-field type (M), storing M of bits per value (default is 1, maximum is "
"64)"
msgstr ""
+"Un tipo de campo de bits (M) que almacena M bits por valor (por omisión é 1; "
+"o máximo é 64)"
#: libraries/Types.class.php:316
msgid ""
"A synonym for TINYINT(1), a value of zero is considered false, nonzero "
"values are considered true"
msgstr ""
+"Un sinónimo de TINYINT(1); o valor cero considérase falso; os valores "
+"diferentes de cero considéranse verdadeiros"
#: libraries/Types.class.php:318
msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
-msgstr ""
+msgstr "Un alias de BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:320 libraries/Types.class.php:722
-#, fuzzy, php-format
+#, php-format
#| msgid "Create version %1$s of %2$s"
msgid "A date, supported range is %1$s to %2$s"
-msgstr "Crear versión %1$s de %2$s"
+msgstr "Unha data; o intervalo aceptado é desde %1$s até %2$s"
#: libraries/Types.class.php:322 libraries/Types.class.php:724
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
+"Unha combinación de data e hora; o intervalo aceptado é desde %1$s até %2$s"
#: libraries/Types.class.php:324
msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
+"Unha marca temporal; o intervalo é desde 1970-01-01 00:00:01 UTC até "
+"2038-01-09 03:14:07 UTC, almacenado como o número de segundos desde a época "
+"(1970-01-01 00:00:00 UTC)"
#: libraries/Types.class.php:326 libraries/Types.class.php:728
-#, fuzzy, php-format
+#, php-format
#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
-msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
+msgstr "Unha hora; o intervalo é desde %1$s até %2$s"
#: libraries/Types.class.php:328
msgid ""
"A year in four-digit (4, default) or two-digit (2) format, the allowable "
"values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000"
msgstr ""
+"Un ano nos formatos de catro díxitos (4, por omisión) ou dous díxitos (2); "
+"os valores permitidos son 70 (1970) a 69 (2069) ou 1901 a 2155 e 0000"
#: libraries/Types.class.php:330
msgid ""
"A fixed-length (0-255, default 1) string that is always right-padded with "
"spaces to the specified length when stored"
msgstr ""
+"Unha cadea de lonxitude fixa (0-255, 1 por omisión) que sempre se enche á "
+"dereita con espazos até a lonxitude indicada cando se almacena"
#: libraries/Types.class.php:332 libraries/Types.class.php:730
#, php-format
@@ -3439,24 +3469,34 @@ msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
+"Unha cadea de lonxitude variábel (%s); a lonxitude efectiva máxima está "
+"suxeita ao tamaño máximo da fileira"
#: libraries/Types.class.php:334
msgid ""
"A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with "
"a one-byte prefix indicating the length of the value in bytes"
msgstr ""
+"Unha columna tipo TEXTO cunha lonxitude máxima de 255 (2^8 - 1) caracteres, "
+"almacenada nun prefixo de un byte que indica a lonxitude do valor en bytes"
#: libraries/Types.class.php:336 libraries/Types.class.php:732
msgid ""
"A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored "
"with a two-byte prefix indicating the length of the value in bytes"
msgstr ""
+"Unha columna tipo TEXTO cunha lonxitude máxima de 65,535 (2^16 - 1) "
+"caracteres, almacenada nun prefixo de un byte que indica a lonxitude do "
+"valor en bytes"
#: libraries/Types.class.php:338
msgid ""
"A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, "
"stored with a three-byte prefix indicating the length of the value in bytes"
msgstr ""
+"Unha columna tipo TEXTO cunha lonxitude máxima de 16,777,215 (2^24 - 1) "
+"caracteres, almacenada nun prefixo de un byte que indica a lonxitude do "
+"valor en bytes"
#: libraries/Types.class.php:340
msgid ""
@@ -3464,56 +3504,74 @@ msgid ""
"characters, stored with a four-byte prefix indicating the length of the "
"value in bytes"
msgstr ""
+"Unha columna tipo TEXTO cunha lonxitude máxima de 4,294,967,295 ou 4GiB "
+"(2^32 - 1) caracteres, almacenada nun prefixo de un byte que indica a "
+"lonxitude do valor en bytes"
#: libraries/Types.class.php:342
msgid ""
"Similar to the CHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
+"Semellante ao tipo CHAR, mais almacena cadeas de bytes binarios no canto de "
+"cadeas de caracteres non binarios"
#: libraries/Types.class.php:344
msgid ""
"Similar to the VARCHAR type, but stores binary byte strings rather than non-"
"binary character strings"
msgstr ""
+"Semellante ao tipo VARCHAR, mais almacena cadeas de bytes binarios no canto "
+"de cadeas de caracteres non binarios"
#: libraries/Types.class.php:346
msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
msgstr ""
+"Unha columna tipo BLOB cunha lonxitude máxima de 255 (2^8 - 1) bytes, "
+"almacenada nun prefixo de un byte que indica a lonxitude do valor"
#: libraries/Types.class.php:348
msgid ""
"A BLOB column with a maximum length of 16,777,215 (2^24 - 1) bytes, stored "
"with a three-byte prefix indicating the length of the value"
msgstr ""
+"Unha columna tipo BLOB cunha lonxitude máxima de 16,777,215 (2^24 - 1) "
+"bytes, almacenada nun prefixo de tres bytes que indica a lonxitude do valor"
#: libraries/Types.class.php:350 libraries/Types.class.php:736
msgid ""
"A BLOB column with a maximum length of 65,535 (2^16 - 1) bytes, stored with "
"a two-byte prefix indicating the length of the value"
msgstr ""
+"Unha columna tipo BLOB cunha lonxitude máxima de 65,535 (2^16 - 1) bytes, "
+"almacenada nun prefixo de dous bytes que indica a lonxitude do valor"
#: libraries/Types.class.php:352
msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
+"Unha columna tipo BLOB cunha lonxitude máxima de 4,294,967,295 or 4GiB "
+"(2^32 - 1) bytes, almacenada nun prefixo de catro bytes que indica a "
+"lonxitude do valor"
#: libraries/Types.class.php:354
msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
+"Unha enumeración escollida da lista de até 65.535 valores do valor especial "
+"'' "
#: libraries/Types.class.php:356
msgid "A single value chosen from a set of up to 64 members"
-msgstr ""
+msgstr "Un único valor escollido dun conxunto de até 64 membros"
#: libraries/Types.class.php:358
msgid "A type that can store a geometry of any type"
-msgstr ""
+msgstr "Un tipo que pode almacenar unha xeometría de calquera tipo"
#: libraries/Types.class.php:360
msgid "A point in 2-dimensional space"
@@ -3521,13 +3579,12 @@ msgstr "Un punto nun espacio bidimensonal"
#: libraries/Types.class.php:362
msgid "A curve with linear interpolation between points"
-msgstr ""
+msgstr "Unha curva con interpolación lineal entre puntos"
#: libraries/Types.class.php:364
-#, fuzzy
#| msgid "Add a polygon"
msgid "A polygon"
-msgstr "Engadir un polígono"
+msgstr "Un polígono"
#: libraries/Types.class.php:366
msgid "A collection of points"
@@ -3535,15 +3592,15 @@ msgstr "Unha colección de puntos"
#: libraries/Types.class.php:368
msgid "A collection of curves with linear interpolation between points"
-msgstr "Unha coleccción de curvas con interpolación lineal entre puntos"
+msgstr "Unha colección de curvas con interpolación lineal entre puntos"
#: libraries/Types.class.php:370
msgid "A collection of polygons"
-msgstr "Unha colección de poligonos"
+msgstr "Unha colección de polígonos"
#: libraries/Types.class.php:372
msgid "A collection of geometry objects of any type"
-msgstr ""
+msgstr "Unha colección de obxectos xeométricos de calquera tipo"
#: libraries/Types.class.php:624 libraries/Types.class.php:974
msgctxt "numeric types"
@@ -3551,39 +3608,40 @@ msgid "Numeric"
msgstr "Numérico"
#: libraries/Types.class.php:643 libraries/Types.class.php:977
-#, fuzzy
#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
-msgstr "Crear un índice novo"
+msgstr "Data e hora"
#: libraries/Types.class.php:652 libraries/Types.class.php:980
-#, fuzzy
#| msgid "Linestring"
msgctxt "string types"
msgid "String"
-msgstr "Cadea de liñas"
+msgstr "Cadea"
#: libraries/Types.class.php:673
-#, fuzzy
#| msgid "Spatial column"
msgctxt "spatial types"
msgid "Spatial"
-msgstr "Columna espacial"
+msgstr "Espacial"
#: libraries/Types.class.php:708
msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647"
msgstr ""
+"Un enteiro de catro bytes; o intervalo é desde -2,147,483,648 até "
+"2,147,483,647"
#: libraries/Types.class.php:710
msgid ""
"An 8-byte integer, range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807"
msgstr ""
+"Un enteiro de oito bytes; o intervalo é desde -9,223,372,03,6,854,775,808 "
+"até 9,223,372,03,6,854,775,807"
#: libraries/Types.class.php:714
msgid "A system's default double-precision floating-point number"
-msgstr ""
+msgstr "Un número de vírgula flotante de dupla precisión por omisión do sistema"
#: libraries/Types.class.php:716
msgid "True or false"
@@ -3591,27 +3649,31 @@ msgstr "Verdadeiro ou falso"
#: libraries/Types.class.php:718
msgid "An alias for BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
-msgstr ""
+msgstr "Un alias de BIGINT NOT NULL AUTO_INCREMENT UNIQUE"
#: libraries/Types.class.php:720
msgid "Stores a Universally Unique Identifier (UUID)"
-msgstr ""
+msgstr "Almacena un identificador único universal (UUID)"
#: libraries/Types.class.php:726
msgid ""
"A timestamp, range is '0001-01-01 00:00:00' UTC to '9999-12-31 23:59:59' "
"UTC; TIMESTAMP(6) can store microseconds"
msgstr ""
+"Unha marca temporal; o intervalo é desde «0000-01-01 00:00:01» UTC até "
+"«9999-12-31 23:59:59» UTC; TIMESTAMP(6) pode almacenar microsegundos"
#: libraries/Types.class.php:734
msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
+"Unha cadea de lonxitude variábel (0-65.535); emprega colación binaria para "
+"todas as comparacións"
#: libraries/Types.class.php:738
msgid "An enumeration, chosen from the list of defined values"
-msgstr ""
+msgstr "Unha enumeración escollida da lista de valores definidos"
#: libraries/Util.class.php:223
#, php-format
@@ -3633,7 +3695,7 @@ msgstr "Mensaxes do MySQL: "
#: libraries/Util.class.php:1165
msgid "Failed to connect to SQL validator!"
-msgstr "Non foi posíbel conectar cun válidador de SQL!"
+msgstr "Non foi posíbel conectar cun validador de SQL!"
#: libraries/Util.class.php:1207 libraries/config/messages.inc.php:485
msgid "Explain SQL"
@@ -3729,7 +3791,7 @@ msgstr "Non é posíbel acceder ao directorio que designou para os envíos"
#: libraries/Util.class.php:3470
msgid "There are no files to upload"
-msgstr "Non hai arquivos para subir"
+msgstr "Non hai ficheiros para subir"
#: libraries/Util.class.php:3495 libraries/Util.class.php:3496
#: libraries/structure.lib.php:305
@@ -3788,11 +3850,11 @@ msgstr "Comprobar os privilexios da base de datos "%s"."
msgid "Check Privileges"
msgstr "Comprobar os privilexios"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Foi imposíbel ler o ficheiro de configuración"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3800,12 +3862,12 @@ msgstr ""
"Isto normalmente significa que hai unha erro na sintaxe; comprobe calquera "
"erro mostrado embaixo."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Non foi posíbel cargar a configuración predeterminada desde: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3813,40 +3875,40 @@ msgstr ""
"A directiva [code]$cfg['PmaAbsoluteUri'][/code] DEBE estar asignada no seu "
"ficheiro de configuración!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "O índice de servidor non é válido: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-"O nome de servidor non é válido para o servidor %1$s. Revise a configuración."
+"O nome de servidor non é válido para o servidor %1$s. Revise a "
+"configuración."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
-msgstr ""
-"Na configuración indicouse un método de autenticación que non é válido:"
+msgstr "Na configuración indicouse un método de autenticación que non é válido:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Debería actualizar a %s %s ou posterior."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
-msgstr ""
+msgstr "Erro: o token non coincide"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "Tentouse substituír GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "posíbel vulnerabilidade (exploit)"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "detectouse unha tecla numérica"
@@ -3869,11 +3931,11 @@ msgstr "Dereita"
#: libraries/config.values.php:69
msgid "Click"
-msgstr ""
+msgstr "Clic"
#: libraries/config.values.php:70
msgid "Double click"
-msgstr ""
+msgstr "Dobre clic"
#: libraries/config.values.php:71 libraries/config.values.php:103
#: libraries/config/FormDisplay.tpl.php:225 libraries/relation.lib.php:98
@@ -4002,7 +4064,7 @@ msgstr "exportar non vai funcionar, falta a función (%s)"
#: libraries/config/FormDisplay.class.php:808
msgid "SQL Validator is disabled"
-msgstr "O válidador de SQL está desactivado"
+msgstr "O validador de SQL está desactivado"
#: libraries/config/FormDisplay.class.php:815
msgid "SOAP extension not found"
@@ -4113,10 +4175,13 @@ msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
+"Empregue un editor amigábel para editar as consultas de SQL "
+"([a@http://codemirror.net/]CodeMirror[/a]) con realce da sintaxe e números "
+"de liña"
#: libraries/config/messages.inc.php:31
msgid "Enable CodeMirror"
-msgstr ""
+msgstr "Activar CodeMirror"
#: libraries/config/messages.inc.php:32
msgid ""
@@ -4226,13 +4291,12 @@ msgstr "Lapela por omisión das táboas"
#: libraries/config/messages.inc.php:54
msgid "Whether the table structure actions should be hidden"
-msgstr ""
+msgstr "Se se desexa agochar as accións da estrutura da táboa"
#: libraries/config/messages.inc.php:55
-#, fuzzy
#| msgid "Propose table structure"
msgid "Hide table structure actions"
-msgstr "Propor unha estrutura para a táboa"
+msgstr "Agochar as accións da estrutura da táboa"
#: libraries/config/messages.inc.php:56
msgid "Show binary contents as HEX by default"
@@ -4297,7 +4361,7 @@ msgid "Character set of the file"
msgstr "Conxunto de caracteres do ficheiro"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formato"
@@ -4517,8 +4581,9 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
-"Ordenación dos elementos dun menú despregábel de chaves alleas; [kbd]content"
-"[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da chave"
+"Ordenación dos elementos dun menú despregábel de chaves alleas; "
+"[kbd]content[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da "
+"chave"
#: libraries/config/messages.inc.php:149
msgid "Foreign key dropdown order"
@@ -4618,16 +4683,14 @@ msgid "Databases display options"
msgstr "Opcións de exhibición das bases de datos"
#: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:19
-#, fuzzy
#| msgid "Navigation frame"
msgid "Navigation panel"
-msgstr "Moldura de navegación"
+msgstr "Panel de navegación"
#: libraries/config/messages.inc.php:178
-#, fuzzy
#| msgid "Customize appearance of the navigation frame"
msgid "Customize appearance of the navigation panel"
-msgstr "Personalizar a aparencia da moldura de navegación"
+msgstr "Personalizar a aparencia do panel de navegación"
#: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:42
#: setup/frames/index.inc.php:117
@@ -4643,14 +4706,13 @@ msgid "Tables display options"
msgstr "Opcións de exhibición das táboas"
#: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:20
-#, fuzzy
#| msgid "Main frame"
msgid "Main panel"
-msgstr "Moldura principal"
+msgstr "Panel principal"
#: libraries/config/messages.inc.php:184
msgid "Microsoft Office"
-msgstr "Microsoft Office"
+msgstr "Office da Microsoft"
#: libraries/config/messages.inc.php:186
msgid "Open Document"
@@ -4760,16 +4822,14 @@ msgid "Customize import defaults"
msgstr "Personalizar as opcións de importación por omisión"
#: libraries/config/messages.inc.php:209
-#, fuzzy
#| msgid "Customize navigation frame"
msgid "Customize navigation panel"
-msgstr "Personalizar a moldura de navegación"
+msgstr "Personalizar o panel de navegación"
#: libraries/config/messages.inc.php:210
-#, fuzzy
#| msgid "Customize main frame"
msgid "Customize main panel"
-msgstr "Personalizar a moldura principal"
+msgstr "Personalizar o panel principal"
#: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216
#: setup/frames/menu.inc.php:18
@@ -4799,11 +4859,12 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
-"Se desexa empregar o servizo do válidador de SQL ha de te ren conta que "
+"Se desexa empregar o servizo do validador de SQL ha de te ren conta que "
"[strong]todas as instrucións de SQL se almacenan de maneira anónima con "
-"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]"
-"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. Todos "
-"os dereitos reservados.[/em]"
+"finalidade "
+"estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]Mimer SQL "
+"Validator[/a], Copyright 2002 Upright Database Technology. Todos os dereitos "
+"reservados.[/em]"
#: libraries/config/messages.inc.php:220
msgid "Startup"
@@ -4820,16 +4881,17 @@ msgstr "Estrutura da base de datos"
#: libraries/config/messages.inc.php:223
msgid "Choose which details to show in the database structure (list of tables)"
msgstr ""
+"Escolla os detalles que desexe mostrar na estrutura da base de datos (lista "
+"de táboas)"
#: libraries/config/messages.inc.php:224
-#, fuzzy
#| msgid "Database structure"
msgid "Table structure"
-msgstr "Estrutura da base de datos"
+msgstr "Estrutura da táboa"
#: libraries/config/messages.inc.php:225
msgid "Settings for the table structure (list of columns)"
-msgstr ""
+msgstr "Configuración da estrutura da táboa (lista de columnas)"
#: libraries/config/messages.inc.php:226
msgid "Tabs"
@@ -4903,7 +4965,7 @@ msgstr "Importación parcial: permitir interromper"
#: libraries/config/messages.inc.php:245 libraries/config/messages.inc.php:252
msgid "Do not abort on INSERT error"
-msgstr "Non abortar nos erros de INSERT"
+msgstr "Non interromper nos erros de INSERT"
#: libraries/config/messages.inc.php:246 libraries/config/messages.inc.php:254
#: libraries/plugins/import/ImportCsv.class.php:78
@@ -5054,25 +5116,25 @@ msgid "Users cannot set a higher value"
msgstr "Os usuarios non poden estabelecer un valor máis alto"
#: libraries/config/messages.inc.php:284
-#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of databases displayed in database list"
-msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
+msgstr "Número máximo de táboas que se mostran na listaxe de bases de datos"
#: libraries/config/messages.inc.php:285
msgid "Maximum databases"
msgstr "Bases de datos máximas"
#: libraries/config/messages.inc.php:286
-#, fuzzy
#| msgid "The number of joins that did a full scan of the first table."
msgid ""
"The number of items that can be displayed on each page of the navigation tree"
-msgstr "O número de unións que realizaron un exame completo da primeira táboa."
+msgstr ""
+"O número de elementos que desexa mostrar en cada páxina da árbore de "
+"navegación"
#: libraries/config/messages.inc.php:287
msgid "Maximum items in branch"
-msgstr ""
+msgstr "Número máximo de elementos por galla"
#: libraries/config/messages.inc.php:288
msgid ""
@@ -5121,20 +5183,18 @@ msgid "Memory limit"
msgstr "Límite da memoria"
#: libraries/config/messages.inc.php:297
-#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show logo in navigation panel"
-msgstr "Mostrar o logotipo na moldura esquerda"
+msgstr "Mostrar o logotipo no panel de navegación"
#: libraries/config/messages.inc.php:298
msgid "Display logo"
msgstr "Mostrar o logotipo"
#: libraries/config/messages.inc.php:299
-#, fuzzy
#| msgid "URL where logo in the navigation frame will point to"
msgid "URL where logo in the navigation panel will point to"
-msgstr "URL ao que apunta o logotipo da moldura de navegación"
+msgstr "URL ao que apunta o logotipo do panel de navegación"
#: libraries/config/messages.inc.php:300
msgid "Logo link URL"
@@ -5153,10 +5213,9 @@ msgid "Logo link target"
msgstr "Destino da ligazón do logotipo"
#: libraries/config/messages.inc.php:303
-#, fuzzy
#| msgid "Display server choice at the top of the left frame"
msgid "Display server choice at the top of the navigation panel"
-msgstr "Mostrar a escolla de servidor na parte superior da moldura esquerda"
+msgstr "Mostrar a escolla de servidor na parte superior do panel de navegación"
#: libraries/config/messages.inc.php:304
msgid "Display servers selection"
@@ -5167,27 +5226,25 @@ msgid "Target for quick access icon"
msgstr "Destino da icona de acceso rápido"
#: libraries/config/messages.inc.php:306
-#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid ""
"Defines the minimum number of items (tables, views, routines and events) to "
"display a filter box."
-msgstr "Número mínimo de táboas que se mostran na caixa de filtro de táboa"
+msgstr ""
+"Indica o número mínimo de elementos (táboas, vistas, rutinas e "
+"acontecementos) para mostrar unha caixa de filtro."
#: libraries/config/messages.inc.php:307
-#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of items to display the filter box"
-msgstr "Número mínimo de táboas que se mostran na caixa de filtro de táboa"
+msgstr "Número mínimo de elementos para mostrar a caixa de filtro"
#: libraries/config/messages.inc.php:308
-#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
-msgstr "Número m'inimo de táboas que se mostran na caixa de filtro de táboa"
+msgstr "Número mínimo de bases de datos para mostrar a caixa de filtro"
#: libraries/config/messages.inc.php:309
-#, fuzzy
#| msgid ""
#| "Only light version; display databases in a tree (determined by the "
#| "separator defined below)"
@@ -5195,12 +5252,12 @@ msgid ""
"Group items in the navigation tree (determined by the separator defined "
"below)"
msgstr ""
-"Só na versión lixeira; mostrar as bases de datos nunha árbore (determinada "
-"polo separador que se defina embaixo)"
+"Agrupar os elementos na árbore de navegación (determinado polo separador "
+"indicado embaixo)"
#: libraries/config/messages.inc.php:310
msgid "Group items in the tree"
-msgstr ""
+msgstr "Agrupar os elementos na árbore"
#: libraries/config/messages.inc.php:311
msgid "String that separates databases into different tree levels"
@@ -5309,7 +5366,6 @@ msgid "Missing phpMyAdmin configuration storage tables"
msgstr "Faltan as táboas de almacenamento da configuración do phpMyadmin"
#: libraries/config/messages.inc.php:334
-#, fuzzy
#| msgid ""
#| "Disable the default warning that is displayed if mcrypt is missing for "
#| "cookie authentication"
@@ -5317,12 +5373,12 @@ msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected"
msgstr ""
-"Desactivar o aviso por omisión que aparece se falta mcrypt para a "
-"autenticación con cookies"
+"Desactivar o aviso por omisión que aparece se se detecta unha diferenza "
+"entre a biblioteca de MySQL e o servidor"
#: libraries/config/messages.inc.php:335
msgid "Server/library difference warning"
-msgstr ""
+msgstr "Advertencia de diferenza entre servidor e biblioteca"
#: libraries/config/messages.inc.php:337
msgid "Iconic table operations"
@@ -5413,13 +5469,12 @@ msgstr "Repetir os cabezallos"
#: libraries/config/messages.inc.php:358
msgid "Grid editing: trigger action"
-msgstr ""
+msgstr "Edición da grella: activar acción"
#: libraries/config/messages.inc.php:359
-#, fuzzy
#| msgid "Save all edited cells at once"
msgid "Grid editing: save all edited cells at once"
-msgstr "Gardar todas as celas editadas de vez"
+msgstr "Edición da grella: gravar todas as celas editadas inmediatamente"
#: libraries/config/messages.inc.php:360
msgid "Directory where exports can be saved on server"
@@ -5470,8 +5525,8 @@ msgid ""
"swekey.conf)"
msgstr ""
"A ruta ao ficheiro de configuración da [a@http://swekey.com]autenticación de "
-"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /etc/"
-"swekey.conf)"
+"hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: "
+"/etc/swekey.conf)"
#: libraries/config/messages.inc.php:371
msgid "SweKey config file"
@@ -5486,7 +5541,6 @@ msgid "Authentication type"
msgstr "Tipo de autenticación"
#: libraries/config/messages.inc.php:374
-#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
#| "a] support, suggested: [kbd]pma_bookmark[/kbd]"
@@ -5494,15 +5548,15 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
-"Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin."
-"net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]"
+"Déixeo en branco se non quere a funcionalidade de "
+"[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] ; por omisión: "
+"[kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:375
msgid "Bookmark table"
msgstr "Táboa de marcadores"
#: libraries/config/messages.inc.php:376
-#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
@@ -5510,8 +5564,8 @@ msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
-"Déixeo en branco se non quere comentarios/tipos mime das columnas; por "
-"omisión: [kbd]pma_column_info[/kbd]"
+"Déixeo en branco se non quere comentarios/tipos mime das columnas; suxírese: "
+"[kbd]pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:377
msgid "Column information table"
@@ -5527,8 +5581,7 @@ msgstr "Comprimir a conexión"
#: libraries/config/messages.inc.php:380
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
-msgstr ""
-"Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a"
+msgstr "Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a"
#: libraries/config/messages.inc.php:381
msgid "Connection type"
@@ -5544,8 +5597,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Un usuario especial de MySQL configurado con permisos limitados; hai máis "
-"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
-"[/a]"
+"información dispoñíbel no "
+"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
#: libraries/config/messages.inc.php:384
msgid "Control user"
@@ -5572,7 +5625,6 @@ msgid "Count tables"
msgstr "Contar as táboas"
#: libraries/config/messages.inc.php:389
-#, fuzzy
#| msgid ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
#| "kbd]"
@@ -5580,21 +5632,21 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
-"Déixeo en branco se non quere empregar Designer; por omisión: [kbd]"
-"pma_designer_coords[/kbd]"
+"Déixeo en branco se non quere empregar Designer; por omisión: "
+"[kbd]pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:390
msgid "Designer table"
-msgstr "Táboa de Designer"
+msgstr "Táboa do Designer"
#: libraries/config/messages.inc.php:391
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Máis información no [a@http://sf.net/support/tracker.php?aid=1849494]"
-"Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do "
-"MySQL[/a]"
+"Máis información no "
+"[a@http://sf.net/support/tracker.php?aid=1849494]Seguidor de erros de "
+"PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do MySQL[/a]"
#: libraries/config/messages.inc.php:392
msgid "Disable use of INFORMATION_SCHEMA"
@@ -5618,7 +5670,6 @@ msgid "Hide databases"
msgstr "Agochar as bases de datos"
#: libraries/config/messages.inc.php:397
-#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
@@ -5627,7 +5678,7 @@ msgid ""
"kbd]"
msgstr ""
"Déixeo en branco se non quere un histórico das consultas SQL; por omisión: "
-"[kbd]pma_history[/kbd]"
+"[kbd]pma__history[/kbd]"
#: libraries/config/messages.inc.php:398
msgid "SQL query history table"
@@ -5692,14 +5743,13 @@ msgid "Password for config auth"
msgstr "Contrasinal para config auth"
#: libraries/config/messages.inc.php:410
-#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
-"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/"
-"kbd]"
+"Déixeo en branco se non quere PDF schema; por omisión: "
+"[kbd]pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:411
msgid "PDF schema: pages table"
@@ -5713,8 +5763,8 @@ msgid ""
msgstr ""
"Base de datos empregada para relacións, marcadores e funcionalidades PDF. "
"Vexa [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para a información "
-"completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin"
-"[/kbd]"
+"completa. Déixeo en branco se non lle interesan. Por omisión: "
+"[kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:413
msgid "Database name"
@@ -5731,7 +5781,6 @@ msgid "Server port"
msgstr "Porto do servidor"
#: libraries/config/messages.inc.php:416
-#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
#| "suggested: [kbd]pma_recent[/kbd]"
@@ -5740,14 +5789,13 @@ msgid ""
"suggested: [kbd]pma__recent[/kbd]"
msgstr ""
"Déixeo en branco para eliminar a «persistencia» das táboas utilizadas "
-"recentemente entre sesións; suxírese: [kbd]pma_recent[/kbd]"
+"recentemente entre sesións; suxírese: [kbd]pma__recent[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "Recently used table"
msgstr "Táboa usada recentemente"
#: libraries/config/messages.inc.php:418
-#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
@@ -5755,8 +5803,9 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
-"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]"
-"ligazóns de relación[/a]; suxírese: [kbd]pma_relation[/kbd]"
+"Déixeo en branco se non quere "
+"[a@http://wiki.phpmyadmin.net/pma/relation]ligazóns de relación[/a]; "
+"suxírese: [kbd]pma__relation[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Relation table"
@@ -5805,7 +5854,6 @@ msgid "Use SSL"
msgstr "Empregar a SSL"
#: libraries/config/messages.inc.php:429
-#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
#| "kbd]"
@@ -5813,15 +5861,14 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
-"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords"
-"[/kbd]"
+"Déixeo en branco se non quere PDF schema; por omisión: "
+"[kbd]pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:430
msgid "PDF schema: table coordinates"
msgstr "PDF schema: coordenadas de táboa"
#: libraries/config/messages.inc.php:431
-#, fuzzy
#| msgid ""
#| "Table to describe the display columns, leave blank for no support; "
#| "suggested: [kbd]pma_table_info[/kbd]"
@@ -5830,14 +5877,13 @@ msgid ""
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"Táboa para describir a presentación dos campos; déixeo en branco para non o "
-"activar; suxírese: [kbd]pma_table_info[/kbd]"
+"activar; suxírese: [kbd]pma__table_info[/kbd]"
#: libraries/config/messages.inc.php:432
msgid "Display columns table"
msgstr "Mostrar a táboa de columnas"
#: libraries/config/messages.inc.php:433
-#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
#| "suggested: [kbd]pma_table_uiprefs[/kbd]"
@@ -5846,7 +5892,7 @@ msgid ""
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Déixeo en branco se non desexa preferencias «persistentes» da interface das "
-"táboas entre sesións; suxírese: [kbd]pma_table_uiprefs[/kbd]"
+"táboas entre sesións; suxírese: [kbd]pma__table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:434
msgid "UI preferences table"
@@ -5899,7 +5945,6 @@ msgid "Statements to track"
msgstr "Instrucións que seguir"
#: libraries/config/messages.inc.php:443
-#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma_tracking[/kbd]"
@@ -5927,7 +5972,6 @@ msgid "Automatically create versions"
msgstr "Crear versions automaticamente"
#: libraries/config/messages.inc.php:447
-#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
@@ -5936,7 +5980,7 @@ msgid ""
"pma__userconfig[/kbd]"
msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
-"suxerido: [kbd]pma_history[/kbd]"
+"suxerido: [kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:448
msgid "User preferences storage table"
@@ -5990,6 +6034,8 @@ msgstr "Mostrar o formulario para crear bases de datos"
#: libraries/config/messages.inc.php:458
msgid "Show or hide a column displaying the Creation timestamp for all tables"
msgstr ""
+"Mostrar ou agochar unha columna que mostre a marca temporal da creación de "
+"todas as táboas"
#: libraries/config/messages.inc.php:459
msgid "Show Creation timestamp"
@@ -5999,15 +6045,19 @@ msgstr "Mostrar marca temporal de creación"
msgid ""
"Show or hide a column displaying the Last update timestamp for all tables"
msgstr ""
+"Mostrar ou agochar unha columna que mostre a marca temporal da última "
+"actualización de todas as táboas"
#: libraries/config/messages.inc.php:461
msgid "Show Last update timestamp"
-msgstr ""
+msgstr "Mostrar a última actualización da marca temporal"
#: libraries/config/messages.inc.php:462
msgid ""
"Show or hide a column displaying the Last check timestamp for all tables"
msgstr ""
+"Mostrar ou agochar unha columna que mostre a marca temporal da última "
+"comprobación de todas as táboas"
#: libraries/config/messages.inc.php:463
msgid "Show Last check timestamp"
@@ -6030,8 +6080,8 @@ msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
-"Define se os campos tipo deben ser mostrados inicialmente no modo editar/"
-"inserir"
+"Define se os campos tipo deben ser mostrados inicialmente no modo "
+"editar/inserir"
#: libraries/config/messages.inc.php:467
msgid "Show field types"
@@ -6058,8 +6108,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]"
-"phpinfo()[/a]"
+"Mostra unha ligazón á saída de "
+"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]"
#: libraries/config/messages.inc.php:473
msgid "Show phpinfo() link"
@@ -6091,8 +6141,8 @@ msgstr "Reter a caixa de consultas"
#: libraries/config/messages.inc.php:479
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
-"Permitir que se mostren as estatísticas das bases de datos e das táboas (p."
-"ex. o uso do espazo)"
+"Permitir que se mostren as estatísticas das bases de datos e das táboas "
+"(p.ex. o uso do espazo)"
#: libraries/config/messages.inc.php:480
msgid "Show statistics"
@@ -6115,7 +6165,7 @@ msgstr "Ignorar as táboas bloqueadas"
#: libraries/config/messages.inc.php:488
msgid "Requires SQL Validator to be enabled"
-msgstr "Require que o válidador SQL estea activado"
+msgstr "Require que o validador SQL estea activado"
#: libraries/config/messages.inc.php:490
#: libraries/display_change_password.lib.php:61
@@ -6139,7 +6189,7 @@ msgstr ""
#: libraries/config/messages.inc.php:492
msgid "Enable SQL Validator"
-msgstr "Activar o válidador de SQL"
+msgstr "Activar o validador de SQL"
#: libraries/config/messages.inc.php:493
msgid ""
@@ -6217,8 +6267,8 @@ msgid ""
msgstr ""
"Escriba os proxies como [kbd]IP: cabezallo HTTP de confianza[/kbd]. O "
"exemplo seguinte especifica que o phpMyAdmin debería confiar nun cabezallo "
-"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]"
-"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
+"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy "
+"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:510
msgid "List of trusted proxies for IP allow/deny"
@@ -6226,8 +6276,7 @@ msgstr "Lista de proxies de confianza para permiso/denegación de IP"
#: libraries/config/messages.inc.php:511
msgid "Directory on server where you can upload files for import"
-msgstr ""
-"Directorio do servidor ao que se poden enviar os ficheiros que importar"
+msgstr "Directorio do servidor ao que se poden enviar os ficheiros que importar"
#: libraries/config/messages.inc.php:512
msgid "Upload directory"
@@ -6414,17 +6463,20 @@ msgstr "Detalles…"
#: libraries/dbi/drizzle-wrappers.lib.php:387
msgid "Can't seek in an unbuffered result set"
-msgstr ""
+msgstr "Non é posíbel buscar nun conxunto de resultados sen pasar polo buffer"
#: libraries/dbi/drizzle-wrappers.lib.php:408
msgid "Can't count rows in an unbuffered result set"
msgstr ""
+"Non é posíbel contar as fileiras nun conxunto de resultados sen pasar polo "
+"buffer"
#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:159
#: libraries/dbi/mysqli.dbi.lib.php:206
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
-"Fallou a conexión para controluser tal e como se define na súa configuración."
+"Fallou a conexión para «controluser» tal e como está definida na "
+"configuración."
#: libraries/display_change_password.lib.php:53
#: libraries/replication_gui.lib.php:371
@@ -6485,7 +6537,7 @@ msgstr "Número de columnas"
#: libraries/display_export.lib.php:49
msgid "Could not load export plugins, please check your installation!"
msgstr ""
-"Non foi posíbel cargar as extensións de exportación. Comprobe a instalación!"
+"Non foi posíbel cargar os engadidos de exportación. Comprobe a instalación!"
#: libraries/display_export.lib.php:96
msgid "Exporting databases from the current server"
@@ -6635,27 +6687,27 @@ msgstr "Conversión de codificación:"
#: libraries/display_git_revision.lib.php:56
#, php-format
msgid "%1$s from %2$s branch"
-msgstr ""
+msgstr "%1$s da galla %2$s"
#: libraries/display_git_revision.lib.php:58
msgid "no branch"
-msgstr ""
+msgstr "ningunha galla"
#: libraries/display_git_revision.lib.php:64
msgid "Git revision"
-msgstr ""
+msgstr "Revisión do git"
#: libraries/display_git_revision.lib.php:67
-#, fuzzy, php-format
+#, php-format
#| msgid "Create version %1$s of %2$s"
msgid "committed on %1$s by %2$s"
-msgstr "Crear versión %1$s de %2$s"
+msgstr "remitido o %1$s por %2$s"
#: libraries/display_git_revision.lib.php:75
-#, fuzzy, php-format
+#, php-format
#| msgid "Create version %1$s of %2$s"
msgid "authored on %1$s by %2$s"
-msgstr "Crear versión %1$s de %2$s"
+msgstr "creado o %1$s por %2$s"
#: libraries/display_import.lib.php:69
msgid ""
@@ -6674,7 +6726,7 @@ msgstr "%s de %s"
#: libraries/display_import.lib.php:86
msgid "Uploading your import file…"
-msgstr "Subindo o arquivo a importar…"
+msgstr "Subindo o ficheiro de importación..."
#: libraries/display_import.lib.php:94
#, php-format
@@ -6729,8 +6781,8 @@ msgid ""
"A compressed file's name must end in .[format].[compression]. "
"Example: .sql.zip"
msgstr ""
-"O nome dun ficheiro comprimido debe rematar en .[formato].[compresión]"
-"b>. Exemplo: .sql.zip"
+"O nome dun ficheiro comprimido debe rematar en "
+".[formato].[compresión]. Exemplo: .sql.zip"
#: libraries/display_import.lib.php:245
msgid "File uploads are not allowed on this server."
@@ -6749,7 +6801,6 @@ msgstr ""
"continuará desde a posición %d."
#: libraries/display_import.lib.php:289
-#, fuzzy
#| msgid ""
#| "Allow the interruption of an import in case the script detects it is "
#| "close to the PHP timeout limit. (This might be good way to import "
@@ -6927,8 +6978,8 @@ msgid ""
"method."
msgstr ""
"Se o ficheiro temporal usado para a creación rápida dun índice de MyISAM for "
-"máis grande que se se usar o caché de chaves na cantidade que se especifique "
-"aquí, preferir o método da caché de chaves."
+"máis grande que se se usar o caché de chaves na cantidade que se "
+"especifique aquí, preferir o método da caché de chaves."
#: libraries/engines/myisam.lib.php:47
msgid "Repair threads"
@@ -6940,7 +6991,8 @@ msgid ""
"parallel (each index in its own thread) during the repair by sorting process."
msgstr ""
"Se este valor é maior que 1, os índices das táboas MyISAM créanse en "
-"paralelo (cada índice no seu propio fío) durante o proceso Reparar ordenando."
+"paralelo (cada índice no seu propio fío) durante o proceso Reparar "
+"ordenando."
#: libraries/engines/myisam.lib.php:52
msgid "Sort buffer size"
@@ -7102,10 +7154,10 @@ msgid ""
"will be deleted, otherwise they are renamed and given the next highest "
"number."
msgstr ""
-"Este é o número de ficheiros de rexistro de transaccións (pbxt/system/xlog*."
-"xt) que vai manter o sistema. Se o número de ficheiros de rexistro excede "
-"este valor, os ficheiros de rexistro antigos elimínanse; se non, múdaselles "
-"o nome e dáselles o número máis alto seguinte."
+"Este é o número de ficheiros de rexistro de transaccións "
+"(pbxt/system/xlog*.xt) que vai manter o sistema. Se o número de ficheiros de "
+"rexistro excede este valor, os ficheiros de rexistro antigos elimínanse; se "
+"non, múdaselles o nome e dáselles o número máis alto seguinte."
#: libraries/engines/pbxt.lib.php:131
#, php-format
@@ -7488,7 +7540,7 @@ msgstr "descoñecido"
#: libraries/navigation/Navigation.class.php:61
msgid "An error has occured while loading the navigation tree"
-msgstr ""
+msgstr "Produciuse un erro ao cargar a árbore de navegación"
#: libraries/navigation/NavigationHeader.class.php:182
msgid "Home"
@@ -7510,38 +7562,37 @@ msgstr "Recargar a moldura de navegación"
#, php-format
msgid "%s other result found"
msgid_plural "%s other results found"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "atopouse %s resultado máis"
+msgstr[1] "atopáronse outros %s resultados"
#: libraries/navigation/NavigationTree.class.php:1027
-#, fuzzy
#| msgid "Filter tables by name"
msgid "filter databases by name"
-msgstr "Filtrar táboas por nome"
+msgstr "filtrar as bases de dato polo nome"
#: libraries/navigation/NavigationTree.class.php:1028
#: libraries/navigation/NavigationTree.class.php:1054
-#, fuzzy
#| msgid "Clear series"
msgid "Clear Fast Filter"
-msgstr "Limpar esta series"
+msgstr "Limpar o filtro rápido"
#: libraries/navigation/NavigationTree.class.php:1053
-#, fuzzy
#| msgid "Filter tables by name"
msgid "filter items by name"
-msgstr "Filtrar as táboas polo nome"
+msgstr "filtrar os elementos polo nome"
#. l10n: The word "Node" must not be translated here
#: libraries/navigation/NodeFactory.class.php:41
#, php-format
msgid "Invalid class name \"%1$s\", using default of \"Node\""
-msgstr ""
+msgstr "O nome de clase «%1$s» é incorrecto; emprégase o predefinido «Nodo»"
#: libraries/navigation/NodeFactory.class.php:65
#, php-format
msgid "Could not include class \"%1$s\", file \"%2$s\" not found"
msgstr ""
+"Non foi imposíbel incluír a clase «%1$s»; non foi posíbel atopar o ficheiro "
+"«%2$s»"
#: libraries/navigation/Nodes/Node_Column_Container.class.php:26
#: libraries/sql_query_form.lib.php:271
@@ -7549,14 +7600,12 @@ msgid "Columns"
msgstr "Columnas"
#: libraries/navigation/Nodes/Node_Column_Container.class.php:38
-#, fuzzy
#| msgid "New"
msgctxt "Create new column"
msgid "New"
-msgstr "Novo"
+msgstr "Nova"
#: libraries/navigation/Nodes/Node_Event_Container.class.php:36
-#, fuzzy
#| msgid "New"
msgctxt "Create new event"
msgid "New"
@@ -7569,14 +7618,12 @@ msgid "Functions"
msgstr "Funcións"
#: libraries/navigation/Nodes/Node_Function_Container.class.php:36
-#, fuzzy
#| msgid "New"
msgctxt "Create new function"
msgid "New"
-msgstr "Novo"
+msgstr "Nova"
#: libraries/navigation/Nodes/Node_Index_Container.class.php:38
-#, fuzzy
#| msgid "New"
msgctxt "Create new index"
msgid "New"
@@ -7590,21 +7637,18 @@ msgstr "Procedementos"
#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36
#: libraries/rte/rte_footer.lib.php:29
-#, fuzzy
#| msgid "New"
msgctxt "Create new procedure"
msgid "New"
msgstr "Novo"
#: libraries/navigation/Nodes/Node_Table_Container.class.php:40
-#, fuzzy
#| msgid "New"
msgctxt "Create new table"
msgid "New"
-msgstr "Novo"
+msgstr "Nova"
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36
-#, fuzzy
#| msgid "New"
msgctxt "Create new trigger"
msgid "New"
@@ -7616,15 +7660,14 @@ msgid "Views"
msgstr "Vistas"
#: libraries/navigation/Nodes/Node_View_Container.class.php:36
-#, fuzzy
#| msgid "New"
msgctxt "Create new view"
msgid "New"
-msgstr "Novo"
+msgstr "Nova"
#: libraries/operations.lib.php:75
msgid "Rename database to"
-msgstr "Renomear a base de datos a"
+msgstr "Renomear a base de datos como"
#: libraries/operations.lib.php:107
#, php-format
@@ -7837,7 +7880,7 @@ msgstr "Entrada (login)"
#: libraries/plugins/auth/AuthenticationCookie.class.php:99
msgid "Your session has expired. Please log in again."
-msgstr ""
+msgstr "A súa sesión xa expirou. Tenteo de novo."
#: libraries/plugins/auth/AuthenticationCookie.class.php:197
#: libraries/plugins/auth/AuthenticationCookie.class.php:207
@@ -8072,16 +8115,14 @@ msgid "PHP Version"
msgstr "Versión do PHP"
#: libraries/plugins/export/ExportMediawiki.class.php:84
-#, fuzzy
#| msgid "Export contents"
msgid "Export table names"
-msgstr "Exportar o contido"
+msgstr "Exportar os nomes das táboas"
#: libraries/plugins/export/ExportMediawiki.class.php:90
-#, fuzzy
#| msgid "horizontal (rotated headers)"
msgid "Export table headers"
-msgstr "horizontal (cabezallos rotados)"
+msgstr "Exportar os cabezallos das táboas"
#: libraries/plugins/export/ExportPdf.class.php:97
msgid "(Generates a report containing the data of a single table)"
@@ -8134,20 +8175,19 @@ msgid ""
"Enclose table and column names with backquotes (Protects column and table "
"names formed with special characters or keywords)"
msgstr ""
-"Encerrar os nomes das táboas e das columnas entre aspas invertidas "
-"(Protexe os nomes das columnas e as táboas formadas con caracteres especiais "
-"ou palabras chave)"
+"Encerrar os nomes das táboas e das columnas entre aspas invertidas "
+"(Protexe os nomes das columnas e as táboas formadas con caracteres "
+"especiais ou palabras chave)"
#: libraries/plugins/export/ExportSql.class.php:295
-#, fuzzy
#| msgid "Object creation options"
msgid "Data creation options"
-msgstr "Opcións de creación de obxectos"
+msgstr "Opcións de creación de datos"
#: libraries/plugins/export/ExportSql.class.php:299
#: libraries/plugins/export/ExportSql.class.php:1649
msgid "Truncate table before insert"
-msgstr "Vaciar táboa antes de inserir"
+msgstr "Baleirar a táboa antes de inserir"
#: libraries/plugins/export/ExportSql.class.php:305
msgid "Instead of INSERT statements, use:"
@@ -8177,8 +8217,8 @@ msgid ""
"(1,2,3)"
msgstr ""
"incluír os nomes das columnas en todas as instrucións INSERT "
-"
Exemplo: INSERT INTO nome_taboa (col_A,col_B,"
-"col_C) VALUES (1,2,3)"
+"
Exemplo: INSERT INTO nome_taboa "
+"(col_A,col_B,col_C) VALUES (1,2,3)"
#: libraries/plugins/export/ExportSql.class.php:361
msgid ""
@@ -8241,7 +8281,7 @@ msgstr "RELACIÓNS PARA A TÁBOA"
#: libraries/plugins/export/ExportSql.class.php:1566
msgid "Error reading data:"
-msgstr "Houbo un erro ao ler os datos:"
+msgstr "Produciuse un erro ao ler os datos:"
#: libraries/plugins/export/ExportXml.class.php:102
msgid "Object creation options (all are recommended)"
@@ -8268,7 +8308,8 @@ msgid ""
msgstr ""
"Se os datos de cada fileira do ficheiro non están na mesma orde que na base "
"de datos, enumere aquí os nomes das columnas correspondentes. Os nomes das "
-"columnas teñen que estar separados por vírgulas e non encerrados entre aspas."
+"columnas teñen que estar separados por vírgulas e non encerrados entre "
+"aspas."
#: libraries/plugins/import/ImportCsv.class.php:127
msgid "Column names: "
@@ -8312,10 +8353,10 @@ msgid "MediaWiki Table"
msgstr "Táboa do MediaWiki"
#: libraries/plugins/import/ImportMediawiki.class.php:303
-#, fuzzy, php-format
+#, php-format
#| msgid "Invalid format of CSV input on line %d."
msgid "Invalid format of mediawiki input on line:
%s."
-msgstr "O formato de entrada de CSV non é válido na liña %d."
+msgstr "O formato de entrada de mediawiki non é válido na liña:
%s."
#: libraries/plugins/import/ImportOds.class.php:88
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
@@ -8377,13 +8418,15 @@ msgstr "XML"
#: libraries/plugins/import/ShapeRecord.class.php:58
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
-msgstr ""
+msgstr "MySQL non recoñece o tipo de xeometría «%s»."
#: libraries/plugins/transformations/abstract/AppendTransformationsPlugin.class.php:32
msgid ""
"Appends text to a string. The only option is the text to be appended "
"(enclosed in single quotes, default empty string)."
msgstr ""
+"Engade texto a unha cadea. A única opción é o texto que se engade (encerrado "
+"entre aspas simples; por omisión unha cadea baleira)."
#: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31
msgid ""
@@ -8397,13 +8440,13 @@ msgid ""
"gmdate() function."
msgstr ""
"Mostra unha columna TIME, TIMESTAMP, DATETIME ou unha marca de tempo "
-"numérica de UNIXcomo hora e data con formato. A primeira opción é a "
+"numérica de UNIX como hora e data con formato. A primeira opción é a "
"diferenza (en horas) que se engade á hora ou data (Por omisión: 0). Empregue "
"a segunda opción para indicar unha cadea de formato de data/hora diferente. "
-"A terceira opción determina se se desexa ver a hora local ou a UTC (empregue "
-"as cadeas «local»ou «utc») para iso. Segundo isto, o formato de data ten un "
-"valor diferente - para «local» vexa a documentación acerca da función de PHP "
-"strftime() e para «utc» faise empregando a función gmdate()."
+"A terceira opción determina se se desexa ver a hora local ou a UTC "
+"(empregue as cadeas «local»ou «utc») para iso. Segundo isto, o formato de "
+"data ten un valor diferente - para «local» vexa a documentación acerca da "
+"función de PHP strftime() e para «utc» faise empregando a función gmdate()."
#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
msgid ""
@@ -8418,7 +8461,6 @@ msgstr ""
"segunda opción, a primeira debe conter só unha cadea baleira."
#: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31
-#, fuzzy
#| msgid ""
#| "UX ONLY: Launches an external application and feeds it the field data "
#| "standard input. Returns the standard output of the application. The ault "
@@ -8445,13 +8487,14 @@ msgstr ""
"SÓ EN LINUX: Inicia un aplicativo externa e envíalle o campo de datos por "
"medio da entrada normal. Devolve a saída normal do aplicativo. Por omisión é "
"Tidy, para que resulte código HTML claro. Por razóns de seguranza, ten que "
-"editar manualmente o ficheiro libraries/transformations/text_plain__external."
-"inc.php e inserir as ferramentas que queira permitir que funcionen. A "
-"primeira opción, polo tanto, é o número do programa que quere usar e a "
-"segunda opción son os parámetros do programa. O terceiro parámetro, se for "
-"1, usará htmlspecialchars() para convertir a saída (Por omisión é 1). Un "
-"cuarto parámetro, se for 1, porá un NOWRAP na cela de contidos para que toda "
-"a saída se mostre sen reformatar (Por omisión é 1)"
+"editar manualmente o ficheiro "
+"libraries/plugins/transformations/Text_Plain_External.class.php e inserir as "
+"ferramentas que queira permitir que funcionen. A primeira opción, polo "
+"tanto, é o número do programa que quere usar e a segunda opción son os "
+"parámetros do programa. O terceiro parámetro, se for 1, usará "
+"htmlspecialchars() para converter a saída (Por omisión é 1). Un cuarto "
+"parámetro, se for 1, porá un NOWRAP na cela de contidos para que toda a "
+"saída se mostre sen reformatar (por omisión é 1)"
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
msgid ""
@@ -8505,7 +8548,7 @@ msgstr ""
"Só mostra parte dunha cadea. A primeira opción é o número de caracteres que "
"hai que saltar desde o comezo da cadea (por omisión, 0). A segunda opción é "
"o número de caracteres que devolver (Por omisión: até o fin da cadea). A "
-"terceira opción é a cadea que engadir e/ou antepór cando se trunque (Por "
+"terceira opción é a cadea que engadir e/ou antepor cando se trunque (Por "
"omisión: «…»)."
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
@@ -8609,8 +8652,8 @@ msgid ""
"code>), for example by starting from config.sample.inc.php."
msgstr ""
"Active as funcionalidades avanzadas no ficheiro de configuración "
-"(config.inc.php) comezando, por exemplo con config.sample."
-"inc.php."
+"(config.inc.php) comezando, por exemplo con "
+"config.sample.inc.php."
#: libraries/relation.lib.php:278
msgid "Re-login to phpMyAdmin to load the updated configuration file."
@@ -8679,8 +8722,8 @@ msgid ""
"Only slaves started with the --report-host=host_name option are visible in "
"this list."
msgstr ""
-"Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-"
-"host=nome_da_máquina."
+"Nesta listaxe só son visíbeis os escravos que se inicien coa opción "
+"--report-host=nome_da_máquina."
#: libraries/replication_gui.lib.php:264 server_replication.php:183
msgid "Add slave replication user"
@@ -8834,23 +8877,23 @@ msgstr "O definidor ten que estar no formato «nomedeusuario@nomedeservidor»"
#: libraries/rte/rte_events.lib.php:574
msgid "You must provide an event name"
-msgstr "Debe proporcionar un nome de acontecemento"
+msgstr "Debe indicar un nome de acontecemento"
#: libraries/rte/rte_events.lib.php:588
msgid "You must provide a valid interval value for the event."
-msgstr "Debe proporcionar un valor do intervalo válido para o acontecemento."
+msgstr "Debe indicar un valor do intervalo válido para o acontecemento."
#: libraries/rte/rte_events.lib.php:603
msgid "You must provide a valid execution time for the event."
-msgstr "Debe proporcionar un tempo de execución válido para o acontecemento."
+msgstr "Debe indicar un tempo de execución válido para o acontecemento."
#: libraries/rte/rte_events.lib.php:607
msgid "You must provide a valid type for the event."
-msgstr "Debe proporcionar un tipo válido para o acontecemento."
+msgstr "Debe indicar un tipo válido para o acontecemento."
#: libraries/rte/rte_events.lib.php:631
msgid "You must provide an event definition."
-msgstr "Debe proporcionar unha definición do acontecemento."
+msgstr "Debe indicar unha definición do acontecemento."
#: libraries/rte/rte_footer.lib.php:91
msgid "OFF"
@@ -8875,6 +8918,10 @@ msgid ""
"fail![/strong] Please use the improved 'mysqli' extension to avoid any "
"problems."
msgstr ""
+"Está a empregar a extensión obsoleta de PHP «mysql», que non pode xestionar "
+"consultas múltiples. [strong]A execución de varias rutinas almacenadas pode "
+"fallar![/strong] Empregue a extensión mellorada «mysqli para evitar "
+"problemas."
#: libraries/rte/rte_routines.lib.php:280
#: libraries/rte/rte_routines.lib.php:1079
@@ -8951,7 +8998,7 @@ msgstr "Acceso de datos SQL"
#: libraries/rte/rte_routines.lib.php:1086
msgid "You must provide a routine name"
-msgstr "Debe proporcionar un nome á rutina"
+msgstr "Debe indicar un nome á rutina"
#: libraries/rte/rte_routines.lib.php:1112
#, php-format
@@ -8977,7 +9024,7 @@ msgstr "Ten que fornecer un tipo de devolución válida para a rutina."
#: libraries/rte/rte_routines.lib.php:1202
msgid "You must provide a routine definition."
-msgstr "Debe proporcionar unha definición da rutina."
+msgstr "Debe indicar unha definición da rutina."
#: libraries/rte/rte_routines.lib.php:1288
#, php-format
@@ -8988,10 +9035,8 @@ msgstr "Resultados da execución da rutina %s"
#, 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 fileira afectada pola última instrución de dentro do procedemento"
-msgstr[1] ""
-"%d fileiras afectadas pola última instrución de dentro do procedemento"
+msgstr[0] "%d fileira afectada pola última instrución de dentro do procedemento"
+msgstr[1] "%d fileiras afectadas pola última instrución de dentro do procedemento"
#: libraries/rte/rte_routines.lib.php:1421
#: libraries/rte/rte_routines.lib.php:1429
@@ -9032,23 +9077,23 @@ msgstr "Tempo"
#: libraries/rte/rte_triggers.lib.php:452
msgid "You must provide a trigger name"
-msgstr "Debe proporcionar un nome ao disparador"
+msgstr "Debe indicar un nome ao disparador"
#: libraries/rte/rte_triggers.lib.php:459
msgid "You must provide a valid timing for the trigger"
-msgstr "Debe proporcionar unha sincronización válida para o disparador"
+msgstr "Debe indicar unha sincronización válida para o disparador"
#: libraries/rte/rte_triggers.lib.php:466
msgid "You must provide a valid event for the trigger"
-msgstr "Debe proporcionar un acontecemento válido para o disparador"
+msgstr "Debe indicar un acontecemento válido para o disparador"
#: libraries/rte/rte_triggers.lib.php:474
msgid "You must provide a valid table name"
-msgstr "Debe proporcionar un nome de táboa válido"
+msgstr "Debe indicar un nome de táboa válido"
#: libraries/rte/rte_triggers.lib.php:480
msgid "You must provide a trigger definition."
-msgstr "Debe proporcionar unha definición do disparador."
+msgstr "Debe indicar unha definición do disparador."
#: libraries/rte/rte_words.lib.php:22
msgid "Add routine"
@@ -9528,7 +9573,8 @@ msgstr "Permite eliminar táboas."
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
-"Permite engadir usuarios e privilexios sen recargar as táboas de privilexios."
+"Permite engadir usuarios e privilexios sen recargar as táboas de "
+"privilexios."
#: libraries/server_privileges.lib.php:1032
msgid "Login Information"
@@ -9581,7 +9627,6 @@ msgid "User has been added."
msgstr "O usuario foi engadido."
#: libraries/server_privileges.lib.php:1625
-#, fuzzy
#| msgid "New"
msgctxt "Create new user"
msgid "New"
@@ -9776,9 +9821,9 @@ msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
"below, if there is any, may also help you in diagnosing the problem"
msgstr ""
-"Parece que houbo un problema na súa consulta de SQL. Se máis abaixo aparece "
-"unha mensaxe de erro do servidor de MySQL, isto pode axudar a diagnosticar o "
-"problema"
+"Parece que se produciu un erro na súa consulta de SQL. Se máis abaixo "
+"aparece unha mensaxe de erro do servidor de MySQL, isto pode axudar a "
+"diagnosticar o problema"
#: libraries/sqlparser.lib.php:171
msgid ""
@@ -9914,14 +9959,13 @@ msgid "Fulltext"
msgstr "Texto completo"
#: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519
-#, fuzzy
#| msgid "Remove column(s)"
msgid "Move columns"
-msgstr "Eliminar columna(s)"
+msgstr "Mover columna(s)"
#: libraries/structure.lib.php:1426
msgid "Move the columns by dragging them up and down."
-msgstr ""
+msgstr "Mova as columnas arrastrándoas para riba e para baixo."
#: libraries/structure.lib.php:1460
msgid "Edit view"
@@ -10008,10 +10052,9 @@ msgid "A primary key has been added on %s"
msgstr "Engadiuse unha chave primaria a %s"
#: libraries/structure.lib.php:2025 libraries/structure.lib.php:2096
-#, fuzzy
#| msgid "Browse distinct values"
msgid "Distinct values"
-msgstr "Examinar valores claramente distintos"
+msgstr "Valores diferentes"
#: libraries/structure.lib.php:2028 libraries/structure.lib.php:2031
msgid "Add primary key"
@@ -10052,10 +10095,9 @@ msgid "Table %1$s has been altered successfully"
msgstr "Alterouse a táboa %1$s sen problemas"
#: libraries/structure.lib.php:2536
-#, fuzzy
#| msgid "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
-msgstr "Elimináronse sen problemas os usuarios seleccionados."
+msgstr "Movéronse as columnas satisfactoriamente."
#: libraries/tbl_columns_definition_form.inc.php:101
msgid ""
@@ -10078,10 +10120,9 @@ msgstr ""
"barras ou aspas e empregando este formato: a"
#: libraries/tbl_columns_definition_form.inc.php:148
-#, fuzzy
#| msgid "Remove column(s)"
msgid "Move column"
-msgstr "Eliminar columna(s)"
+msgstr "Mover columna"
#: libraries/tbl_columns_definition_form.inc.php:158
#, php-format
@@ -10090,7 +10131,7 @@ msgid ""
"transformations, click on %stransformation descriptions%s"
msgstr ""
"Para unha lista das opcións de transformación dispoñíbeis e as súas "
-"transformacións de tipos MIME, prema %sdescricións das transformacións%s"
+"transformacións de tipos MIME, prema %sdescricións das transformacións%s"
#: libraries/tbl_columns_definition_form.inc.php:170
msgid "Transformation options"
@@ -10130,10 +10171,10 @@ msgid "first"
msgstr "Primeiro"
#: libraries/tbl_columns_definition_form.inc.php:642
-#, fuzzy, php-format
+#, php-format
#| msgid "After %s"
msgid "after %s"
-msgstr "Despois de %s"
+msgstr "despois de %s"
#: libraries/tbl_columns_definition_form.inc.php:739
msgid "Table name"
@@ -10187,7 +10228,7 @@ msgid "Error in ZIP archive:"
msgstr "Produciuse un erro no ficheiro ZIP:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10200,11 +10241,11 @@ msgstr "Mostrar/Agochar o menú esquerdo"
#: pmd_general.php:86
msgid "View in fullscreen"
-msgstr ""
+msgstr "Ver a pantalla completa"
#: pmd_general.php:90
msgid "Exit fullscreen"
-msgstr ""
+msgstr "Saír da pantalla completa"
#: pmd_general.php:95
msgid "Save position"
@@ -10415,8 +10456,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o "
-"%sScript de configuración%s."
+"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %"
+"sScript de configuración%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -10784,8 +10825,8 @@ msgstr ""
#: server_status.php:103
msgid "This MySQL server works as slave in replication process."
msgstr ""
-"Este servidor funciona como escravo nun proceso de replicación"
-"b>."
+"Este servidor funciona como escravo nun proceso de "
+"replicación."
#: server_status.php:109
msgid ""
@@ -10826,7 +10867,7 @@ msgstr "Tentativas falidas"
#: server_status.php:253
msgid "Aborted"
-msgstr "Cancelado"
+msgstr "Interrompido"
#: server_status.php:313
msgid "ID"
@@ -10875,8 +10916,8 @@ msgid ""
"no clearly measurable improvement."
msgstr ""
"A mellor maneira de axustar o sistema sería modificar só unha opción de cada "
-"vez, observar ou someter a base de datos a probas e desfacer o cambio se non "
-"se apreciaron melloras medíbeis."
+"vez, observar ou someter a base de datos a probas e desfacer o cambio se "
+"non se apreciaron melloras medíbeis."
#: server_status_monitor.php:472
msgid "Start Monitor"
@@ -10991,8 +11032,8 @@ 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 ""
-"Activar general_log pode incrementar a carga do servidor entre un 5% e un "
-"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha "
+"Activar general_log pode incrementar a carga do servidor entre un 5% e un 15"
+"%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha "
"tarefa que require un traballo intensivo, polo que se recomenda escoller só "
"un tempo limitado e desactivar general_log e baleirar a súa táboa cando non "
"se requira máis esa vixilancia."
@@ -11128,8 +11169,8 @@ msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-"O número de conexións que se cancelaron porque o cliente morreu sen fechar "
-"axeitadamente a conexión."
+"O número de conexións que se interromperon porque o cliente morreu sen "
+"fechar axeitadamente a conexión."
#: server_status_variables.php:335
msgid "The number of failed attempts to connect to the MySQL server."
@@ -11267,9 +11308,9 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
"Número de peticións para ler unha fileira baseadas nunha posición fixa. Isto "
-"é alto se está a realizar moitas consultas que requiran ordenar o resultado. "
-"Posibelmente terá un monte de consultas que esixan que MySQL examine táboas "
-"completas ou ten unións que non usan as chaves axeitadamente."
+"é alto se está a realizar moitas consultas que requiran ordenar o "
+"resultado. Posibelmente terá un monte de consultas que esixan que MySQL "
+"examine táboas completas ou ten unións que non usan as chaves axeitadamente."
#: server_status_variables.php:418
msgid ""
@@ -11376,8 +11417,8 @@ msgid ""
msgstr ""
"Normalmente, escríbese no buffer de InnoDB como tarefa de fondo. Porén, de "
"se precisar ler ou crear unha páxina e non haber páxinas limpas dispoñíbeis, "
-"hai que agardar a que se limpen. Este contador vai contando cantas veces hai "
-"que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser "
+"hai que agardar a que se limpen. Este contador vai contando cantas veces "
+"hai que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser "
"pequeno."
#: server_status_variables.php:486
@@ -11548,10 +11589,9 @@ msgstr ""
"empregado."
#: server_status_variables.php:597
-#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
-msgstr "Porcentaxe de uso do límite de ficheiros abertos"
+msgstr "Porcentaxe de caché chave empregada (valor calculado)"
#: server_status_variables.php:600
msgid "The number of requests to read a key block from the cache."
@@ -11565,13 +11605,16 @@ msgid ""
msgstr ""
"Número de lecturas físicas dun bloque chave desde o disco. Se key_reads for "
"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."
+"relación de perdas da caché pódese calcular así: "
+"Key_reads/Key_read_requests."
#: server_status_variables.php:609
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
+"A caché chave calculouse erroneamente como a proporción de lecturas físicas "
+"comparada coas solicitudes de lectura (valor calculado)"
#: server_status_variables.php:613
msgid "The number of requests to write a key block to the cache."
@@ -11585,6 +11628,8 @@ msgstr "Número de escritas físicas dun bloque chave no disco."
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
+"Porcentaxe de escritas físicas comparada coas solicitudes de escrita (valor "
+"calculado)"
#: server_status_variables.php:623
msgid ""
@@ -11817,10 +11862,9 @@ msgstr ""
"de fíos.)"
#: server_status_variables.php:759
-#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
-msgstr "Porcentaxe de caché de fíos %%"
+msgstr "Porcentaxe de impactos na caché de fíos (valor calculado)"
#: server_status_variables.php:762
msgid "The number of threads that are not sleeping."
@@ -11843,6 +11887,7 @@ msgid "Global value"
msgstr "Valor global"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Descargar"
@@ -11998,7 +12043,7 @@ msgid ""
"Reading of version failed. Maybe you're offline or the upgrade server does "
"not respond."
msgstr ""
-"Produciuse un fallo ao ler a versión. Talvez non haxa conexión ou o servidor "
+"Produciuse un erro ao ler a versión. Talvez non haxa conexión ou o servidor "
"de actualizacións non responda."
#: setup/lib/index.lib.php:165
@@ -12015,8 +12060,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
-"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] :-)"
-"[br]A versión estable máis recente é %s, publicada o %s."
+"Está a empregar o sistema de versións Git; execute [kbd]git pull[/kbd] "
+":-)[br]A versión estable máis recente é %s, publicada o %s."
#: setup/lib/index.lib.php:203
msgid "No newer stable version is available"
@@ -12096,8 +12141,8 @@ msgid ""
"most. Values larger than 1800 may pose a security risk such as impersonation."
msgstr ""
"A %svalidez das cookies de identificación%s deberíase reducir a un máximo de "
-"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un risco "
-"de seguranza, como a suplantación de personalidade."
+"1800 seconds (30 minutos). Os valores superiores a 1800 poden supor un "
+"risco de seguranza, como a suplantación de personalidade."
#: setup/lib/index.lib.php:312
#, php-format
@@ -12117,8 +12162,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se pensa que é preciso, empregue opcións de protección adicionais - "
-"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a "
+"Se pensa que é preciso, empregue opcións de protección adicionais - %"
+"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a "
"protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao "
"que estean ligados miles de usuarios, incluído vostede."
@@ -12174,8 +12219,7 @@ msgstr "A chave é curta de máis, debería ter un mínimo de oito caracteres."
#: setup/lib/index.lib.php:431
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."
+msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais."
#: setup/validate.php:22
msgid "Wrong data"
@@ -12187,10 +12231,9 @@ msgid "Using bookmark \"%s\" as default browse query."
msgstr "A empregar o marcador «%s» como consulta de navegación por omisión."
#: sql.php:381
-#, fuzzy
#| msgid "Bookmark %s created"
msgid "Bookmark not created"
-msgstr "Creouse o marcador %s"
+msgstr "Non se creou o marcador"
#: sql.php:914
msgid "Showing as PHP code"
@@ -12218,10 +12261,9 @@ msgid "Label"
msgstr "Etiqueta"
#: tbl_chart.php:43
-#, fuzzy
#| msgid "No data found"
msgid "No data to display"
-msgstr "Non se atoparon datos"
+msgstr "Non hai datos que mostrar"
#: tbl_chart.php:132
msgctxt "Chart type"
@@ -12246,7 +12288,7 @@ msgstr "Curvas spline"
#: tbl_chart.php:141
msgctxt "Chart type"
msgid "Area"
-msgstr ""
+msgstr "Áreas"
#: tbl_chart.php:144
msgctxt "Chart type"
@@ -12254,11 +12296,10 @@ msgid "Pie"
msgstr "Sectores"
#: tbl_chart.php:148
-#, fuzzy
#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
-msgstr "Tempo"
+msgstr "Liña de tempo"
#: tbl_chart.php:155
msgid "Stacked"
@@ -12307,39 +12348,27 @@ msgstr "Creouse a táboa %1$s."
msgid "View dump (schema) of table"
msgstr "Ver o esquema do envorcado da táboa"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Mostrar a visualización GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Largo"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Altura"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Etiqueta da columna"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "- Ningunha -"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Columna espacial"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Redebuxar"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Gardar nun ficheiro"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Nome do ficheiro"
@@ -12370,10 +12399,9 @@ msgstr ""
"(«PRIMARIA» debe ser o nome de e só de unha chave primaria)"
#: tbl_indexes.php:227
-#, fuzzy
#| msgid "Comment"
msgid "Comment:"
-msgstr "Comentario"
+msgstr "Comentario:"
#: tbl_indexes.php:239
msgid "Index type:"
@@ -12490,10 +12518,10 @@ msgid "Tracking statements"
msgstr "Instrucións de seguimento"
#: tbl_tracking.php:523 tbl_tracking.php:671
-#, fuzzy, php-format
+#, php-format
#| msgid "Show %s with dates from %s to %s by user %s %s"
msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s"
-msgstr "Mostrar %s con datas de %s a %s polo usuario %s %s"
+msgstr "Mostrar %1$s con datas de %2$s to %3$s polo usuario %4$s %5$s"
#: tbl_tracking.php:531
msgid "Delete tracking data row from report"
@@ -12678,8 +12706,8 @@ msgstr ""
#, php-format
msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
-"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s"
-"%%."
+"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%"
+"%."
#: libraries/advisory_rules.txt:70
msgid "Slow query rate"
@@ -12747,7 +12775,6 @@ msgid "log_slow_queries is set to 'OFF'"
msgstr "log_slow_queries esta configurado como «OFF»"
#: libraries/advisory_rules.txt:95
-#, fuzzy
#| msgid ""
#| "Enable slow query logging by setting {log_slow_queries} to 'ON'. This "
#| "will help troubleshooting badly performing queries."
@@ -12755,14 +12782,13 @@ msgid ""
"Enable slow query logging by setting {slow_query_log} to 'ON'. This will "
"help troubleshooting badly performing queries."
msgstr ""
-"Active o rexistro de consultas lentas configurando {long_slow_queries} como "
+"Active o rexistro de consultas lentas configurando {slow_query_log} como "
"«ON». Con isto detéctanse as consultas con desempeño defectuoso."
#: libraries/advisory_rules.txt:96
-#, fuzzy
#| msgid "log_slow_queries is set to 'OFF'"
msgid "slow_query_log is set to 'OFF'"
-msgstr "log_slow_queries esta configurado como «OFF»"
+msgstr "slow_query_log esta configurado como «OFF»"
#: libraries/advisory_rules.txt:100
msgid "Release Series"
@@ -12927,9 +12953,10 @@ msgid ""
"cache, especially if you have multiple slaves."
msgstr ""
"Está a empregar a caché de consultas de MySQL cunha base de datos de "
-"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da "
-"caché de consultas de MySQL, especialmente se ten varios escravos."
+"bastante tráfico. Sería boa idea considerar o uso de memcached no canto da caché de consultas de MySQL, "
+"especialmente se ten varios escravos."
#: libraries/advisory_rules.txt:165
#, php-format
@@ -13337,8 +13364,8 @@ msgstr ""
"disco, independentemente do valor destas variábeis. Para eliminalas hai que "
"reescribir as consultas para que eviten esas condicións (Nunha táboa "
"temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna "
-"maior de 512 bytes), como se menciona no comezo dun artigo do grupo "
+"maior de 512 bytes), como se menciona no comezo dun artigo do grupo "
"Pythian"
#: libraries/advisory_rules.txt:274
@@ -13369,8 +13396,9 @@ msgstr ""
"disco, independentemente do valor destas variábeis. Para eliminalas hai que "
"reescribir as consultas para que eviten esas condicións (Nunha táboa "
"temporal: presenza dunha columna tipo BLOB ou TEXT ou presenza dunha columna "
-"maior de 512 bytes), como se menciona na documentación do MySQL"
+"maior de 512 bytes), como se menciona na documentación do MySQL"
#: libraries/advisory_rules.txt:281
#, php-format
@@ -13667,11 +13695,11 @@ msgstr ""
#: libraries/advisory_rules.txt:399
msgid "Percentage of aborted connections"
-msgstr "Porcentaxe de conexións canceladas"
+msgstr "Porcentaxe de conexións interrompidas"
#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409
msgid "Too many connections are aborted."
-msgstr "Canceláronse demasiadas conexións."
+msgstr "Interrompéronse demasiadas conexións."
#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410
msgid ""
@@ -13680,37 +13708,37 @@ msgid ""
"source-of-aborted_connects/\">This article might help you track down the "
"source."
msgstr ""
-"As conexións son canceladas xeralmente cando non poden ser autorizadas. Este artigo podería ser de axuda para "
+"As conexións son interrompidas xeralmente cando non poden ser autorizadas. "
+"Este artigo podería ser de axuda para "
"rastrear o motivo das mesmas."
#: libraries/advisory_rules.txt:404
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
-"O %s%% de todas as conexións foi cancelado. Este valor debería ser inferior "
-"ao 1%%"
+"O %s%% de todas as conexións foi interrompido. Este valor debería ser "
+"inferior ao 1%%"
#: libraries/advisory_rules.txt:406
msgid "Rate of aborted connections"
-msgstr "Taxa de conexións canceladas"
+msgstr "Taxa de conexións interrompidas"
#: libraries/advisory_rules.txt:411
#, php-format
msgid ""
"Aborted connections rate is at %s, this value should be less than 1 per hour"
msgstr ""
-"A taxa de conexións canceladas está en %s; este valor debería ser inferior a "
-"1 por hora"
+"A taxa de conexións interrompidas está en %s; este valor debería ser "
+"inferior a 1 por hora"
#: libraries/advisory_rules.txt:413
msgid "Percentage of aborted clients"
-msgstr "Porcentaxe de clientes cancelados"
+msgstr "Porcentaxe de clientes interrompidos"
#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423
msgid "Too many clients are aborted."
-msgstr "Demasiadas clientes foron cancelados."
+msgstr "Demasiadas clientes foron interrompidos"
#: libraries/advisory_rules.txt:417 libraries/advisory_rules.txt:424
msgid ""
@@ -13718,27 +13746,28 @@ msgid ""
"MySQL properly. This can be due to network issues or code not closing a "
"database handler properly. Check your network and code."
msgstr ""
-"Os clientes cancélanse normalmente cando non fecharon a súa conexión a MySQL "
-"axeitadamente. isto pódese deber a problemas na rede ou a que o código non "
-"fecha o xestor da base de datos axeitadamente. Comprobe a rede e o código."
+"Os clientes interrómpense normalmente cando non fecharon a súa conexión a "
+"MySQL axeitadamente. isto pódese deber a problemas na rede ou a que o código "
+"non fecha o xestor da base de datos axeitadamente. Comprobe a rede e o "
+"código."
#: libraries/advisory_rules.txt:418
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
-"O %s%% de todos os clientes foi cancelado. Este valor debería ser inferior "
-"ao 2%%"
+"O %s%% de todos os clientes foi interrompido. Este valor debería ser "
+"inferior ao 2%%"
#: libraries/advisory_rules.txt:420
msgid "Rate of aborted clients"
-msgstr "Taxa de clientes cancelados"
+msgstr "Taxa de clientes interrompidos"
#: libraries/advisory_rules.txt:425
#, php-format
msgid "Aborted client rate is at %s, this value should be less than 1 per hour"
msgstr ""
-"A taxa de clientes cancelados está en %s; este valor debería ser inferior a "
-"1 por hora"
+"A taxa de clientes interrompidos está en %s; este valor debería ser inferior "
+"a 1 por hora"
#: libraries/advisory_rules.txt:429
msgid "Is InnoDB disabled?"
@@ -13789,9 +13818,9 @@ msgstr ""
"chega simplemente con cambiar o valor desta variábel. hai que apagar o "
"servidor, retirar os ficheiros de rexistro de InnoDB, configurar o novo "
"valor en my.cnf, iniciar o servidor e a seguir comprobar os rexistros de "
-"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue"
+"erro par ver que todo fose ben. Consulte tamén esta entrada de blogue"
#: libraries/advisory_rules.txt:441
#, php-format
@@ -13826,11 +13855,12 @@ msgstr ""
"Normalmente abonda con configurar innodb_log_file_size como o 25%% do tamaño "
"de {innodb_buffer_pool_size}. Un innodb_log_file moi grande enlentece "
"considerabelmente o tempo de recuperación a seguir unha quebra da base de "
-"datos. Consulte tamén este artigo. Hai "
-"que apagar o servidor, retirar os ficheiros de rexistro de InnoDB, "
-"configurar o novo valor en my.cnf, iniciar o servidor, e a seguir comprobar "
-"os rexistros de erro para comprobar que todo fose ben. Consulte tamén este artigo. Hai que apagar o servidor, retirar "
+"os ficheiros de rexistro de InnoDB, configurar o novo valor en my.cnf, "
+"iniciar o servidor, e a seguir comprobar os rexistros de erro para comprobar "
+"que todo fose ben. Consulte tamén esta entrada de blogue"
@@ -13870,8 +13900,9 @@ msgstr ""
"memoria dos demais servizos e as táboas que non sexan de InnoDB e configurar "
"esta variábel en consecuencia. Se se configura demasiado alta, o sistema "
"comezará a gravar no disco, o que reduce o desempeño de maneira "
-"significativa. Consulte tamén este artigo"
+"significativa. Consulte tamén este artigo"
#: libraries/advisory_rules.txt:455
#, php-format
@@ -13901,13 +13932,23 @@ msgid ""
"refman/5.5/en/concurrent-inserts.html\">MySQL Documentation"
msgstr ""
"Configurar {concurrent_insert} como 1 reduce a contención entre as lecturas "
-"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL"
+"e as escritas nunha táboa dada. Consulte tamén a documentación do MySQL"
#: libraries/advisory_rules.txt:464
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está definido como 0"
+#~ msgid "Width"
+#~ msgstr "Largo"
+
+#~ msgid "Height"
+#~ msgstr "Altura"
+
+#~ msgid "Save to file"
+#~ msgstr "Gardar nun ficheiro"
+
#~ msgid "Total count"
#~ msgstr "Cantidade total"
@@ -14056,8 +14097,8 @@ msgstr "concurrent_insert está definido como 0"
#~ "Target database will be completely synchronized with source database. "
#~ "Source database will remain unchanged."
#~ msgstr ""
-#~ "A base de datos de destino sincronizarase completamente coa base de datos "
-#~ "de orixe. A base de datos de orixe ficará sen alteracións."
+#~ "A base de datos de destino sincronizarase completamente coa base de datos de "
+#~ "orixe. A base de datos de orixe ficará sen alteracións."
#, fuzzy
#~| msgid "New"
@@ -14066,8 +14107,7 @@ msgstr "concurrent_insert está definido como 0"
#~ msgstr "Novo"
#~ msgid "phpMyAdmin is more friendly with a frames-capable browser."
-#~ msgstr ""
-#~ "phpMyAdmin utilízase mellor cun navegador que acepte molduras."
+#~ msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras."
#~ msgid ""
#~ "Enabling this allows a page located on a different domain to call "
@@ -14109,8 +14149,8 @@ msgstr "concurrent_insert está definido como 0"
#~ "If tooltips are enabled and a database comment is set, this will flip the "
#~ "comment and the real name"
#~ msgstr ""
-#~ "Se as mensaxes estiveren activadas e existir un comentario da base de "
-#~ "datos, isto substitúe o comentario polo nome real"
+#~ "Se as mensaxes estiveren activadas e existir un comentario da base de datos, "
+#~ "isto substitúe o comentario polo nome real"
#~ msgid "Display database comment instead of its name"
#~ msgstr "Mostrar o comentario da base de datos no canto do seu nome"
@@ -14121,8 +14161,8 @@ msgstr "concurrent_insert está definido como 0"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
-#~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da "
-#~ "táboa só se emprega para partir/aniñar as táboas de acordo coa directiva "
+#~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da táboa "
+#~ "só se emprega para partir/aniñar as táboas de acordo coa directiva "
#~ "$cfg['LeftFrameTableSeparator'], polo que só o cartafol se chama como o "
#~ "alcume; o nome mesmo da táboa fica sen cambiar"
@@ -14181,8 +14221,7 @@ msgstr "concurrent_insert está definido como 0"
#~ "MIME types printed in italics do not have a separate transformation "
#~ "function"
#~ msgstr ""
-#~ "Os tipos MIME en cursiva non contan cunha función de transformación "
-#~ "separada"
+#~ "Os tipos MIME en cursiva non contan cunha función de transformación separada"
#~ msgid "rows"
#~ msgstr "Visualizar"
@@ -14377,8 +14416,8 @@ msgstr "concurrent_insert está definido como 0"
#~ "appropriate column name."
#~ msgstr ""
#~ "O campo que se mostra aparece en rosa. Para indicar que un campo se "
-#~ "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o "
-#~ "campo a mostrar\" e a seguir o nome do campo apropiado."
+#~ "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o campo a "
+#~ "mostrar\" e a seguir o nome do campo apropiado."
#~ msgid "memcached usage"
#~ msgstr "Uso do espazo"
@@ -14478,8 +14517,8 @@ msgstr "concurrent_insert está definido como 0"
#~ "deber a que php atopou un erro nel ou a que php non puido atopar o "
#~ "ficheiro.
Invoque o ficheiro de configuración directamente mediante o "
#~ "vínculo que hai máis abaixo e lea a mensaxe de erro de php que reciba. Na "
-#~ "maioría dos casos simplemente faltan unha aspa ou un ponto e vírcula
Se recibe unha páxina en branco é que todo está ben."
+#~ "maioría dos casos simplemente faltan unha aspa ou un ponto e vírcula
Se "
+#~ "recibe unha páxina en branco é que todo está ben."
#~ msgid "Dropping Procedure"
#~ msgstr "Procedementos"
@@ -14508,8 +14547,8 @@ msgstr "concurrent_insert está definido como 0"
#~ "Server traffic: These tables show the network traffic statistics "
#~ "of this MySQL server since its startup."
#~ msgstr ""
-#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do "
-#~ "tráfico da rede neste servidor de MySQL desde que se iniciou."
+#~ "Tráfico do servidor: Estas táboas mostran as estatísticas do tráfico "
+#~ "da rede neste servidor de MySQL desde que se iniciou."
#~ msgid ""
#~ "Query statistics: Since its startup, %s queries have been sent to "
@@ -14592,9 +14631,9 @@ msgstr "concurrent_insert está definido como 0"
#~ "\\'b')."
#~ msgstr ""
#~ "Introduza os valores das opcións de transformación empregando este "
-#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para "
-#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de "
-#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')."
+#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para trás "
+#~ "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra para "
+#~ "trás (por exemplo '\\\\xyz' ou 'a\\'b')."
#~ msgid ""
#~ "Enter each value in a separate field. If you ever need to put a backslash "
@@ -14602,9 +14641,9 @@ msgstr "concurrent_insert está definido como 0"
#~ "a backslash (for example '\\\\xyz' or 'a\\'b')."
#~ msgstr ""
#~ "Introduza os valores das opcións de transformación empregando este "
-#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para "
-#~ "trás (\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de "
-#~ "barra para trás (por exemplo '\\\\xyz' ou 'a\\'b')."
+#~ "formato:'a', 100, b,'c'…
Se necesitar introducir unha barra para trás "
+#~ "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra para "
+#~ "trás (por exemplo '\\\\xyz' ou 'a\\'b')."
#~ msgid "New table"
#~ msgstr "Sen táboas"
@@ -14631,9 +14670,9 @@ msgstr "concurrent_insert está definido como 0"
#~ "SQL queries settings, for SQL Query box options see [a@?page=form&"
#~ "formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
#~ msgstr ""
-#~ "Configuración das solicitudes de SQL; para as opcións da caixa Procuras "
-#~ "SQL vexa a configuración da [a@?page=form&"
-#~ "formset=main_frame#tab_Sql_box]moldura de navegación[/a]"
+#~ "Configuración das solicitudes de SQL; para as opcións da caixa Procuras SQL "
+#~ "vexa a configuración da "
+#~ "[a@?page=form&formset=main_frame#tab_Sql_box]moldura de navegación[/a]"
#~ msgid "Remove carriage return/line field characters within columns"
#~ msgstr "Eliminar os caracteres CRLF dentro dos campos"
@@ -14648,8 +14687,7 @@ msgstr "concurrent_insert está definido como 0"
#~ msgstr "lembrar o modelo"
#~ msgid "Imported file compression will be automatically detected from: %s"
-#~ msgstr ""
-#~ "A compresión do ficheiro importado detectarase automaticamente de: %s"
+#~ msgstr "A compresión do ficheiro importado detectarase automaticamente de: %s"
#~ msgid "Add into comments"
#~ msgstr "Engadir aos comentarios"
diff --git a/po/he.po b/po/he.po
index 77564379c8..0e097d1f0c 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-09-05 10:33+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Hebrew \n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-20 23:04+0200\n"
+"Last-Translator: Yogendra Singh Shekhawat \n"
"Language-Team: Hindi \n"
"Language: hi\n"
"MIME-Version: 1.0\n"
@@ -115,7 +115,7 @@ msgstr "%1$s डेटाबेस बनाया गया है."
#: db_datadict.php:51 libraries/operations.lib.php:32
msgid "Database comment: "
-msgstr "डाटाबेस टिप्पणि: "
+msgstr "डॅटाबेस टिप्पणीः"
#: db_datadict.php:157 libraries/operations.lib.php:784
#: libraries/schema/Pdf_Relation_Schema.class.php:1323
@@ -539,7 +539,7 @@ msgstr "निर्यात प्रकार"
msgid "Value for the column \"%s\""
msgstr "\"%s\" काँलम के लिए मान "
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -746,7 +746,7 @@ msgid "Database server"
msgstr "यूसर के लिए डेटाबेस"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "सर्वर"
@@ -916,11 +916,11 @@ msgstr "क्या आप सचमुच \"%s\" निष्पादित
#: js/messages.php:31 libraries/mult_submits.inc.php:314 sql.php:459
msgid "You are about to DESTROY a complete database!"
-msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं!"
+msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!"
#: js/messages.php:32
msgid "You are about to DESTROY a complete table!"
-msgstr "आप एक पूराटेबल नष्ट कर रहे हैं!"
+msgstr "आप एक पूरी डॅटा टेबल मिटाने जा रहे हैं!"
#: js/messages.php:33
#, fuzzy
@@ -934,31 +934,27 @@ msgstr "ट्रैकिंग डेटा हटाएँ"
#: js/messages.php:36
msgid "Dropping Primary Key/Index"
-msgstr "प्राथमिक-कुंजी/सूची छोड़"
+msgstr "प्राथमिक-कुंजी/अनुक्रमणिका हटायें"
#: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?"
-msgstr "यह आपरेशन लंबे समय लग सकता है. फिर भी आगे बढ़ें?"
+msgstr "इस प्रक्रिया में लम्बा वक्त भी लग सकता है। क्या आप चाहते हैं ये प्रक्रिया की जाये ?"
#: js/messages.php:40
msgid "Missing value in the form!"
-msgstr "फॉर्म में मूल्य गूम हैं."
+msgstr "फॉर्म में सूचना गुम हैं!"
#: js/messages.php:41
msgid "This is not a number!"
-msgstr "यह नंबर नहीं है!"
+msgstr "यह 'आंकिक' या नम्बर रूप में नहीं है।"
#: js/messages.php:42
-#, fuzzy
-#| msgid "Add index"
msgid "Add Index"
-msgstr "अनुक्रमणिका जोड़"
+msgstr "अनुक्रमणिका जोड़ें"
#: js/messages.php:43
-#, fuzzy
-#| msgid "Edit mode"
msgid "Edit Index"
-msgstr "संपादन मोड"
+msgstr "अनुक्रमणिका सम्पादित करें"
#: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347
#, fuzzy, php-format
@@ -979,32 +975,32 @@ msgstr "मेज़बान का नाम (hostname) खाली है!"
#: js/messages.php:52
msgid "The user name is empty!"
-msgstr "यूसर नाम खाली है!"
+msgstr "प्रयोगकर्ता का नाम खाली है!"
#: js/messages.php:53 libraries/server_privileges.lib.php:1315
#: user_password.php:110
msgid "The password is empty!"
-msgstr "पासवर्ड खाली है"
+msgstr "कूटशब्द (password) खाली है!"
#: js/messages.php:54 libraries/server_privileges.lib.php:1313
#: user_password.php:113
msgid "The passwords aren't the same!"
-msgstr "पासवर्ड मिलते झूलते नहीं हैं."
+msgstr "कूटशब्द (password) समान नहीं हैं!"
#: js/messages.php:55 libraries/server_privileges.lib.php:1444
#: libraries/server_privileges.lib.php:1636
#: libraries/server_privileges.lib.php:2531
#: libraries/server_privileges.lib.php:2832
msgid "Add user"
-msgstr "naya upyokta"
+msgstr "नया प्रयोक्ता जोड़ें"
#: js/messages.php:56
msgid "Reloading Privileges"
-msgstr "प्रिविलेज पुनः लोड करें"
+msgstr "विशेषाधिकारों को पुनः लोड करें"
#: js/messages.php:57
msgid "Removing Selected Users"
-msgstr "चयनित यूसर को हटायें"
+msgstr "चयनित प्रयोक्ताओं को हटायें"
#: js/messages.php:58 js/messages.php:124 tbl_tracking.php:293
#: tbl_tracking.php:489
@@ -1029,17 +1025,15 @@ msgstr "सर्वर चुनिये"
#: js/messages.php:63
msgid "Live conn./process chart"
-msgstr ""
+msgstr "लाईव कनेक्शन / प्रोसेस चार्ट"
#: js/messages.php:64
-#, fuzzy
-#| msgid "Show query chart"
msgid "Live query chart"
-msgstr "क्वरी चार्ट शो"
+msgstr "जीवन्त (live) क्वॅरी चार्ट"
#: js/messages.php:66
msgid "Static data"
-msgstr ""
+msgstr "स्थिर (static) डॅटा"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
@@ -1053,7 +1047,7 @@ msgstr "कुल"
#: js/messages.php:70 libraries/ServerStatusData.class.php:198
#: server_status_queries.php:155
msgid "Other"
-msgstr ""
+msgstr "अन्य"
#. l10n: Thousands separator
#: js/messages.php:72 libraries/Util.class.php:1510
@@ -1066,16 +1060,12 @@ msgid "."
msgstr "."
#: js/messages.php:76
-#, fuzzy
-#| msgid "Connections"
msgid "Connections / Processes"
-msgstr "कनेक्शन"
+msgstr "कनेक्शन / प्रक्रियाएँ"
#: js/messages.php:79
-#, fuzzy
-#| msgid "Could not save configuration"
msgid "Local monitor configuration incompatible"
-msgstr "विन्यास सहेज नहीं सकते"
+msgstr "स्थानीय जाँच व्यवस्था असंगत"
#: js/messages.php:80
msgid ""
@@ -1084,94 +1074,90 @@ msgid ""
"likely that your current configuration will not work anymore. Please reset "
"your configuration to default in the Settings menu."
msgstr ""
+"आपके ब्राउज़र के स्थानीय भण्डार में स्थित चार्ट व्यवस्था और नयी जांच सम्बन्धी "
+"व्यवस्था के बीच तारतम्यता नहीं बैठ पा रही है। हो सकता है कि इस सम्बन्ध में "
+"आपका वर्तमान प्रारूप अब काम न कर पाए। कृपया, सेटिंग्स मेन्यू में जाकर "
+"इसे पुनः डिफ़ॉल्ट पर रिसेट करें।"
#: js/messages.php:82
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache efficiency"
-msgstr "क्वेरी कैश"
+msgstr "क्वॅरी कैश की कार्यक्षमता"
#: js/messages.php:83
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache usage"
-msgstr "क्वेरी कैश"
+msgstr "क्वॅरी कैश प्रयोग"
#: js/messages.php:84
-#, fuzzy
#| msgid "Query cache"
msgid "Query cache used"
-msgstr "क्वेरी कैश"
+msgstr "काम में ली गई क्वॅरी कैश"
#: js/messages.php:86
msgid "System CPU Usage"
-msgstr ""
+msgstr "मशीन सीपीयू उपयोग"
#: js/messages.php:87
msgid "System memory"
-msgstr ""
+msgstr "सिस्टम मेमोरी"
#: js/messages.php:88
msgid "System swap"
-msgstr ""
+msgstr "सिस्टम स्वॅप"
#: js/messages.php:90
msgid "Average load"
-msgstr ""
+msgstr "औसत दबाव"
#: js/messages.php:91
-#, fuzzy
#| msgid "Total count"
msgid "Total memory"
-msgstr "कुल गिनती"
+msgstr "कुल मॅमरी"
#: js/messages.php:92
msgid "Cached memory"
-msgstr ""
+msgstr "गुप्त एकत्र (cached) मॅमरी"
#: js/messages.php:93
-#, fuzzy
#| msgid "Buffer Pool"
msgid "Buffered memory"
-msgstr "बफर पूल"
+msgstr "बफ़र स्मृति"
#: js/messages.php:94
msgid "Free memory"
-msgstr ""
+msgstr "मुक्त स्मृति"
#: js/messages.php:95
msgid "Used memory"
-msgstr ""
+msgstr "प्रयुक्त स्मृति"
#: js/messages.php:97
-#, fuzzy
#| msgid "Total"
msgid "Total Swap"
-msgstr "कुल"
+msgstr "कुल स्वॅप"
#: js/messages.php:98
msgid "Cached Swap"
-msgstr ""
+msgstr "एकत्र (cached) स्वॅप"
#: js/messages.php:99
msgid "Used Swap"
-msgstr ""
+msgstr "प्रयुक्त स्वॅप"
#: js/messages.php:100
-#, fuzzy
#| msgid "Free pages"
msgid "Free Swap"
-msgstr "मुक्त पृष्ठों"
+msgstr "मुक्त स्वॅप"
#: js/messages.php:102
msgid "Bytes sent"
-msgstr ""
+msgstr "बाइट भेजे गए"
#: js/messages.php:103
-#, fuzzy
#| msgid "Received"
msgid "Bytes received"
-msgstr "प्राप्त"
+msgstr "बाइट प्राप्त हुए"
#: js/messages.php:104 server_status.php:212
msgid "Connections"
@@ -1179,89 +1165,85 @@ msgstr "कनेक्शन"
#: js/messages.php:105 server_status.php:384
msgid "Processes"
-msgstr "प्रक्रियां"
+msgstr "प्रक्रियाएँ"
#. l10n: shortcuts for Byte
#: js/messages.php:108 libraries/Util.class.php:1456
msgid "B"
-msgstr "बैट्स"
+msgstr "बिट्स"
#. l10n: shortcuts for Kilobyte
#: js/messages.php:109 libraries/Util.class.php:1458
#: server_status_monitor.php:648
msgid "KiB"
-msgstr "KB"
+msgstr "किलोबाइट"
#. l10n: shortcuts for Megabyte
#: js/messages.php:110 libraries/Util.class.php:1460
#: server_status_monitor.php:649
msgid "MiB"
-msgstr "MB"
+msgstr "मेगाबाइट"
#. l10n: shortcuts for Gigabyte
#: js/messages.php:111 libraries/Util.class.php:1462
msgid "GiB"
-msgstr "GB"
+msgstr "गीगाबाइट"
#. l10n: shortcuts for Terabyte
#: js/messages.php:112 libraries/Util.class.php:1464
msgid "TiB"
-msgstr "TB"
+msgstr "टॅराबाइट"
#. l10n: shortcuts for Petabyte
#: js/messages.php:113 libraries/Util.class.php:1466
msgid "PiB"
-msgstr "PB"
+msgstr "पॅटाबाइट"
#. l10n: shortcuts for Exabyte
#: js/messages.php:114 libraries/Util.class.php:1468
msgid "EiB"
-msgstr "EB"
+msgstr "अॅग्जाबाइट"
#: js/messages.php:115
-#, fuzzy, php-format
+#, php-format
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "%d table(s)"
-msgstr " %s टेबलें"
+msgstr "%d टेबल"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:118
-#, fuzzy
#| msgid "Versions"
msgid "Questions"
-msgstr "संस्करण"
+msgstr "प्रश्न"
#: js/messages.php:119 server_status.php:136
msgid "Traffic"
-msgstr "ट्रैफ़िक"
+msgstr "व्यस्तता"
#: js/messages.php:120 libraries/Menu.class.php:486
#: server_status_monitor.php:475
-#, fuzzy
#| msgid "General relation features"
msgid "Settings"
msgstr "सेटिंग्स"
#: js/messages.php:121
-#, fuzzy
#| msgid "Remove database"
msgid "Remove chart"
-msgstr "डेटाबेस को हटा दे"
+msgstr "चार्ट हटाएँ"
#: js/messages.php:122
msgid "Edit title and labels"
-msgstr ""
+msgstr "शीर्षक व लेबल सम्पादित करें"
#: js/messages.php:123
-#, fuzzy
#| msgid "Snap to grid"
msgid "Add chart to grid"
-msgstr "ग्रिड पर स्नैप"
+msgstr "चार्ट को जाली (grid) पर लगाएँ"
#: js/messages.php:125
msgid "Please add at least one variable to the series"
-msgstr ""
+msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें"
#: js/messages.php:126 libraries/DisplayResults.class.php:1288
#: libraries/TableSearch.class.php:835 libraries/TableSearch.class.php:979
@@ -1271,39 +1253,43 @@ msgstr ""
#: libraries/tbl_columns_definition_form.inc.php:681 pmd_general.php:559
#: server_status.php:472 server_status_monitor.php:667
msgid "None"
-msgstr "कोई नहीं"
+msgstr "कुछ नहीं"
#: js/messages.php:127
msgid "Resume monitor"
-msgstr ""
+msgstr "देखभाल व्यवस्था को पुनः शुरू करें"
#: js/messages.php:128
msgid "Pause monitor"
-msgstr ""
+msgstr "देखभाल व्यवस्था को एक बार यथास्थिति (pause) रोकें"
#: js/messages.php:130
msgid "general_log and slow_query_log are enabled."
msgstr ""
+"सामान्य पञ्जिका (general_log) तथा धीमी क्वॅरी पञ्जिका (slow_query_log) समर्थ "
+"किये गए"
#: js/messages.php:131
msgid "general_log is enabled."
-msgstr ""
+msgstr "सामान्य पञ्जिका (general_log) को समर्थ किया गया"
#: js/messages.php:132
msgid "slow_query_log is enabled."
-msgstr ""
+msgstr "धीमी क्वॅरी पञ्जिका (slow_query_log) को समर्थ किया गया"
#: js/messages.php:133
msgid "slow_query_log and general_log are disabled."
msgstr ""
+"धीमी क्वॅरी पञ्जिका (slow_query_log) तथा सामान्य पञ्जिका (general_log) को "
+"निष्क्रिय किया गया।"
#: js/messages.php:134
msgid "log_output is not set to TABLE."
-msgstr ""
+msgstr "टेबल पर पंजिका परिणाम (log_output) सेट नहीं है।"
#: js/messages.php:135
msgid "log_output is set to TABLE."
-msgstr ""
+msgstr "टेबल पंजिका परिणाम (log_output) के साथ सेट है"
#: js/messages.php:136
#, php-format
@@ -1312,108 +1298,110 @@ msgid ""
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
"depending on your system."
msgstr ""
+"यद्यपि धीमी_क्वॅरी_पंजिका (slow_query_log) समर्थ है, परन्तु सर्वर उन्हीं "
+"क्वॅरीज को पंजिका में सूचीबद्ध करता है जो %d सेकण्ड्स से ज्यादा समय लेती "
+"हैं। अतः आपको सलाह दी जाती है कि सिस्टम के अनुरूप अधिक_क्वॅरी_समय "
+"(long_query_time) को 0-2 सेकण्ड्स पर सेट कर लें।"
#: js/messages.php:137
#, php-format
msgid "long_query_time is set to %d second(s)."
-msgstr ""
+msgstr "अधिक_क्वॅरी_समय (long_query_time) को %d सेकण्ड्स पर सेट किया गया।"
#: js/messages.php:138
msgid ""
"Following settings will be applied globally and reset to default on server "
"restart:"
msgstr ""
+"सर्वर के दुबारा चालू होने पर अग्रवर्णित व्यवस्थाएं समूचे तंत्र में एक साथ "
+"लागू होंगी और पुनः डिफ़ॉल्ट पर सेट हो जाएँगी"
#. l10n: %s is FILE or TABLE
#: js/messages.php:140
-#, fuzzy, php-format
+#, php-format
#| msgid "Save output to a file"
msgid "Set log_output to %s"
-msgstr "उत्पादन को फाईल मे सेव करें"
+msgstr "पंजिका परिणाम (log_output) को %s पर सेट करें"
#. l10n: Enable in this context means setting a status variable to ON
#: js/messages.php:142
-#, fuzzy, php-format
+#, php-format
#| msgid "Enabled"
msgid "Enable %s"
-msgstr "सक्षम"
+msgstr "%s समर्थ करें"
#. l10n: Disable in this context means setting a status variable to OFF
#: js/messages.php:144
-#, fuzzy, php-format
+#, php-format
#| msgid "Disabled"
msgid "Disable %s"
-msgstr "अक्षम"
+msgstr "%s निष्क्रिय करें"
#. l10n: %d seconds
#: js/messages.php:146
#, php-format
msgid "Set long_query_time to %ds"
-msgstr ""
+msgstr "अधिक_समय_क्वॅरी (long_query_time) को %ds पर सेट करें"
#: js/messages.php:147
msgid ""
"You can't change these variables. Please log in as root or contact your "
"database administrator."
msgstr ""
+"आप इन चरों (variables) को बदलने की स्थिति में नहीं है। कृपया मूल (root) "
+"प्रयोक्ता के बतौर लोग इन करें या अपने डॅटाबेस प्रबंधक से संपर्क करें।"
#: js/messages.php:148
-#, fuzzy
#| msgid "General relation features"
msgid "Change settings"
-msgstr "सेटिंग्स प्रबंधक"
+msgstr "सेटिंग्स बदलें"
#: js/messages.php:149
-#, fuzzy
#| msgid "General relation features"
msgid "Current settings"
-msgstr "अधिक सेटिंग्स"
+msgstr "वर्तमान सेटिंग्स"
#: js/messages.php:151 server_status_monitor.php:608
-#, fuzzy
#| msgid "Default title"
msgid "Chart Title"
-msgstr "डिफ़ॉल्ट शीर्षक"
+msgstr "चार्ट शीर्षक"
#. l10n: As in differential values
#: js/messages.php:153
-#, fuzzy
#| msgid "Difference"
msgid "Differential"
-msgstr "अंतर"
+msgstr "अवकलित"
#: js/messages.php:154
#, php-format
msgid "Divided by %s"
-msgstr ""
+msgstr "%s से विभाजित"
#: js/messages.php:155
msgid "Unit"
-msgstr ""
+msgstr "इकाई"
#: js/messages.php:157
msgid "From slow log"
-msgstr ""
+msgstr "धीमी पंजिका (slow log) से"
#: js/messages.php:158
msgid "From general log"
-msgstr ""
+msgstr "सामान्य पंजिका (general_log) से"
#: js/messages.php:159
-#, fuzzy
#| msgid "Loading"
msgid "Analysing logs"
-msgstr "लोड हो रहा है"
+msgstr "पंजिका (log) छान-बीन ज़ारी"
#: js/messages.php:160
msgid "Analysing & loading logs. This may take a while."
-msgstr ""
+msgstr "पंजिका की छान-बीन और लोडिंग हो रही है। इसमें थोड़ा वक्त लग सकता है।"
#: js/messages.php:161
-#, fuzzy
#| msgid "Read requests"
msgid "Cancel request"
-msgstr "पढने का अनुरोध"
+msgstr "अनुरोध रद्द करें"
#: js/messages.php:162
msgid ""
@@ -1421,6 +1409,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 ""
+"इस कॉलम में उन्हीं क्वॅरीज को एकत्रित किया गया है जो एक जैसी हैं। तथापि इनको "
+"एकत्र करने का मापदण्ड इनका SQL पाठ्य ही है अतः क्वॅरीज के अन्य गुणधर्म जैसे "
+"शुरुआत का समय आदि भिन्न मान लिए हो सकते हैं।"
#: js/messages.php:163
msgid ""
@@ -1428,26 +1419,29 @@ msgid ""
"same table are also being grouped together, disregarding of the inserted "
"data."
msgstr ""
+"चूँकि INSERT क्वॅरीज के एकत्रीकरण (grouping) का को चुना गया है, सो एक ही "
+"टेबल में की गयी INSERT क्वॅरीज को भी एकत्रित (group) किया गया है। टेबल में "
+"डाले (insert) गए डॅटा से इसका कोई सम्बन्ध नहीं है।"
#: js/messages.php:164
msgid "Log data loaded. Queries executed in this time span:"
-msgstr ""
+msgstr "पंजिका जानकारी लोड हो चुकी है। क्वॅरीज क्रियान्वन में लगा समय:"
#: js/messages.php:166
-#, fuzzy
#| msgid "Jump to database"
msgid "Jump to Log table"
-msgstr "डेटाबेस को कूद"
+msgstr "सीधे पंजिका टेबल (log table) पर जाएँ"
#: js/messages.php:167
-#, fuzzy
#| msgid "No databases"
msgid "No data found"
-msgstr "कोइ डाटाबेस नहिं"
+msgstr "कोई डॅटा नहीं पाया गया"
#: js/messages.php:168
msgid "Log analysed, but no data found in this time span."
msgstr ""
+"पंजिका (log) की छान-बीन की गयी, परन्तु इस समय अन्तराल विशेष में कोई डॅटा "
+"नहीं पाया गया।"
#: js/messages.php:170
#, fuzzy
@@ -1456,10 +1450,9 @@ msgid "Analyzing…"
msgstr "विश्लेषण"
#: js/messages.php:171
-#, fuzzy
#| msgid "Explain SQL"
msgid "Explain output"
-msgstr "SQL की व्याख्या "
+msgstr "परिणाम को समझाएँ"
#: js/messages.php:173 js/messages.php:524
#: libraries/plugins/export/ExportHtmlword.class.php:484
@@ -1470,67 +1463,61 @@ msgid "Time"
msgstr "समय"
#: js/messages.php:174
-#, fuzzy
#| msgid "Total"
msgid "Total time:"
-msgstr "कुल"
+msgstr "कुल समय:"
#: js/messages.php:175
-#, fuzzy
#| msgid "Profiling"
msgid "Profiling results"
-msgstr "रूपरेखा"
+msgstr "परिणाम का रूपरेखा बन रही है"
#: js/messages.php:176
-#, fuzzy
#| msgid "Table"
msgctxt "Display format"
msgid "Table"
-msgstr "टेबल "
+msgstr "टेबल"
#: js/messages.php:177
-#, fuzzy
#| msgid "Charset"
msgid "Chart"
-msgstr "कोई"
+msgstr "चार्ट"
#: js/messages.php:178
-#, fuzzy
#| msgid "Add index"
msgid "Edit chart"
-msgstr "अनुक्रमणिका जोड़"
+msgstr "चार्ट सम्पादित करें"
#: js/messages.php:179
-#, fuzzy
#| msgid "SQL queries"
msgid "Series"
-msgstr "SQL क्वरी"
+msgstr "श्रृंखला"
#. l10n: A collection of available filters
#: js/messages.php:182
-#, fuzzy
#| msgid "Tables display options"
msgid "Log table filter options"
-msgstr "टेबल प्रदर्शन विकल्प"
+msgstr "पंजिका (log) टेबल फ़िल्टर विकल्प"
#. l10n: Filter as in "Start Filtering"
#: js/messages.php:184
msgid "Filter"
-msgstr ""
+msgstr "फ़िल्टर"
#: js/messages.php:185
msgid "Filter queries by word/regexp:"
-msgstr ""
+msgstr "क्वॅरीज को शब्द / रेग्युलर एक्सप्रेशन के जरिये फ़िल्टर करें:"
#: js/messages.php:186
msgid "Group queries, ignoring variable data in WHERE clauses"
msgstr ""
+"WHERE कथन में चर (variable) डॅटा को बिना शामिल किये, क्वॅरीज को एकत्र "
+"(group) करें"
#: js/messages.php:187
-#, fuzzy
#| msgid "Number of inserted rows"
msgid "Sum of grouped rows:"
-msgstr "डाली गयी पक्न्तियों"
+msgstr "एकत्र (group) पंक्तियों का योग:"
#: js/messages.php:188
#, fuzzy
@@ -1539,14 +1526,13 @@ msgid "Total:"
msgstr "कुल"
#: js/messages.php:190
-#, fuzzy
#| msgid "Loading"
msgid "Loading logs"
-msgstr "लोड हो रहा है"
+msgstr "पंजिका (log) को लोड किया जा रह है"
#: js/messages.php:191
msgid "Monitor refresh failed"
-msgstr ""
+msgstr "देख-रेख तंत्र असफल रहा"
#: js/messages.php:192
msgid ""
@@ -1554,20 +1540,24 @@ msgid ""
"This is most likely because your session expired. Reloading the page and "
"reentering your credentials should help."
msgstr ""
+"आपके नवीन चार्ट डॅटा के अनुरोध को सर्वर ने अमान्य करार दिया है। शायद आपके "
+"सेशन की अवधि समाप्त हो गयी हो। समाधान के लिए पेज रीलोड करें और अपने परिचय "
+"सम्बन्धी जानकारी फिर से डालकर देखें।"
#: js/messages.php:193
-#, fuzzy
#| msgid "Reload"
msgid "Reload page"
-msgstr "पुनः लोड"
+msgstr "पृष्ठ पुनः लोड करें"
#: js/messages.php:195
msgid "Affected rows:"
-msgstr ""
+msgstr "प्रभावित पंक्तियाँ:"
#: js/messages.php:197
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
msgstr ""
+"कॉन्फिग फ़ाईल की को पढ़ पाने असमर्थ। ऐसा प्रतीत होता है कि इसमें मानक JSON कोड "
+"नहीं है।"
#: js/messages.php:198
msgid ""
@@ -1580,63 +1570,57 @@ msgstr ""
#: prefs_manage.php:232 server_status_monitor.php:530
#: setup/frames/menu.inc.php:21
msgid "Import"
-msgstr "आयात"
+msgstr "आयात करें"
#: js/messages.php:200
-#, fuzzy
#| msgid "Could not import configuration"
msgid "Import monitor configuration"
-msgstr "विन्यास आयात नहीं किया जा सका"
+msgstr "देख-रेख (import) विन्यास (configuration) आयात करें"
#: js/messages.php:201
-#, fuzzy
#| msgid "Please select the primary key or a unique key"
msgid "Please select the file you want to import"
-msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
+msgstr "जिस फाईल को आयात करना चाहते हैं, उसे चुनें:"
#: js/messages.php:203
-#, fuzzy
#| msgid "Update Query"
msgid "Analyse Query"
-msgstr "क्वरी का नवीनीकरण करें"
+msgstr "क्वॅरी का विश्लेष्ण करें"
#: js/messages.php:207
msgid "Advisor system"
-msgstr ""
+msgstr "परामर्श व्यवस्था"
#: js/messages.php:208
msgid "Possible performance issues"
-msgstr ""
+msgstr "कार्यक्षमता के सन्दर्भ में संभावित मुद्दे"
#: js/messages.php:209
msgid "Issue"
-msgstr ""
+msgstr "मसला"
#: js/messages.php:210
-#, fuzzy
#| msgid "Documentation"
msgid "Recommendation"
-msgstr "डोक्युमेंटेशन"
+msgstr "अनुशंसायें"
#: js/messages.php:211
-#, fuzzy
#| msgid "Details…"
msgid "Rule details"
-msgstr "विवरण…"
+msgstr "नियमों का विवरण"
#: js/messages.php:212
-#, fuzzy
#| msgid "Authentication"
msgid "Justification"
-msgstr "प्रमाणीकरण"
+msgstr "औचित्यकरण"
#: js/messages.php:213
msgid "Used variable / formula"
-msgstr ""
+msgstr "प्रयुक्त चर (variable) / सूत्र (formula)"
#: js/messages.php:214
msgid "Test"
-msgstr ""
+msgstr "जाँच"
#: js/messages.php:219 pmd_general.php:437 pmd_general.php:474
#: pmd_general.php:594 pmd_general.php:642 pmd_general.php:718
@@ -1652,11 +1636,11 @@ msgstr "लोड हो रहा है"
#: js/messages.php:223
msgid "Processing Request"
-msgstr "याचिका प्रसंस्करण"
+msgstr "अनुरोध क्रियान्वित हो रहा है"
#: js/messages.php:224 libraries/rte/rte_export.lib.php:43
msgid "Error in Processing Request"
-msgstr "याचिका प्रसंस्करणमें त्रुटि"
+msgstr "अनुरोध क्रियान्वन में दिक्कत"
#: js/messages.php:225
#, php-format
@@ -1675,11 +1659,11 @@ msgstr "कोइ डाटाबेस नहीं चुना गया ह
#: js/messages.php:228
msgid "Dropping Column"
-msgstr "काँलम गिराना"
+msgstr "कॉलम को हटाया जाना"
#: js/messages.php:229
msgid "Adding Primary Key"
-msgstr "प्राथमिक कुंजी जोड़"
+msgstr "प्राथमिक कुञ्जी जोड़ना"
#: js/messages.php:230 pmd_general.php:435 pmd_general.php:592
#: pmd_general.php:640 pmd_general.php:716 pmd_general.php:770
@@ -1689,45 +1673,42 @@ msgstr "ठीक है"
#: js/messages.php:231
msgid "Click to dismiss this notification"
-msgstr ""
+msgstr "इस सूचना को खारिज़ करने के लिए क्लिक करें"
#: js/messages.php:234
msgid "Renaming Databases"
-msgstr "डेटाबेस का नाम बदल कर ____ रखें"
+msgstr "डॅटाबेसों का पुनर्नामकारण"
#: js/messages.php:235
msgid "Reload Database"
-msgstr "डेटाबेस पुनः लोड"
+msgstr "डॅटाबेस पुनः लोड करें"
#: js/messages.php:236
msgid "Copying Database"
-msgstr "डेटाबेस को ______ में कॉपी करें"
+msgstr "डॅटाबेस प्रतिलिपिकरण"
#: js/messages.php:237
msgid "Changing Charset"
-msgstr "वर्ण सेट बदलें"
+msgstr "वर्ण समूह बदलाव"
#: js/messages.php:238
msgid "Table must have at least one column"
-msgstr "टेबल में कम से कम एक काँलम होना आवश्यक है"
+msgstr "टेबल में कम से कम एक कॉलम होना आवश्यक है"
#: js/messages.php:243
-#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
-msgstr "टेबल का उपयोग करो"
+msgstr "टेबल डालें"
#: js/messages.php:244
-#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
-msgstr "अनुक्रमणिका जोड़"
+msgstr "अनुक्रमणिकायें छिपाएँ"
#: js/messages.php:245
-#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
-msgstr "ग्रिड दिखाओ"
+msgstr "अनुक्रमणिकायें दिखाएँ"
#: js/messages.php:246 libraries/mult_submits.inc.php:327
#, fuzzy
@@ -1749,35 +1730,32 @@ msgstr "अक्षम"
#: js/messages.php:251
msgid "Searching"
-msgstr "खोजें"
+msgstr "ख़ोज"
#: js/messages.php:252
-#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
-msgstr "खोज मापदंड छिपाना"
+msgstr "खोज परिणाम छिपाएँ"
#: js/messages.php:253
-#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
-msgstr "खोज मापदंड दिखाना"
+msgstr "खोज परिणाम दिखाएँ"
#: js/messages.php:254
-#, fuzzy
#| msgid "Browse"
msgid "Browsing"
-msgstr "ब्राउज़"
+msgstr "ब्राउज़िंग"
#: js/messages.php:255
-#, fuzzy
#| msgid "Delete"
msgid "Deleting"
-msgstr "मिटाएँ"
+msgstr "मिटाना"
#: js/messages.php:258
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
+"एक संगृहीत फंक्शन की परिभाषा (definition) में RETURN कथन होना आवश्यक है!"
#: js/messages.php:261 libraries/rte/rte_routines.lib.php:760
msgid "ENUM/SET editor"
@@ -1800,80 +1778,79 @@ msgid "Enter each value in a separate field"
msgstr "हर एक मान अलग क्षेत्र में दर्ज करें"
#: js/messages.php:265
-#, fuzzy, php-format
+#, php-format
#| msgid "Add a new User"
msgid "Add %d value(s)"
-msgstr "नयी वलुए जोडें"
+msgstr "%d मान जोड़ें"
#: js/messages.php:268
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
msgstr ""
+"सूचना: यदि फ़ाईल में एक से अधिक टेबलें हैं तो वे एक में ही संगठित की जाएँगी"
#: js/messages.php:271
msgid "Hide query box"
-msgstr "क्वरी बॉक्स छुपा"
+msgstr "क्वॅरी बॉक्स छिपाएँ"
#: js/messages.php:272
msgid "Show query box"
-msgstr "क्वेरी बॉक्स दिखाएँ"
+msgstr "क्वॅरी बॉक्स दिखाएँ"
#: js/messages.php:274 tbl_row_action.php:21
msgid "No rows selected"
-msgstr "कोई चयनित रो नहीं"
+msgstr "कोई पंक्ति चयनित नहीं"
#: js/messages.php:275 libraries/DisplayResults.class.php:5067
#: libraries/structure.lib.php:1374 libraries/structure.lib.php:2070
#: querywindow.php:85
msgid "Change"
-msgstr "बदलिये"
+msgstr "बदलें"
#: js/messages.php:276
-#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
-msgstr "अधिकतम निष्पादन समय"
+msgstr "क्वॅरी क्रियान्वन में लगा समय"
#: js/messages.php:277 libraries/DisplayResults.class.php:721
#: libraries/DisplayResults.class.php:729
#, php-format
msgid "%d is not valid row number."
-msgstr "%d वैध रो संख्या नहीं है"
+msgstr "%d एक वैध पंक्ति संख्या नहीं है"
#: js/messages.php:280 libraries/config/FormDisplay.tpl.php:394
#: libraries/insert_edit.lib.php:1462
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
-msgstr "बचाना"
+msgstr "सुरक्षित करें"
#: js/messages.php:283
msgid "Hide search criteria"
-msgstr "खोज मापदंड छिपाना"
+msgstr "ख़ोज मापदंड छिपाएँ"
#: js/messages.php:284
msgid "Show search criteria"
-msgstr "खोज मापदंड दिखाना"
+msgstr "खोज मापदंड दिखाएँ"
#: js/messages.php:287 libraries/TableSearch.class.php:210
-#, fuzzy
#| msgid "Search"
msgid "Zoom Search"
-msgstr "ढूंढें"
+msgstr "ज़ूम ख़ोज"
#: js/messages.php:289
msgid "Each point represents a data row."
-msgstr ""
+msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।"
#: js/messages.php:291
msgid "Hovering over a point will show its label."
-msgstr ""
+msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।"
#: js/messages.php:293
msgid "To zoom in, select a section of the plot with the mouse."
-msgstr ""
+msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।"
#: js/messages.php:295
msgid "Click reset zoom button to come back to original state."
@@ -1881,56 +1858,54 @@ msgstr ""
#: js/messages.php:297
msgid "Click a data point to view and possibly edit the data row."
-msgstr ""
+msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।"
#: js/messages.php:299
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
+"दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा "
+"सकता है।"
#: js/messages.php:301
-#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
-msgstr "कोलम जोडें/हटायें"
+msgstr "दो कॉलम चुने"
#: js/messages.php:302
msgid "Select two different columns"
-msgstr ""
+msgstr "दो भिन्न कॉलम चुनें"
#: js/messages.php:303
-#, fuzzy
#| msgid "SQL result"
msgid "Query results"
-msgstr "SQLपरिणाम"
+msgstr "क्वॅरी परिणाम"
#: js/messages.php:304
-#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
-msgstr "सूचक का आकार डेटा"
+msgstr "डॅटा बिन्दु सामग्री"
#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:269
#: tbl_indexes.php:307
msgid "Ignore"
-msgstr "ध्यान न देना"
+msgstr "उपेक्षा करें"
#: js/messages.php:308 libraries/DisplayResults.class.php:3316
msgid "Copy"
-msgstr "अनुकृति"
+msgstr "प्रतिलिपि करें"
#: js/messages.php:323
-#, fuzzy
#| msgid "Add column"
msgid "Add columns"
-msgstr "नया काँलम जोडें"
+msgstr "नए कॉलम जोडें"
#: js/messages.php:326
msgid "Select referenced key"
-msgstr "संदर्भित कुंजी का चयन करें."
+msgstr "संदर्भ कुंजी का चयन करें"
#: js/messages.php:327
msgid "Select Foreign Key"
-msgstr "विदेश कुंजी का चयन करें."
+msgstr "परदेशी कुंजी का चयन करें"
#: js/messages.php:328
msgid "Please select the primary key or a unique key"
@@ -1938,17 +1913,19 @@ msgstr "कृपया प्राथमिक कुंजी या एक
#: js/messages.php:329 pmd_general.php:109 tbl_relation.php:502
msgid "Choose column to display"
-msgstr "प्रदर्शित करने के लिए काँलम चयन करें."
+msgstr "प्रदर्शित करने के लिए काँलम चुनें"
#: js/messages.php:330
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:333
msgid "Add an option for column "
-msgstr "काँलम के लिए एक विकल्प जोड़ें "
+msgstr "कॉलम के लिए एक विकल्प जोड़ें "
#: js/messages.php:334
#, php-format
@@ -1957,27 +1934,28 @@ msgstr ""
#: js/messages.php:337
msgid "Press escape to cancel editing"
-msgstr ""
+msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ"
#: js/messages.php:338
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:339
msgid "Drag to reorder"
-msgstr ""
+msgstr "पुनः व्यवस्थित करने के लिए घसीटें"
#: js/messages.php:340
-#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
-msgstr "चयन करने के लिए क्लिक करें."
+msgstr "क्रमानुसार करने के लिए क्लिक करें"
#: js/messages.php:341
msgid "Click to mark/unmark"
-msgstr ""
+msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें"
#: js/messages.php:342
msgid "Double-click to copy column name"
@@ -1985,13 +1963,16 @@ msgstr ""
#: js/messages.php:343
msgid "Click the drop-down arrow
to toggle column's visibility"
-msgstr ""
+msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें"
#: js/messages.php:345
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 ""
+"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि "
+"ग्रिड सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी "
+"सुविधाएँ काम न करें।"
#: js/messages.php:350
msgid "You can also edit most values
by double-clicking directly on them."
@@ -2002,10 +1983,9 @@ msgid "You can also edit most values
by clicking directly on them."
msgstr ""
#: js/messages.php:358
-#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
-msgstr "दृश्य पर जायें"
+msgstr "लिंक पर जाएँ"
#: js/messages.php:359
#, fuzzy
@@ -2025,15 +2005,15 @@ msgstr "अद्यतन रोयाँ"
#: js/messages.php:364
msgid "Generate password"
-msgstr "पासव्रड उत्पन्न करें"
+msgstr "नया पासवर्ड उत्पन्न करें"
#: js/messages.php:365 libraries/replication_gui.lib.php:389
msgid "Generate"
-msgstr "उत्पन्न"
+msgstr "उत्पन्न करें"
#: js/messages.php:366
msgid "Change Password"
-msgstr "पासवर्ड बदलिये"
+msgstr "पासवर्ड बदलें"
#: js/messages.php:369
msgid "More"
@@ -2061,33 +2041,31 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ"
+"phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित "
+"हुआ है।"
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:381
msgid ", latest stable version:"
-msgstr ", नवीनतम स्थिर संस्करण:"
+msgstr "नवीनतम स्थिर संस्करण:"
#: js/messages.php:382
-#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
-msgstr "डेटाबेस को कूद"
+msgstr "अद्यतन"
#. l10n: Display text for calendar close link
#: js/messages.php:401
msgid "Done"
-msgstr "किया"
+msgstr "हो गया"
#: js/messages.php:405
-#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "पिछला"
#: js/messages.php:410
-#, fuzzy
#| msgid "Next"
msgctxt "Next month"
msgid "Next"
@@ -2217,7 +2195,7 @@ msgstr "सोमवार"
#: js/messages.php:465
msgid "Tuesday"
-msgstr "मन्गलवार"
+msgstr "मंगलवार"
#: js/messages.php:466
msgid "Wednesday"
@@ -2251,7 +2229,7 @@ msgstr "सोमवार"
#. l10n: Short week day name
#: js/messages.php:480 libraries/Util.class.php:1696
msgid "Tue"
-msgstr "मन्गलवार"
+msgstr "मंगलवार"
#. l10n: Short week day name
#: js/messages.php:482 libraries/Util.class.php:1698
@@ -2276,55 +2254,54 @@ msgstr "शनिवार"
#. l10n: Minimal week day name
#: js/messages.php:495
msgid "Su"
-msgstr "रविवार"
+msgstr "रवि"
#. l10n: Minimal week day name
#: js/messages.php:497
msgid "Mo"
-msgstr "सोमवार"
+msgstr "सोम"
#. l10n: Minimal week day name
#: js/messages.php:499
msgid "Tu"
-msgstr "मन्गलवार"
+msgstr "मंगल"
#. l10n: Minimal week day name
#: js/messages.php:501
msgid "We"
-msgstr "बुधवार"
+msgstr "बुध"
#. l10n: Minimal week day name
#: js/messages.php:503
msgid "Th"
-msgstr "गुरुवार"
+msgstr "गुरु"
#. l10n: Minimal week day name
#: js/messages.php:505
msgid "Fr"
-msgstr "शुक्रवार"
+msgstr "शुक्र"
#. l10n: Minimal week day name
#: js/messages.php:507
msgid "Sa"
-msgstr "शनिवार"
+msgstr "शनि"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:511
msgid "Wk"
-msgstr "हफ्ता"
+msgstr "सप्ताह"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
#: js/messages.php:514
msgid "calendar-month-year"
-msgstr ""
+msgstr "कैलेण्डर-माह-वर्ष"
#. l10n: Year suffix for calendar, "none" is empty.
#: js/messages.php:516
-#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
-msgstr "कोई नहीं"
+msgstr "कुछ नहीं"
#: js/messages.php:525
msgid "Hour"
@@ -2336,7 +2313,7 @@ msgstr "मिनट"
#: js/messages.php:527
msgid "Second"
-msgstr "सेकंड"
+msgstr "सेकण्ड"
#: libraries/Advisor.class.php:77
#, php-format
@@ -2396,11 +2373,11 @@ msgstr "प्रति मिनट"
#: libraries/Advisor.class.php:456 server_status.php:144 server_status.php:213
#: server_status_queries.php:79 server_status_queries.php:108
msgid "per hour"
-msgstr "प्रति घंटे"
+msgstr "प्रति घंटा"
#: libraries/Advisor.class.php:459
msgid "per day"
-msgstr ""
+msgstr "प्रतिदिन"
#: libraries/Config.class.php:1063
#, php-format
@@ -3228,7 +3205,7 @@ msgstr ""
#: libraries/ServerStatusData.class.php:345
msgid "Query statistics"
-msgstr "डाटाबेसों के सांख्यिकी"
+msgstr "क्वॅरी संबंधी आंकड़े"
#: libraries/ServerStatusData.class.php:349
msgid "All status variables"
@@ -3911,24 +3888,24 @@ msgstr "डाटाबेस के प्रिविलेज चेक क
msgid "Check Privileges"
msgstr "प्रिविलेज चेक करें"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
msgstr "विन्यास सहेज नहीं सकते"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी |"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3939,38 +3916,38 @@ msgid ""
msgstr ""
"$cfg['PmaAbsoluteUri'] निर्देश आपकी विन्यास फाइल मैं सेट होना आवश्यक है"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "अवैध सर्वर सूचकांक: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें"
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए"
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4410,7 +4387,7 @@ msgid "Character set of the file"
msgstr "फ़ाइल का चरित्र सेट"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "प्रारूप"
@@ -10105,7 +10082,7 @@ msgid "Error in ZIP archive:"
msgstr "ज़िप संग्रह में त्रुटि"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11632,6 +11609,7 @@ msgid "Global value"
msgstr "वैश्विक मूल्य"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "डाउनलोड"
@@ -12063,49 +12041,35 @@ msgstr "%1$s टेबल बना दिया गया है"
msgid "View dump (schema) of table"
msgstr "टेबल डंप दृश्य"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
#, fuzzy
#| msgid "Display servers selection"
msgid "Display GIS Visualization"
msgstr "सर्वर चयन प्रदशित करें"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "चौड़ाई "
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "ऊँचाई"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Textarea columns"
msgid "Label column"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
#, fuzzy
#| msgid "- none -"
msgid "-- None --"
msgstr "- कोई नहीं -"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "कुल"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "फिर से बनाएं"
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "फाईल मे सेव करें"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -13590,6 +13554,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "अधिकतम वर्तमान कनेक्शन"
+#~ msgid "Width"
+#~ msgstr "चौड़ाई "
+
+#~ msgid "Height"
+#~ msgstr "ऊँचाई"
+
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "फाईल मे सेव करें"
+
#~ msgid "Total count"
#~ msgstr "कुल गिनती"
diff --git a/po/hr.po b/po/hr.po
index 4558ae2d16..0aaa8d120f 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2013-01-10 13:42+0200\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-21 06:58+0200\n"
"Last-Translator: Michal Čihař \n"
-"Language-Team: Croatian \n"
+"Language-Team: Croatian "
+"\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344
@@ -559,7 +559,7 @@ msgstr "Vrsta izvoza"
msgid "Value for the column \"%s\""
msgstr "Vrijednost stupca \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -778,7 +778,7 @@ msgid "Database server"
msgstr "Baza podataka za korisnika"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Poslužitelj"
@@ -1896,7 +1896,7 @@ msgstr "%d nije valjani broj retka."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Spremi"
@@ -3971,7 +3971,7 @@ msgstr ""
#: libraries/Util.class.php:3405 libraries/sql_query_form.lib.php:455
#: prefs_manage.php:242
msgid "Browse your computer:"
-msgstr "Pretraži računalo"
+msgstr "Pretraži računalo:"
#: libraries/Util.class.php:3430
#, fuzzy, php-format
@@ -4048,25 +4048,25 @@ msgstr "Provjeri privilegije za bazu podataka \"%s\"."
msgid "Check Privileges"
msgstr "Provjeri privilegije"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4078,41 +4078,41 @@ msgstr ""
"Direktiva $cfg['PmaAbsoluteUri'] MORA BITI postavljena u vašoj "
"konfiguracijskoj datoteci!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Neispravan indeks poslužitelja: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju "
"konfiguraciju."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebali biste nadograditi na %s %s ili kasniju."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4564,7 +4564,7 @@ msgid "Character set of the file"
msgstr "Tablica znakova za datoteku:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Oblikovanje"
@@ -8058,7 +8058,7 @@ msgstr ""
#: libraries/plugins/auth/AuthenticationCookie.class.php:200
msgid "Server:"
-msgstr "Poslužitelj"
+msgstr "Poslužitelj:"
#: libraries/plugins/auth/AuthenticationCookie.class.php:212
msgid "Username:"
@@ -10533,7 +10533,7 @@ msgid "Error in ZIP archive:"
msgstr "Pogreška u ZIP arhivi:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12195,6 +12195,7 @@ msgid "Global value"
msgstr "Opća vrijednost"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Preuzmi"
@@ -12597,7 +12598,7 @@ msgstr "SQL upit"
#: tbl_chart.php:210
msgid "X-Axis label:"
-msgstr "Oznaka X-osi"
+msgstr "Oznaka X-osi:"
#: tbl_chart.php:213
#, fuzzy
@@ -12628,45 +12629,31 @@ msgstr "Tablica %1$s je izrađena."
msgid "View dump (schema) of table"
msgstr "Prikaži ispis (shemu) tablice"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Širina"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Visina"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Dodaj/Izbriši stupce polja"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Najveći broj datoteka zapisnika"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Spremi kao datoteku"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -14144,6 +14131,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "najv. uzastopnih veza"
+#~ msgid "Width"
+#~ msgstr "Širina"
+
+#~ msgid "Height"
+#~ msgstr "Visina"
+
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Spremi kao datoteku"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/hu.po b/po/hu.po
index cdeb6bc79a..9d0af62292 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-21 15:58+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Hungarian \n"
"Language-Team: none\n"
@@ -529,7 +529,7 @@ msgstr ""
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -713,7 +713,7 @@ msgid "Database server"
msgstr ""
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr ""
@@ -1671,7 +1671,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr ""
@@ -3633,59 +3633,59 @@ msgstr ""
msgid "Check Privileges"
msgstr ""
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4108,7 +4108,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr ""
@@ -9431,7 +9431,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10878,6 +10878,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11277,39 +11278,27 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr ""
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr ""
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr ""
diff --git a/po/id.po b/po/id.po
index 0597a93bef..67df470552 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-05 10:15+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Indonesian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3829,39 +3829,39 @@ msgstr ""
"Directif $cfg['PmaAbsoluteUri'] WAJIB diset dalam berkas "
"konfigurasi!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Indeks server tidak sah: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Anda harus memperbarui ke %s %s atau lebih baru."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "memungkinkan mengeksploitasi"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "tombol angka terdeteksi"
@@ -4303,7 +4303,7 @@ msgid "Character set of the file"
msgstr "Set karakter berkas"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -9945,7 +9945,7 @@ msgid "Error in ZIP archive:"
msgstr "Galat pada arsip ZIP:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11455,6 +11455,7 @@ msgid "Global value"
msgstr "Nilai global"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Unduh"
@@ -11874,39 +11875,27 @@ msgstr "Tabel %1$s telah dibuat."
msgid "View dump (schema) of table"
msgstr "Tampilkan Dump (Skema) dari tabel"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Tampilkan Visualisasi GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Lebar"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Tinggi"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Kolom label"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Tidak ada --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Kolom spasial"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Gambar ulang"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Simpan dalam berkas"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Nama berkas"
@@ -13378,6 +13367,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Koneksi konkuren maks."
+#~ msgid "Width"
+#~ msgstr "Lebar"
+
+#~ msgid "Height"
+#~ msgstr "Tinggi"
+
+#~ msgid "Save to file"
+#~ msgstr "Simpan dalam berkas"
+
#~ msgid "Total count"
#~ msgstr "Jumlah"
diff --git a/po/it.po b/po/it.po
index 7b5d336db2..2e351b613b 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-08 20:53+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: Italian \n"
"Language-Team: Japanese 必ず設定ファイルに設定しなければ"
"なりません!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "サーバのインデックスが不正です: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。"
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "設定ファイルに無効な認証方法が指定されています:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s を %s 以降にアップグレードしてください。"
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS 変数が書き換えられている可能性があります"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "なんらかの攻撃をされている可能性があります"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "グローバル変数から数値キーが検出されました"
@@ -4301,7 +4301,7 @@ msgid "Character set of the file"
msgstr "ファイルの文字セット"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "フォーマット"
@@ -10092,7 +10092,7 @@ msgid "Error in ZIP archive:"
msgstr "ZIP アーカイブにエラーがあります:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11706,6 +11706,7 @@ msgid "Global value"
msgstr "グローバル値"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "ダウンロード"
@@ -12164,39 +12165,27 @@ msgstr "テーブル %1$s を作成しました。"
msgid "View dump (schema) of table"
msgstr "テーブルのダンプ (スキーマ) 表示"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "視覚化した空間情報"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "幅"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "高さ"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "ラベルカラム"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- なし --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "空間情報カラム"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "再描画"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "ファイルに保存"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "ファイル名"
@@ -13775,6 +13764,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert は 0 に設定されています。"
+#~ msgid "Width"
+#~ msgstr "幅"
+
+#~ msgid "Height"
+#~ msgstr "高さ"
+
+#~ msgid "Save to file"
+#~ msgstr "ファイルに保存"
+
#~ msgid "Total count"
#~ msgstr "数量"
diff --git a/po/ka.po b/po/ka.po
index 81c3c6d602..47d784dbb1 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Georgian \n"
"Language-Team: none\n"
@@ -537,7 +537,7 @@ msgstr "Экспорт типі қате"
msgid "Value for the column \"%s\""
msgstr "\"%s\" баған мәні"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "OpenStreetMaps негізгі қабат ретінде қолданыңыз"
@@ -732,7 +732,7 @@ msgid "Database server"
msgstr ""
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr ""
@@ -1695,7 +1695,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Сақтау"
@@ -3666,59 +3666,59 @@ msgstr ""
msgid "Check Privileges"
msgstr ""
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4143,7 +4143,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr ""
@@ -9477,7 +9477,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10924,6 +10924,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11327,39 +11328,27 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr ""
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr ""
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index 1e9996b22f..0548afd8f6 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2013-01-18 10:56+0200\n"
-"Last-Translator: Seonghwan Bang \n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-21 17:03+0200\n"
+"Last-Translator: Kyujin Cho \n"
"Language-Team: Korean \n"
"Language: ko\n"
"MIME-Version: 1.0\n"
@@ -531,7 +531,7 @@ msgstr "잘못된 내보내기 타입"
msgid "Value for the column \"%s\""
msgstr "\"%s\"행의 값"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "기본 레이어로 OpenStreetMaps를 사용"
@@ -625,7 +625,9 @@ msgstr ""
msgid ""
"You probably tried to upload a file that is too large. Please refer to "
"%sdocumentation%s for a workaround for this limit."
-msgstr "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s를 참조하여 주십시오."
+msgstr ""
+"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s"
+"를 참조하여 주십시오."
#: import.php:232 import.php:497
msgid "Showing bookmark"
@@ -733,7 +735,7 @@ msgid "Database server"
msgstr "데이터베이스 서버"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "서버"
@@ -1723,7 +1725,7 @@ msgstr "%d는 올바른 행번호가 아닙니다."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "저장"
@@ -1774,7 +1776,7 @@ msgstr "두 개의다른 열 선택"
#: js/messages.php:303
msgid "Query results"
-msgstr "질의 결과"
+msgstr "쿼리 결과"
#: js/messages.php:304
#, fuzzy
@@ -1791,9 +1793,8 @@ msgid "Copy"
msgstr "복사"
#: js/messages.php:323
-#, fuzzy
msgid "Add columns"
-msgstr "필드 추가하기"
+msgstr "세로열 추가하기"
#: js/messages.php:326
msgid "Select referenced key"
@@ -3160,6 +3161,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
+"테이블 UI 설정을 정리하는 데 실패했습니다. ($cfg['Servers'][$i]['MaxTableUiprefs'] %s 를 "
+"참조하세요)"
#: libraries/Table.class.php:1535
#, php-format
@@ -3751,11 +3754,11 @@ msgstr "데이터베이스 "%s" 에 대한 사용권한 검사."
msgid "Check Privileges"
msgstr "사용권한 검사"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "설정 파일을 읽는데 실패했습니다."
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3763,12 +3766,12 @@ msgstr ""
"일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십"
"시오."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "기본 설정을 가져올 수 없습니다: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3779,38 +3782,38 @@ msgid ""
msgstr ""
"환경설정 파일에 $cfg['PmaAbsoluteUri'] 변수가 정의되어야 합니다!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "잘못된 서버 인덱스: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오"
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.: "
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s를 %s 이상으로 업그레이드 하십시오."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "어떤 공격을 받고있을 가능성이 있습니다."
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다."
@@ -3885,11 +3888,11 @@ msgstr "구조와 데이터 모두"
#: libraries/config.values.php:137
msgid "Quick - display only the minimal options to configure"
-msgstr ""
+msgstr "빠른 보기 - 설정할 최소위 옵션만을 보여줍니다."
#: libraries/config.values.php:138
msgid "Custom - display all possible options to configure"
-msgstr ""
+msgstr "커스텀 - 설정 가능한 모든 옵션을 보여줍니다."
#: libraries/config.values.php:139
msgid "Custom - like above, but without the quick/custom choice"
@@ -3909,7 +3912,7 @@ msgstr "확장된 inserts"
#: libraries/config.values.php:169
msgid "both of the above"
-msgstr ""
+msgstr "위의 것 모두"
#: libraries/config.values.php:170
msgid "neither of the above"
@@ -4240,7 +4243,7 @@ msgid "Character set of the file"
msgstr "파일 문자셋"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "형식"
@@ -7507,6 +7510,8 @@ msgid ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
msgstr ""
+"PhpMyAdmin이 MySQL 서버에 접속하려 했으나 실패했습니다. 서버가 연결을 거부했습니다. 당신의 설정의 호스트, ID, "
+"패스워드가 맞게 입력됐는지, 또는 MySQL 서버의 관리자가 제공해 준 정보를 맞게 입력했는지 확인하세요. "
#: libraries/plugins/auth/AuthenticationCookie.class.php:44
msgid "Failed to use Blowfish from mcrypt!"
@@ -7546,7 +7551,7 @@ msgstr "서버 선택"
#: libraries/plugins/auth/AuthenticationSignon.class.php:249
msgid ""
"Login without a password is forbidden by configuration (see AllowNoPassword)"
-msgstr ""
+msgstr "암호 없이의 로그인이 설정에 의해 차단되어 있습니다(AllowNoLogin 항목을 참조하세요)."
#: libraries/plugins/auth/AuthenticationCookie.class.php:586
#: libraries/plugins/auth/AuthenticationSignon.class.php:256
@@ -9830,7 +9835,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11341,6 +11346,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "다운로드"
@@ -11769,43 +11775,31 @@ msgstr "테이블 %s 을 제거했습니다."
msgid "View dump (schema) of table"
msgstr "테이블의 덤프(스키마) 데이터 보기"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "너비"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "높이"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Label column"
msgstr "컬럼 추가/삭제"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-없음-"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "전체 사용량"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "다시그리기"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "파일로 저장"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "파일명"
@@ -13176,6 +13170,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert가 0으로 설정되었습니다."
+#~ msgid "Width"
+#~ msgstr "너비"
+
+#~ msgid "Height"
+#~ msgstr "높이"
+
+#~ msgid "Save to file"
+#~ msgstr "파일로 저장"
+
#~ msgid "Total count"
#~ msgstr "전체 갯수"
diff --git a/po/lt.po b/po/lt.po
index 3f6c63bab9..05d6445974 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-13 12:59+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Lithuanian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3851,38 +3851,38 @@ msgid ""
msgstr ""
"BŪTINA nustatymų faile įrašyti $cfg['PmaAbsoluteUri'] reikšmę!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Blogas serverio indeksas: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "galimas pažeidžiamumas"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4323,7 +4323,7 @@ msgid "Character set of the file"
msgstr "Failo simbolių koduotė"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formatas"
@@ -10101,7 +10101,7 @@ msgid "Error in ZIP archive:"
msgstr "Klaida ZIP archyve:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11608,6 +11608,7 @@ msgid "Global value"
msgstr "Globali reikšmė"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Parsisiųsti"
@@ -12083,39 +12084,27 @@ 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:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Rodyti GIS vizualizaciją"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Plotis"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Aukštis"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Etiketės stulpelis"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Tuščia --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Perpiešti"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Įrašyti į failą"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Failo pavadinimas"
@@ -13581,6 +13570,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "MyISAM concurrent įterpimai"
+#~ msgid "Width"
+#~ msgstr "Plotis"
+
+#~ msgid "Height"
+#~ msgstr "Aukštis"
+
+#~ msgid "Save to file"
+#~ msgstr "Įrašyti į failą"
+
#~ msgid "Total count"
#~ msgstr "Iš viso"
diff --git a/po/lv.po b/po/lv.po
index e913b73275..d6bc380740 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:39+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Latvian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3907,38 +3907,38 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktīvai ir JĀBŪT nodefinētai Jūsu "
"konfigurācijas failā!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Jums ir jāuzliek %s %s vai jaunāks."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4386,7 +4386,7 @@ msgid "Character set of the file"
msgstr "Tabulas kodējums:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formats"
@@ -10187,7 +10187,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11715,6 +11715,7 @@ msgid "Global value"
msgstr "Globālā vērtība"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12141,45 +12142,31 @@ msgstr "Tabula %s tika izdzēsta"
msgid "View dump (schema) of table"
msgstr "Apskatīt tabulas dampu (shēmu)"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Kopā"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Saglabāt kā failu"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13581,6 +13568,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Saglabāt kā failu"
+
#~ msgid "Total count"
#~ msgstr "Kopējais skaits"
diff --git a/po/mk.po b/po/mk.po
index aca17414c7..801c4e3bf2 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:39+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Macedonian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4028,39 +4028,39 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] директивата МОРА да биде подесена во "
"конфигурациската податотека!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
"Би требало да го надоградите вашиот %s сервер на верзија %s или понова."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4511,7 +4511,7 @@ msgid "Character set of the file"
msgstr "Кодна страна на податотеката:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Формат"
@@ -10363,7 +10363,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11891,6 +11891,7 @@ msgid "Global value"
msgstr "Глобална вредност"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12317,45 +12318,31 @@ msgstr "Табелата %s е избришана"
msgid "View dump (schema) of table"
msgstr "Прикажи содржина (шема) на табелите"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Додади/избриши колона"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Вкупно"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Сочувај како податотека"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13786,6 +13773,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Сочувај како податотека"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/ml.po b/po/ml.po
index 032bc168d1..c095d7732a 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
"Last-Translator: \n"
"Language-Team: Malayalam \n"
@@ -528,7 +528,7 @@ msgstr ""
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -712,7 +712,7 @@ msgid "Database server"
msgstr ""
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr ""
@@ -1674,7 +1674,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr ""
@@ -3639,59 +3639,59 @@ msgstr ""
msgid "Check Privileges"
msgstr ""
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4116,7 +4116,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr ""
@@ -9451,7 +9451,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10899,6 +10899,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11300,39 +11301,27 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr ""
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr ""
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index b344150340..80530cafb4 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-13 13:03+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Mongolian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4041,39 +4041,39 @@ msgid ""
msgstr ""
"$cfg['PmaAbsoluteUri'] -ыг тохиргооны файлд тохируулах хэрэгтэй!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Сервэрийн буруу индекс нь: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4522,7 +4522,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Тогтнол"
@@ -10343,7 +10343,7 @@ msgid "Error in ZIP archive:"
msgstr "ZIP архивт байгаа алдаа:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11919,6 +11919,7 @@ msgid "Global value"
msgstr "Глобал утга"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12342,45 +12343,31 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr "Хүснэгтийн схем харах"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Багана нэмэх/устгах"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Нийт"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Илгээх"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -13849,6 +13836,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "ХИ. давхацсан холболтууд"
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Илгээх"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/ms.po b/po/ms.po
index bb1e5449ed..326d09ddd1 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:43+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malay \n"
@@ -549,7 +549,7 @@ msgstr "Eksport"
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -748,7 +748,7 @@ msgid "Database server"
msgstr "pangkalan data"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Pelayan"
@@ -1820,7 +1820,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Simpan"
@@ -3942,22 +3942,22 @@ msgstr ""
msgid "Check Privileges"
msgstr "Tiada Privilej"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3968,38 +3968,38 @@ msgid ""
msgstr ""
"$cfg[PmaAbsoluteUri] MESTI disetkan di dalam fail konfigurasi."
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4444,7 +4444,7 @@ msgid "Character set of the file"
msgstr "Fail bagi set Aksara:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10085,7 +10085,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11599,6 +11599,7 @@ msgid "Global value"
msgstr "Nilai Global"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12022,45 +12023,31 @@ msgstr "Jadual %s telah digugurkan"
msgid "View dump (schema) of table"
msgstr "Lihat longgokan (skema) pangkalan data"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Tambah/Padam Kolum Medan"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Jumlah"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Simpan sebagai fail"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13444,6 +13431,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Simpan sebagai fail"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/nb.po b/po/nb.po
index 379eefb4cd..e953c827ea 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:44+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Norwegian Bokmål \n"
"Language-Team: Dutch \n"
"Language: nl\n"
@@ -533,7 +533,7 @@ msgstr "Ongeldig exporttype"
msgid "Value for the column \"%s\""
msgstr "Waarde voor kolom \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Gebruik OpenStreetMaps als basislayer"
@@ -739,7 +739,7 @@ msgid "Database server"
msgstr "Databankserver"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Server"
@@ -1757,7 +1757,7 @@ msgstr "%d is geen geldig rijnummer."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Opslaan"
@@ -3419,8 +3419,7 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Een tijdstip, van 1970-01-01 00:00:01 UTC tot 2038-01-09 03:14:07 UTC, wordt "
-"opgeslaan als aantal seconden sinds het beginmoment (1970-01-01 00:00:00 "
-"UTC)"
+"opgeslaan als aantal seconden sinds het beginmoment (1970-01-01 00:00:00 UTC)"
#: libraries/Types.class.php:326 libraries/Types.class.php:728
#, php-format
@@ -3547,7 +3546,7 @@ msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
-"Een oplijsting, geselecteerd uit een lijst met tot 65.535 waarden of de "
+"Een opsomming, geselecteerd uit een lijst met tot 65.535 waarden of de "
"speciale '' foutwaarde"
#: libraries/Types.class.php:356
@@ -3652,7 +3651,7 @@ msgstr ""
#: libraries/Types.class.php:738
msgid "An enumeration, chosen from the list of defined values"
-msgstr ""
+msgstr "Een opsomming, gekozen uit de lijst van gedefiniëerde waarden"
#: libraries/Util.class.php:223
#, php-format
@@ -3831,11 +3830,11 @@ msgstr "Controleer rechten op databank "%s"."
msgid "Check Privileges"
msgstr "Controleer rechten"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Lezen van het configuratiebestand is niet gelukt"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3844,12 +3843,12 @@ msgstr ""
"hieronder te bekijken."
# 'kon niet vanuit "%1$s" geladen worden' is juister.
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3857,38 +3856,38 @@ msgstr ""
"De [code]$cfg['PmaAbsoluteUri'][/code] richtlijn MOET ingesteld zijn in het "
"configuratiebestand!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Ongeldige serverindex: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "U moet upgraden naar %s %s of hoger."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
-msgstr ""
+msgstr "Fout: token niet hetzelfde"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "poging om GLOBALS te overschrijven"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "mogelijk misbruik"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "numerieke toets gedetecteerd"
@@ -3911,11 +3910,11 @@ msgstr "Rechts"
#: libraries/config.values.php:69
msgid "Click"
-msgstr ""
+msgstr "Klik"
#: libraries/config.values.php:70
msgid "Double click"
-msgstr ""
+msgstr "Dubbelklik"
#: libraries/config.values.php:71 libraries/config.values.php:103
#: libraries/config/FormDisplay.tpl.php:225 libraries/relation.lib.php:98
@@ -4338,7 +4337,7 @@ msgid "Character set of the file"
msgstr "Karakterset voor het bestand"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Opmaak"
@@ -5096,7 +5095,7 @@ msgstr ""
#: libraries/config/messages.inc.php:287
msgid "Maximum items in branch"
-msgstr ""
+msgstr "Maximum elementen in tak"
#: libraries/config/messages.inc.php:288
msgid ""
@@ -5327,7 +5326,7 @@ msgstr ""
#: libraries/config/messages.inc.php:335
msgid "Server/library difference warning"
-msgstr ""
+msgstr "Waarschuwing verschil server/bibliotheek"
#: libraries/config/messages.inc.php:337
msgid "Iconic table operations"
@@ -5417,7 +5416,7 @@ msgstr "Kopregels herhalen"
#: libraries/config/messages.inc.php:358
msgid "Grid editing: trigger action"
-msgstr ""
+msgstr "Rasterbewerken: trigger actie"
#: libraries/config/messages.inc.php:359
msgid "Grid editing: save all edited cells at once"
@@ -6368,11 +6367,11 @@ msgstr "Details…"
#: libraries/dbi/drizzle-wrappers.lib.php:387
msgid "Can't seek in an unbuffered result set"
-msgstr ""
+msgstr "Kan niet zoeken in een ongebufferde resultatenreeks"
#: libraries/dbi/drizzle-wrappers.lib.php:408
msgid "Can't count rows in an unbuffered result set"
-msgstr ""
+msgstr "Kan geen rijen tellen in een ongebufferde resultatenreeks"
#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:159
#: libraries/dbi/mysqli.dbi.lib.php:206
@@ -7441,7 +7440,7 @@ msgstr "onbekend"
#: libraries/navigation/Navigation.class.php:61
msgid "An error has occured while loading the navigation tree"
-msgstr ""
+msgstr "Er is een fout opgetreden bij het laden van de navigatieboom"
#: libraries/navigation/NavigationHeader.class.php:182
msgid "Home"
@@ -7464,8 +7463,8 @@ msgstr "Navigatievenster herladen"
#, php-format
msgid "%s other result found"
msgid_plural "%s other results found"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%s ander resultaat gevonden"
+msgstr[1] "%s andere resultaten gevonden"
#: libraries/navigation/NavigationTree.class.php:1027
msgid "filter databases by name"
@@ -7484,12 +7483,13 @@ msgstr "elementen filteren op naam"
#: libraries/navigation/NodeFactory.class.php:41
#, php-format
msgid "Invalid class name \"%1$s\", using default of \"Node\""
-msgstr ""
+msgstr "Ongeldige klassenaam \"%1$s\", \"Node\" zal gebruikt worden"
#: libraries/navigation/NodeFactory.class.php:65
#, php-format
msgid "Could not include class \"%1$s\", file \"%2$s\" not found"
msgstr ""
+"Klasse \"%1$s\" kon niet ingevoegd worden, bestand \"%2$s' niet gevonden"
#: libraries/navigation/Nodes/Node_Column_Container.class.php:26
#: libraries/sql_query_form.lib.php:271
@@ -7769,7 +7769,7 @@ msgstr "Aanmelden"
#: libraries/plugins/auth/AuthenticationCookie.class.php:99
msgid "Your session has expired. Please log in again."
-msgstr ""
+msgstr "Uw sessie is verlopen. Gelieve opnieuw aan te melden."
#: libraries/plugins/auth/AuthenticationCookie.class.php:197
#: libraries/plugins/auth/AuthenticationCookie.class.php:207
@@ -8301,7 +8301,7 @@ msgstr "XML"
#: libraries/plugins/import/ShapeRecord.class.php:58
#, php-format
msgid "Geometry type '%s' is not supported by MySQL."
-msgstr ""
+msgstr "Meetkundig type '%s' wordt niet ondersteund door MySQL."
#: libraries/plugins/transformations/abstract/AppendTransformationsPlugin.class.php:32
msgid ""
@@ -8328,8 +8328,8 @@ msgstr ""
"de tijdstip zal worden toegevoegd (Standaard: 0). De tweede optie kan worden "
"gebruikt om een alternatieve opmaak te specificeren. Als derde optie kan "
"worden opgegeven of de lokale tijd, of de UTC-variant moet worden gebruikt "
-"(gebruik \"local\" of \"utc\"). Afhankelijk hiervan verschilt de opmaakcode - "
-"voor \"local\", zie de documentatie van de PHP-functie strftime() en voor "
+"(gebruik \"local\" of \"utc\"). Afhankelijk hiervan verschilt de opmaakcode "
+"- voor \"local\", zie de documentatie van de PHP-functie strftime() en voor "
"\"utc\" de functie gmdate()."
#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
@@ -9856,7 +9856,7 @@ msgstr "Kolommen verplaatsen"
#: libraries/structure.lib.php:1426
msgid "Move the columns by dragging them up and down."
-msgstr ""
+msgstr "De kolommen verplaatsen door ze omhoog en omlaag te slepen."
#: libraries/structure.lib.php:1460
msgid "Edit view"
@@ -10057,7 +10057,7 @@ msgstr "Zoals aangegeven:"
#: libraries/tbl_columns_definition_form.inc.php:632
msgid "first"
-msgstr ""
+msgstr "eerste"
#: libraries/tbl_columns_definition_form.inc.php:642
#, php-format
@@ -10116,8 +10116,10 @@ msgid "Error in ZIP archive:"
msgstr "Fout in het ZIP-archief:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
-msgstr ""
+#, fuzzy
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
+msgstr "Fatale fout: de navigatie is alleen toegankelijk via AJAX"
#: pmd_display_field.php:60 pmd_save_pos.php:81
msgid "Modifications have been saved"
@@ -10129,11 +10131,11 @@ msgstr "Toon/verberg linker menu"
#: pmd_general.php:86
msgid "View in fullscreen"
-msgstr ""
+msgstr "In volledig scherm bekijken"
#: pmd_general.php:90
msgid "Exit fullscreen"
-msgstr ""
+msgstr "Volledig scherm modus verlaten"
#: pmd_general.php:95
msgid "Save position"
@@ -11785,6 +11787,7 @@ msgid "Global value"
msgstr "Globale waarde"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Download"
@@ -12188,7 +12191,7 @@ msgstr "Spline"
#: tbl_chart.php:141
msgctxt "Chart type"
msgid "Area"
-msgstr ""
+msgstr "Grafiektype"
#: tbl_chart.php:144
msgctxt "Chart type"
@@ -12196,7 +12199,6 @@ msgid "Pie"
msgstr "Taart"
#: tbl_chart.php:148
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
msgstr "Tijdlijn"
@@ -12248,39 +12250,27 @@ msgstr "Tabel %1$s is aangemaakt."
msgid "View dump (schema) of table"
msgstr "Een dump (schema) van tabel bekijken"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "GIS-visualisatie tonen"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Breedte"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Hoogte"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Kolom naam geven"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Geen --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Plaatshoudende kolom"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Hertekenen"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Opslaan naar bestand"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Bestandsnaam"
@@ -13849,6 +13839,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert is ingesteld op 0"
+#~ msgid "Width"
+#~ msgstr "Breedte"
+
+#~ msgid "Height"
+#~ msgstr "Hoogte"
+
+#~ msgid "Save to file"
+#~ msgstr "Opslaan naar bestand"
+
#~ msgid "Total count"
#~ msgstr "Totaal aantal"
diff --git a/po/pa.po b/po/pa.po
index b1b1cf88fe..50fd329875 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-09-01 12:11+0200\n"
"Last-Translator: gurjit dhillon \n"
"Language-Team: Punjabi \n"
"Language-Team: LANGUAGE \n"
@@ -528,7 +528,7 @@ msgstr ""
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -712,7 +712,7 @@ msgid "Database server"
msgstr ""
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr ""
@@ -1670,7 +1670,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr ""
@@ -3632,59 +3632,59 @@ msgstr ""
msgid "Check Privileges"
msgstr ""
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, possible-php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, possible-php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, possible-php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, possible-php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4107,7 +4107,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr ""
@@ -9431,7 +9431,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10878,6 +10878,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11277,39 +11278,27 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr ""
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr ""
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 36e759a33b..9fdfdef0d8 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:42+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Polish \n"
"Language-Team: Portuguese $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3812,40 +3812,40 @@ msgstr ""
"A directiva $cfg['PmaAbsoluteUri'] TEM que ser definida no "
"ficheiro de configuração!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nome de serivdor inválido para o servidor %1$s. Verifique as suas "
"configurações."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticação definido nas configurações inválido:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "deve actualizar para %s %s ou mais recente."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "possível 'exploit'"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "Tecla numérica detectada"
@@ -4295,7 +4295,7 @@ msgid "Character set of the file"
msgstr "Configurar o Mapa de Caracteres do ficheiro"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formato"
@@ -10112,7 +10112,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11637,6 +11637,7 @@ msgid "Global value"
msgstr "Valor Global"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12063,45 +12064,31 @@ msgstr "A tabela %s foi eliminada"
msgid "View dump (schema) of table"
msgstr "Ver o esquema da tabela"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Adicionar/Remover Campos"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Total"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "envia"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13566,6 +13553,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está definida com o valor 0"
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "envia"
+
#~ msgid "Total count"
#~ msgstr "Contagem total"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index efbfd1353c..f37fb0e6ea 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:39+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Portuguese (Brazil) \n"
-"Language-Team: Romanian "
-"\n"
+"Language-Team: Romanian \n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -37,9 +37,9 @@ msgid ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-"Fereastra de navigare nu a putut fi actualizată. Poate aţi închis "
-"fereastra-părinte sau setările de securitate ale sistemului sunt configurate "
-"să blocheze actualizările dintre ferestre."
+"Fereastra de navigare nu a putut fi actualizată. Poate aţi închis fereastra-"
+"părinte sau setările de securitate ale sistemului sunt configurate să "
+"blocheze actualizările dintre ferestre."
#: browse_foreigners.php:166 libraries/Menu.class.php:263
#: libraries/Menu.class.php:352 libraries/Util.class.php:3276
@@ -538,7 +538,7 @@ msgstr "Modul de export este invalid"
msgid "Value for the column \"%s\""
msgstr "Valoare pentru coloana \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -752,7 +752,7 @@ msgid "Database server"
msgstr "Bază de date pentru utilizatorul"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Server"
@@ -1839,7 +1839,7 @@ msgstr "%d nu este un număr valid de rînduri."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Salveaza"
@@ -3946,25 +3946,25 @@ msgstr "Verifică privilegiile pentru baza de date "%s"."
msgid "Check Privileges"
msgstr "Verifică privilegiile"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3976,41 +3976,41 @@ msgstr ""
"Directiva $cfg['PmaAbsoluteUri'] TREBUIE să fie stabilită în "
"fișierul de configurare!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Index de server nevalid: „%s”"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația "
"dumneavoastră."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Metodă de autentificare nevalidă stabilită în configurație:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "cheie numerica detectată"
@@ -4470,7 +4470,7 @@ msgid "Character set of the file"
msgstr "Setul de caractere al fișierului"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10601,7 +10601,7 @@ msgid "Error in ZIP archive:"
msgstr "Eroare în arhiva ZIP:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12148,6 +12148,7 @@ msgid "Global value"
msgstr "Valoare globală"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Descarcă"
@@ -12581,45 +12582,31 @@ msgstr "Tabelul %1$s a fost creat."
msgid "View dump (schema) of table"
msgstr "Vizualizarea schemei tabelului"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Afișează Vizualizarea GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Lățime"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Înălțime"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Adaugă/șterge coloane"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Număr de fișiere-jurnal"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Redesenează"
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Trimite"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -13122,8 +13109,8 @@ msgstr ""
#: libraries/advisory_rules.txt:132
msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
msgstr ""
-"Documentaţia pentru Percona se găseşte la adresa "
-"http://www.percona.com/docs/wiki/"
+"Documentaţia pentru Percona se găseşte la adresa http://www.percona.com/docs/"
+"wiki/"
#: libraries/advisory_rules.txt:133
msgid "'percona' found in version_comment"
@@ -13142,7 +13129,6 @@ msgstr ""
"specifică Drizzle"
#: libraries/advisory_rules.txt:142
-#| msgid "MySQL charset"
msgid "MySQL Architecture"
msgstr "Arhitectura MySQL"
@@ -13167,12 +13153,10 @@ msgid "Available memory on this host: %s"
msgstr "Memoria disponibilă pe acest server este: %s"
#: libraries/advisory_rules.txt:153
-#| msgid "Query cache"
msgid "Query cache disabled"
msgstr "Pastrarea in memoria cache a interogărilor este dezactivată"
#: libraries/advisory_rules.txt:156
-#| msgid "The server is not responding"
msgid "The query cache is not enabled."
msgstr "Pastrarea in memoria cache a interogărilor nu este activată."
@@ -13196,12 +13180,10 @@ msgstr ""
"query_cache_type este setat cu valoarea 'OFF'"
#: libraries/advisory_rules.txt:160
-#| msgid "Query cache"
msgid "Query caching method"
msgstr "Metoda de păstrare în memoria cache a interogarilor"
#: libraries/advisory_rules.txt:163
-#| msgid "Query cache"
msgid "Suboptimal caching method."
msgstr "Metoda de folosire a memoriei cache sub nivelul optim."
@@ -13214,10 +13196,9 @@ msgid ""
msgstr ""
"Folosiți metoda de păstrare în memoria cache a interogărilor MySQL prin "
"creșterea traficului destul de mult pe baza de date. Ar putea merita sa "
-"aveți în vedere utilizarea opțiunii memcached în locul păstrare în memoria cache a "
-"interogărilor MySQL, mai ales dacă aveți mai multe instanțe."
+"aveți în vedere utilizarea opțiunii memcached în locul păstrare în memoria "
+"cache a interogărilor MySQL, mai ales dacă aveți mai multe instanțe."
#: libraries/advisory_rules.txt:165
#, php-format
@@ -13226,12 +13207,11 @@ msgid ""
"This rule fires if there is more than 100 queries per second."
msgstr ""
"Opțiunea de păstrare în memoria cache a interogărilor MySQL este activata și "
-"serverul primește %d interogări pe secundă. Această regulă se activează "
-"dacă există mai mult de 100 de interogări pe secundă."
+"serverul primește %d interogări pe secundă. Această regulă se activează dacă "
+"există mai mult de 100 de interogări pe secundă."
#: libraries/advisory_rules.txt:167
#, php-format
-#| msgid "Query cache"
msgid "Query cache efficiency (%%)"
msgstr ""
"Eficiența metodei de păstrare în memoria cache a interogărilor MySQL (%%)"
@@ -13249,7 +13229,6 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
-#| msgid "Sort buffer size"
msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr ""
"Rata curenta de acțiune a metodei de păstrare în memoria cache a "
@@ -13284,12 +13263,10 @@ msgstr ""
"totală a interogărilor este %s%%. Ar trebui să fie peste 80%%"
#: libraries/advisory_rules.txt:181
-#| msgid "Query cache"
msgid "Query cache fragmentation"
msgstr "Fragmentarea memoriei cache a interogărilor"
#: libraries/advisory_rules.txt:184
-#| msgid "The server is not responding"
msgid "The query cache is considerably fragmented."
msgstr ""
"Memoria cache a interogărilor este fragmentată într-o proporție "
@@ -13308,15 +13285,15 @@ msgid ""
msgstr ""
"Fragmentarea severă este probabil (mai degrabă) să necesite creşterea "
"valorii parametrului Qcache_lowmem_prunes. Acest lucru ar putea fi cauzat de "
-"prea multe stergeri ale memoriei cache a interogărilor din cauza unei "
-"valori prea mici a parametrului {query_cache_size}. Pentru o soluţionare "
-"imediată, dar de scurtă durata puteti goli (şterge) memoria cache a "
-"interogărilor (această acţiune ar putea bloca memoria cache a interogărilor "
-"pentru o perioadă lungă de timp). Ajustarea atentă a valorii parametrului "
+"prea multe stergeri ale memoriei cache a interogărilor din cauza unei valori "
+"prea mici a parametrului {query_cache_size}. Pentru o soluţionare imediată, "
+"dar de scurtă durata puteti goli (şterge) memoria cache a interogărilor "
+"(această acţiune ar putea bloca memoria cache a interogărilor pentru o "
+"perioadă lungă de timp). Ajustarea atentă a valorii parametrului "
"{query_cache_min_res_unit}, la o valoare inferioară v-ar putea ajuta de "
"asemenea, de ex. puteţi seta valoarea la dimensiunea medie a interogările "
-"din memoria cache utilizând formula: (query_cache_size - qcache_free_memory) "
-"/ qcache_queries_in_cache"
+"din memoria cache utilizând formula: (query_cache_size - "
+"qcache_free_memory) / qcache_queries_in_cache"
#: libraries/advisory_rules.txt:186
#, php-format
@@ -13327,16 +13304,14 @@ msgid ""
msgstr ""
"Memoria cache este în prezent fragmentată în procent de %s%%, o fragmentare "
"în procent de 100%% înseamnă că memoria cache a interogărilor este o alocare "
-"alternativă de blocuri libere și utilizate. Această valoare ar trebui să "
-"fie sub 20%%."
+"alternativă de blocuri libere și utilizate. Această valoare ar trebui să fie "
+"sub 20%%."
#: libraries/advisory_rules.txt:188
-#| msgid "Query cache"
msgid "Query cache low memory prunes"
msgstr "Stergeri datorate insuficienţei memoriei cache a interogărilor"
#: libraries/advisory_rules.txt:191
-#| msgid "The amount of free memory for query cache."
msgid ""
"Cached queries are removed due to low query cache memory from the query "
"cache."
@@ -13366,7 +13341,6 @@ msgstr ""
"regulilor este: 0,1%%)"
#: libraries/advisory_rules.txt:195
-#| msgid "Query cache"
msgid "Query cache max size"
msgstr "Mărimea maximă a memoriei cache alocată interogărilor"
@@ -13394,7 +13368,6 @@ msgid "Current query cache size: %s"
msgstr "Dimensiune curentă a memoriei cache a interogărilor: %s"
#: libraries/advisory_rules.txt:202
-#| msgid "Query results"
msgid "Query cache min result size"
msgstr "Dimensiunea minimă a rezultatelor în memoria cache a interogărilor"
@@ -13423,22 +13396,19 @@ msgstr ""
"care depășesc dimensiunea de 1 MiB care sunt bune de păstrat în memorie "
"(multe citiri, puține scrieri), atunci creșterea valorii parametrului "
"{query_cache_limit} va crește eficiența. Întrucât în cazul în care mai multe "
-"rezultate ale interogărilor depășesc 1 MiB şi nu sunt foarte bune de "
-"păstrat în memorie (de multe ori invalidate de actualizări ale tabelului) "
-"creşterea valorii parametrului {query_cache_limit} ar putea reduce "
-"eficienţa."
+"rezultate ale interogărilor depășesc 1 MiB şi nu sunt foarte bune de păstrat "
+"în memorie (de multe ori invalidate de actualizări ale tabelului) creşterea "
+"valorii parametrului {query_cache_limit} ar putea reduce eficienţa."
#: libraries/advisory_rules.txt:207
msgid "query_cache_limit is set to 1 MiB"
msgstr "valoarea parametrului query_cache_limit este setata la 1 MiB"
#: libraries/advisory_rules.txt:211
-#| msgid "Allows creating temporary tables."
msgid "Percentage of sorts that cause temporary tables"
msgstr "Procentul de sortări care provoaca generarea de tabele temporare"
#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221
-#| msgid "Allows creating temporary tables."
msgid "Too many sorts are causing temporary tables."
msgstr "Prea multe sortări cauzează crearea de tabele temporare."
@@ -13447,8 +13417,8 @@ msgid ""
"Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending "
"on your system memory limits"
msgstr ""
-"Luaţi în considerare creşterea valorilor parametrilor sort_buffer_size "
-"şi/sau read_rnd_buffer_size, în funcţie de limitele memoriei sistemului "
+"Luaţi în considerare creşterea valorilor parametrilor sort_buffer_size şi/"
+"sau read_rnd_buffer_size, în funcţie de limitele memoriei sistemului "
"dumneavoastră"
#: libraries/advisory_rules.txt:216
@@ -13461,13 +13431,11 @@ msgstr ""
"fie mai mică de 10%%."
#: libraries/advisory_rules.txt:218
-#| msgid "Allows creating temporary tables."
msgid "Rate of sorts that cause temporary tables"
msgstr "Rata de sortări care au generat tabele temporare"
#: libraries/advisory_rules.txt:223
#, php-format
-#| msgid "Sort buffer size"
msgid ""
"Temporary tables average: %s, this value should be less than 1 per hour."
msgstr ""
@@ -13475,7 +13443,6 @@ msgstr ""
"1 oră."
#: libraries/advisory_rules.txt:225
-#| msgid "Start"
msgid "Sort rows"
msgstr "Sortare (ordonare) rânduri"
@@ -14165,7 +14132,6 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:459
-#| msgid "max. concurrent connections"
msgid "MyISAM concurrent inserts"
msgstr "inserări concurente MyISAM"
@@ -14187,6 +14153,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert este setat cu 0"
+#~ msgid "Width"
+#~ msgstr "Lățime"
+
+#~ msgid "Height"
+#~ msgstr "Înălțime"
+
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Trimite"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/ru.po b/po/ru.po
index 0d2fc1daac..5a6b46c2e0 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2013-01-13 21:07+0200\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-20 19:51+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: Russian \n"
@@ -537,7 +537,7 @@ msgstr "Ошибочный тип экспорта"
msgid "Value for the column \"%s\""
msgstr "Значение для поля \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Используйте в качестве основного слоя OpenStreetMaps"
@@ -739,7 +739,7 @@ msgid "Database server"
msgstr "Сервер баз данных"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Сервер"
@@ -1754,7 +1754,7 @@ msgstr "Число %d не является правильным номером
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Сохранить"
@@ -3829,11 +3829,11 @@ msgstr "Проверить привилегии для базы данных &qu
msgid "Check Privileges"
msgstr "Проверить привилегии"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Ошибка при чтении конфигурационного файла"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3841,12 +3841,12 @@ msgstr ""
"Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте "
"выведенные ниже ошибки."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3854,41 +3854,41 @@ msgstr ""
"Директива [code]$cfg['PmaAbsoluteUri'][/code] ДОЛЖНА быть установлена в "
"конфигурационном файле!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Неверный индекс сервера: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в "
"конфигурационном файле phpMyAdmin."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
"В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Необходимо обновить %s до версии %s или выше."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "Ошибка: Несоответствие Тоукена"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "попытка перезаписи GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "возможная уязвимость"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "определена числовая клавиша"
@@ -4336,7 +4336,7 @@ msgid "Character set of the file"
msgstr "Кодировка файла"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Формат"
@@ -10088,7 +10088,9 @@ msgid "Error in ZIP archive:"
msgstr "Ошибка в ZIP-архиве:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+#, fuzzy
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
"Неисправимая ошибка: Панель навигации может быть доступна только с помощью "
"ajax"
@@ -11755,6 +11757,7 @@ msgid "Global value"
msgstr "Глобальное значение"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Скачать"
@@ -12161,7 +12164,7 @@ msgstr "Сплайн"
#: tbl_chart.php:141
msgctxt "Chart type"
msgid "Area"
-msgstr ""
+msgstr "Тип графика"
#: tbl_chart.php:144
msgctxt "Chart type"
@@ -12169,11 +12172,9 @@ msgid "Pie"
msgstr "Круговая"
#: tbl_chart.php:148
-#, fuzzy
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
-msgstr "Время"
+msgstr "Шкала времени"
#: tbl_chart.php:155
msgid "Stacked"
@@ -12222,39 +12223,27 @@ msgstr "Таблица %1$s была создана."
msgid "View dump (schema) of table"
msgstr "Отобразить дамп (схему) таблицы"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "Визуализация GIS данных"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Ширина"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Высота"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Название столбца"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Пусто --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Пространственный столбец"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Пересоздать"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Сохранить в файл"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Имя файла"
@@ -13822,6 +13811,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert установлен в 0"
+#~ msgid "Width"
+#~ msgstr "Ширина"
+
+#~ msgid "Height"
+#~ msgstr "Высота"
+
+#~ msgid "Save to file"
+#~ msgstr "Сохранить в файл"
+
#~ msgid "Total count"
#~ msgstr "Общее количество"
diff --git a/po/si.po b/po/si.po
index 5a20c94cc9..dbdca9353a 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2012-12-27 18:39+0200\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-20 17:30+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: Sinhala \n"
@@ -532,7 +532,7 @@ msgstr "වැරදි අපනයන වර්ගයකි"
msgid "Value for the column \"%s\""
msgstr "\"%s\" තීරය සඳහා අගයන්"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "මූලික ස්ථරය ලෙස OpenStreetMaps භාවිතා කරන්න"
@@ -727,7 +727,7 @@ msgid "Database server"
msgstr "දත්තගබඩා සේවාදායකය"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "සේවාදායකය"
@@ -1721,7 +1721,7 @@ msgstr "%d වලංගු පේළි අංකයක් නොවේ."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "සුරකින්න"
@@ -2749,9 +2749,8 @@ msgid "Packed"
msgstr "අහුරන ලද"
#: libraries/Index.class.php:566 tbl_tracking.php:386
-#, fuzzy
msgid "Cardinality"
-msgstr "Cardinality"
+msgstr "අනේකත්වය"
#: libraries/Index.class.php:567 libraries/TableSearch.class.php:185
#: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:130
@@ -3746,61 +3745,61 @@ msgstr ""%s" දත්තගබඩාව සඳහා වරප්
msgid "Check Privileges"
msgstr "වරප්රසාද පරීක්ෂා කරන්න"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "වින්යාස ගොනුව කියවීමට අසමත් විය"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr "මෙහි සාමාන්ය අරුත වාක්ය වින්යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] සඳහා අගය ඔබගේ වින්යාස ගොනුවේ අඩංගු විය යුතුමය!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "අවලංගු සේවාදායක සුචිය: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්යාසයන් පරීකෂා කර බැලිය යුතුය."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "වින්යසයන්හි වලංගු නැති සත්යාපන ක්රමයක් සිටුවා ඇත:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "දෝෂය: ටෝකන නොගැලපීම"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "විය හැකි අයුතු ප්රයෝජන ගැනීමක්"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "සංඛ්යාත්මක යතුරක් අනාවරණය වුණි"
@@ -4241,7 +4240,7 @@ msgid "Character set of the file"
msgstr "ගොනුවේ අක්ෂර කට්ටලය"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "ආකෘතිය"
@@ -5187,14 +5186,11 @@ msgid "Missing phpMyAdmin configuration storage tables"
msgstr "phpMyAdmin වින්යාස ගබඩාවේ අඩු වගු"
#: libraries/config/messages.inc.php:334
-#, fuzzy
-#| msgid ""
-#| "Disable the default warning that is displayed if mcrypt is missing for "
-#| "cookie authentication"
msgid ""
"Disable the default warning that is displayed if a difference between the "
"MySQL library and server is detected"
-msgstr "කුකී සත්යාපනය සඳහා අවශ්ය mcrypt නොමැති අවස්ථාවකදී පෙන්වන අනතුරු ඇඟවීම අක්රීය කරන්න"
+msgstr ""
+"MySQL පුස්තකාලය සහ සේවාදායකය අතර වෙනසක් හඳුනාගත් විට පෙන්වන අනතුරු ඇඟවීම අක්රීය කරන්න"
#: libraries/config/messages.inc.php:335
msgid "Server/library difference warning"
@@ -5349,31 +5345,24 @@ msgid "Authentication type"
msgstr "සත්යාපන වර්ගය"
#: libraries/config/messages.inc.php:374
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
-#| "a] support, suggested: [kbd]pma_bookmark[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/bookmark]පොත්සලකුණු[/a] විශේෂාංගය අනවශ්ය නම් හිස්ව "
-"තබන්න. යෝජිත: [kbd]pma_bookmark[/kbd]"
+"තබන්න. යෝජිත: [kbd]pma__bookmark[/kbd]"
#: libraries/config/messages.inc.php:375
msgid "Bookmark table"
msgstr "පොත්සලකුණු ගොනුව"
#: libraries/config/messages.inc.php:376
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no column comments/mime types, suggested: [kbd]"
-#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
-"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma_column_info[/kbd]"
+"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__column_info[/"
+"kbd]"
#: libraries/config/messages.inc.php:377
msgid "Column information table"
@@ -5432,15 +5421,11 @@ msgid "Count tables"
msgstr "වගු ගණන් කරන්න"
#: libraries/config/messages.inc.php:389
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
-#| "kbd]"
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
-"සැලසුම්කරණය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_designer_coords[/kbd]"
+"සැලසුම්කරණය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:390
msgid "Designer table"
@@ -5473,16 +5458,12 @@ msgid "Hide databases"
msgstr "දත්තගබඩා සඟවන්න"
#: libraries/config/messages.inc.php:397
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
-#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
-"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_history"
-"[/kbd]"
+"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
+"pma__history[/kbd]"
#: libraries/config/messages.inc.php:398
msgid "SQL query history table"
@@ -5540,14 +5521,11 @@ msgid "Password for config auth"
msgstr "config සත්යාපනය සඳහා මුරපදය"
#: libraries/config/messages.inc.php:410
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
-"pma_pdf_pages[/kbd]"
+"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:411
msgid "PDF schema: pages table"
@@ -5576,32 +5554,24 @@ msgid "Server port"
msgstr "සර්වරයේ පොර්ට්"
#: libraries/config/messages.inc.php:416
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no \"persistent\" recently used tables across sessions, "
-#| "suggested: [kbd]pma_recent[/kbd]"
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]"
msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස මෑතදී භාවිතා කල වගු මතක තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව "
-"තබන්න, යෝජිත: [kbd]pma_recent[/kbd]"
+"තබන්න, යෝජිත: [kbd]pma__recent[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "Recently used table"
msgstr "මෑතදී භාවිතා වූ වගුව"
#: libraries/config/messages.inc.php:418
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
-#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] "
-"විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_relation[/kbd]"
+"විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Relation table"
@@ -5648,48 +5618,36 @@ msgid "Use SSL"
msgstr "SSL භාවිතා කරන්න"
#: libraries/config/messages.inc.php:429
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
-#| "kbd]"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"ක්රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
-"pma_table_coords[/kbd]"
+"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:430
msgid "PDF schema: table coordinates"
msgstr "PDF ක්රමානුරූපය: වගු ඛණ්ඩාංක"
#: libraries/config/messages.inc.php:431
-#, fuzzy
-#| msgid ""
-#| "Table to describe the display columns, leave blank for no support; "
-#| "suggested: [kbd]pma_table_info[/kbd]"
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: [kbd]"
-"pma_table_info[/kbd]"
+"pma__table_info[/kbd]"
#: libraries/config/messages.inc.php:432
msgid "Display columns table"
msgstr "පෙන්විය යුතු තීර පිළිබඳ දත්ත ඇතුලත් වගුව"
#: libraries/config/messages.inc.php:433
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no \"persistent\" tables'UI preferences across sessions, "
-#| "suggested: [kbd]pma_table_uiprefs[/kbd]"
msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"සැසි අතර \"කල් පවත්නා\" ලෙස වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි තබාගැනීමේ විශේෂාංගය අනවශ්ය නම් "
-"හිස්ව තබන්න, යෝජිත: [kbd]pma_table_uiprefs[/kbd]"
+"හිස්ව තබන්න, යෝජිත: [kbd]pma__table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:434
msgid "UI preferences table"
@@ -5738,15 +5696,11 @@ msgid "Statements to track"
msgstr "අවධානය සක්රීය කල යුතු ප්රකාශ"
#: libraries/config/messages.inc.php:443
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
-#| "pma_tracking[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
-"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma_tracking[/kbd]"
+"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:444
msgid "SQL query tracking table"
@@ -5763,16 +5717,12 @@ msgid "Automatically create versions"
msgstr "ස්වයංක්රියව අනුවාද සාදන්න"
#: libraries/config/messages.inc.php:447
-#, fuzzy
-#| msgid ""
-#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
-#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්ය නම් හිස්ව තබන්න; යෝජිත: "
-"[kbd]pma_userconfig[/kbd]"
+"[kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:448
msgid "User preferences storage table"
@@ -6597,9 +6547,8 @@ msgid ""
msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ගත කිරීමට InnoDB භාවිතා කරන මතක බෆරයේ ප්රමාණය."
#: libraries/engines/innodb.lib.php:143
-#, fuzzy
msgid "Buffer Pool"
-msgstr "Buffer Pool"
+msgstr "අන්තරාච එකතුව"
#: libraries/engines/innodb.lib.php:166
msgid "Buffer Pool Usage"
@@ -6646,14 +6595,12 @@ msgid "Write requests"
msgstr "ලිවීම සඳහා වූ ඉල්ලීම්"
#: libraries/engines/innodb.lib.php:266
-#, fuzzy
msgid "Read misses"
-msgstr "Read misses"
+msgstr "කියවීම් අතෑරුම්"
#: libraries/engines/innodb.lib.php:274
-#, fuzzy
msgid "Write waits"
-msgstr "Write waits"
+msgstr "ලිවීම් ප්රමාද"
#: libraries/engines/innodb.lib.php:282
msgid "Read misses in %"
@@ -7249,23 +7196,17 @@ msgstr[0] ""
msgstr[1] ""
#: libraries/navigation/NavigationTree.class.php:1027
-#, fuzzy
-#| msgid "Filter databases by name"
msgid "filter databases by name"
msgstr "දත්තගබඩා නමින් පෙරහන්න"
#: libraries/navigation/NavigationTree.class.php:1028
#: libraries/navigation/NavigationTree.class.php:1054
-#, fuzzy
-#| msgid "Clear series"
msgid "Clear Fast Filter"
-msgstr "ශ්රේණිය ඉවත් කරන්න"
+msgstr "පෙරහන ප්රත්යාරම්භ කරන්න"
#: libraries/navigation/NavigationTree.class.php:1053
-#, fuzzy
-#| msgid "Filter tables by name"
msgid "filter items by name"
-msgstr "වගු නමින් පෙරහන්න"
+msgstr "අයිතම නමින් පෙරහන්න"
#. l10n: The word "Node" must not be translated here
#: libraries/navigation/NodeFactory.class.php:41
@@ -7284,18 +7225,14 @@ msgid "Columns"
msgstr "තීර"
#: libraries/navigation/Nodes/Node_Column_Container.class.php:38
-#, fuzzy
-#| msgid "New"
msgctxt "Create new column"
msgid "New"
-msgstr "නව"
+msgstr "නව තීරයක්"
#: libraries/navigation/Nodes/Node_Event_Container.class.php:36
-#, fuzzy
-#| msgid "New"
msgctxt "Create new event"
msgid "New"
-msgstr "නව"
+msgstr "නව සිද්ධියක්"
#: libraries/navigation/Nodes/Node_Function_Container.class.php:26
#: libraries/plugins/export/ExportSql.class.php:475
@@ -7304,46 +7241,36 @@ msgid "Functions"
msgstr "ශ්රිත"
#: libraries/navigation/Nodes/Node_Function_Container.class.php:36
-#, fuzzy
-#| msgid "New"
msgctxt "Create new function"
msgid "New"
-msgstr "නව"
+msgstr "නව ශ්රිතයක්"
#: libraries/navigation/Nodes/Node_Index_Container.class.php:38
-#, fuzzy
-#| msgid "New"
msgctxt "Create new index"
msgid "New"
-msgstr "නව"
+msgstr "නව සුචියක්"
#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:26
#: libraries/plugins/export/ExportSql.class.php:458
#: libraries/plugins/export/ExportXml.class.php:111
msgid "Procedures"
-msgstr "ක්රියාපටිපාටිය"
+msgstr "ක්රියාපටිපාටි"
#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36
#: libraries/rte/rte_footer.lib.php:29
-#, fuzzy
-#| msgid "New"
msgctxt "Create new procedure"
msgid "New"
-msgstr "නව"
+msgstr "නව ක්රියාපටිපාටියක්"
#: libraries/navigation/Nodes/Node_Table_Container.class.php:40
-#, fuzzy
-#| msgid "New"
msgctxt "Create new table"
msgid "New"
-msgstr "නව"
+msgstr "නව වගුවක්"
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:36
-#, fuzzy
-#| msgid "New"
msgctxt "Create new trigger"
msgid "New"
-msgstr "නව"
+msgstr "නව ප්රේරකයක්"
#: libraries/navigation/Nodes/Node_View_Container.class.php:26
#: libraries/plugins/export/ExportXml.class.php:125
@@ -7351,11 +7278,9 @@ msgid "Views"
msgstr "දසුන්"
#: libraries/navigation/Nodes/Node_View_Container.class.php:36
-#, fuzzy
-#| msgid "New"
msgctxt "Create new view"
msgid "New"
-msgstr "නව"
+msgstr "නව දසුනක්"
#: libraries/operations.lib.php:75
msgid "Rename database to"
@@ -7863,10 +7788,8 @@ msgstr ""
"නාමයන් ආරක්ෂා කරයි)"
#: libraries/plugins/export/ExportSql.class.php:295
-#, fuzzy
-#| msgid "Object creation options"
msgid "Data creation options"
-msgstr "වස්තු නිර්මාණය කිරීමේ විකල්ප"
+msgstr "දත්ත සෑදීමේ විකල්ප"
#: libraries/plugins/export/ExportSql.class.php:299
#: libraries/plugins/export/ExportSql.class.php:1649
@@ -9257,11 +9180,9 @@ msgid "User has been added."
msgstr "භාවිතා කරන්නා එක් කරන ලදි."
#: libraries/server_privileges.lib.php:1625
-#, fuzzy
-#| msgid "New"
msgctxt "Create new user"
msgid "New"
-msgstr "නව"
+msgstr "නව භාවිතා කරන්නෙක්"
#: libraries/server_privileges.lib.php:1681
#: libraries/server_privileges.lib.php:1847
@@ -9827,7 +9748,7 @@ msgid "Error in ZIP archive:"
msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11330,6 +11251,7 @@ msgid "Global value"
msgstr "ගෝලීය අගය"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "බාගත කරන්න"
@@ -11627,10 +11549,8 @@ msgid "Using bookmark \"%s\" as default browse query."
msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්."
#: sql.php:381
-#, fuzzy
-#| msgid "Bookmark %s created"
msgid "Bookmark not created"
-msgstr "%s පොත් සලකුණ සාදන ලදි"
+msgstr "පොත් සලකුණ නොසාදන ලදි"
#: sql.php:914
msgid "Showing as PHP code"
@@ -11658,10 +11578,8 @@ msgid "Label"
msgstr "ලේබලය"
#: tbl_chart.php:43
-#, fuzzy
-#| msgid "No data found"
msgid "No data to display"
-msgstr "දත්ත කිසිවක් හමු නොවිණි"
+msgstr "පෙන්වීම සඳහා දත්ත නොමැත"
#: tbl_chart.php:132
msgctxt "Chart type"
@@ -11694,11 +11612,9 @@ msgid "Pie"
msgstr "වට"
#: tbl_chart.php:148
-#, fuzzy
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
-msgstr "කාලය"
+msgstr "කාලරාමු"
#: tbl_chart.php:155
msgid "Stacked"
@@ -11747,39 +11663,27 @@ msgstr "%1$s වගුව සාදන ලදි."
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "ජ්යාමිතික දත්ත නිරූපණය"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "පළල"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "උස"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "ලේබල තීරුව"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "- කිසිවක් නොමැත -"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "ජ්යාමිතික තීරුව"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "නැවත අඳින්න"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "ගොනුවකට සුරකින්න"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "ගොනුවේ නම"
@@ -11809,10 +11713,8 @@ msgid ""
msgstr "(\"PRIMARY\" නාමය ප්රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)"
#: tbl_indexes.php:227
-#, fuzzy
-#| msgid "Comment"
msgid "Comment:"
-msgstr "ටීකාව"
+msgstr "ටීකාව:"
#: tbl_indexes.php:239
msgid "Index type:"
@@ -12162,10 +12064,8 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:96
-#, fuzzy
-#| msgid "log_slow_queries is set to 'OFF'"
msgid "slow_query_log is set to 'OFF'"
-msgstr "log_slow_queries, 'OFF'(අක්රීය) වෙත පිහිටුවා ඇත"
+msgstr "slow_query_log, 'OFF'(අක්රීය) වෙත පිහිටුවා ඇත"
#: libraries/advisory_rules.txt:100
#, fuzzy
@@ -12361,10 +12261,8 @@ msgid "Query cache fragmentation"
msgstr "විමසුම් කෑෂ් ඛණ්ඩනීකරණය"
#: libraries/advisory_rules.txt:184
-#, fuzzy
-#| msgid "The query cache is not enabled."
msgid "The query cache is considerably fragmented."
-msgstr "විමසුම් කෑෂ් සක්රීය කර නැත."
+msgstr "විමසුම් කෑෂය භාගීකරණයට ලක්වී ඇත."
#: libraries/advisory_rules.txt:185
msgid ""
@@ -12393,12 +12291,10 @@ msgid "Query cache low memory prunes"
msgstr "භාවිතා කරන ලද විමසුම් කෑෂ්"
#: libraries/advisory_rules.txt:191
-#, fuzzy
-#| msgid "The amount of free memory for query cache."
msgid ""
"Cached queries are removed due to low query cache memory from the query "
"cache."
-msgstr "The amount of free memory for query cache."
+msgstr "අඩු විමසුම් කෑෂ් ධාරිතාව හේතුවෙන් කෑෂ්ගත කරන ලද විමසුම් කෑෂයෙන් ඉවත් කෙරෙයි."
#: libraries/advisory_rules.txt:192
msgid ""
@@ -12461,16 +12357,12 @@ msgid "query_cache_limit is set to 1 MiB"
msgstr ""
#: libraries/advisory_rules.txt:211
-#, fuzzy
-#| msgid "Allows creating temporary tables."
msgid "Percentage of sorts that cause temporary tables"
-msgstr "Allows creating temporary tables."
+msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ප්රතිශතයක් ලෙස"
#: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221
-#, fuzzy
-#| msgid "Allows creating temporary tables."
msgid "Too many sorts are causing temporary tables."
-msgstr "Allows creating temporary tables."
+msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ඉතා විශාල ගණනකි."
#: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222
msgid ""
@@ -12486,10 +12378,8 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:218
-#, fuzzy
-#| msgid "Allows creating temporary tables."
msgid "Rate of sorts that cause temporary tables"
-msgstr "Allows creating temporary tables."
+msgstr "තාවකාලික වගු සැදීමට සිදුවූ අනුපිළිවෙල සැකසීම් ගණන"
#: libraries/advisory_rules.txt:223
#, fuzzy, php-format
@@ -13200,6 +13090,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ශුන්යයට සිටුවා ඇත"
+#~ msgid "Width"
+#~ msgstr "පළල"
+
+#~ msgid "Height"
+#~ msgstr "උස"
+
+#~ msgid "Save to file"
+#~ msgstr "ගොනුවකට සුරකින්න"
+
#~ msgid "Total count"
#~ msgstr "මුළු එකතුව"
diff --git a/po/sk.po b/po/sk.po
index 0110eebba1..2f1badd466 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-09 16:20+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Slovak \n"
"Language-Team: Slovenian \n"
"Language-Team: Albanian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3776,38 +3776,38 @@ msgstr ""
"Direktiva $cfg['PmaAbsoluteUri'] DUHET të përcaktohet tek file "
"i konfigurimit!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Duhet të instaloni %s %s ose superior."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4255,7 +4255,7 @@ msgid "Character set of the file"
msgstr "Familja gërmave të file:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Formati"
@@ -10034,7 +10034,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11562,6 +11562,7 @@ msgid "Global value"
msgstr "Vlerë Globale"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11986,45 +11987,31 @@ msgstr "Tabela %s u eleminua"
msgid "View dump (schema) of table"
msgstr "Shfaq dump (skema) e tabelës"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Shto/Fshi kollonat e fushës"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Gjithsej"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Ruaje me emër…"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13431,6 +13418,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Ruaje me emër…"
+
#~ msgid "Total count"
#~ msgstr "Gjithsej"
diff --git a/po/sr.po b/po/sr.po
index 06303404db..80057ed2af 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:37+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Serbian $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4063,39 +4063,39 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] директива МОРА бити подешена у "
"конфигурационој датотеци!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Неисправан индекс сервера: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Неисправан метод аутентикације је задат у конфигурацији:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4547,7 +4547,7 @@ msgid "Character set of the file"
msgstr "Карактер сет датотеке:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Формат"
@@ -10452,7 +10452,7 @@ msgid "Error in ZIP archive:"
msgstr "Грешка у ZIP архиви:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12099,6 +12099,7 @@ msgid "Global value"
msgstr "Глобална вредност"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12528,45 +12529,31 @@ msgstr "Табела %s је одбачена"
msgid "View dump (schema) of table"
msgstr "Прикажи садржај (схему) табеле"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Додај/обриши колону"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Укупно"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Сачувај као датотеку"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -14038,6 +14025,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "макс. истовремених веза"
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Сачувај као датотеку"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 57d14feb60..0ef01d50ef 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:37+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Serbian (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3797,38 +3797,38 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktiva MORA biti podešena u "
"konfiguracionoj datoteci!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Neispravan indeks servera: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "moguća zloupotreba"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "otkriven numerički ključ"
@@ -4276,7 +4276,7 @@ msgid "Character set of the file"
msgstr "Karakter set datoteke"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -9843,7 +9843,7 @@ msgid "Error in ZIP archive:"
msgstr "Greška u ZIP arhivi:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11411,6 +11411,7 @@ msgid "Global value"
msgstr "Globalna vrednost"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11816,39 +11817,27 @@ msgstr "Tabela %1$s je kreirana."
msgid "View dump (schema) of table"
msgstr "Prikaži sadržaj (shemu) tabele"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Označi kolonu"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Prostorna kolona"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Sačuvaj u datoteku"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Naziv datoteke"
@@ -13224,6 +13213,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je postavljeno na 0"
+#~ msgid "Save to file"
+#~ msgstr "Sačuvaj u datoteku"
+
#~ msgid "Total count"
#~ msgstr "Ukupan broj"
diff --git a/po/sv.po b/po/sv.po
index b9a22e3459..84e6b28b92 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-15 00:03+0200\n"
"Last-Translator: ProUser \n"
"Language-Team: Swedish \n"
"Language-Team: Tamil \n"
@@ -538,7 +538,7 @@ msgstr "சுட்டு வகை"
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -731,7 +731,7 @@ msgid "Database server"
msgstr "தரவுத்தளங்கள்"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "சேவையன்"
@@ -1735,7 +1735,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "சேமி"
@@ -3747,59 +3747,59 @@ msgstr ""
msgid "Check Privileges"
msgstr ""
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4226,7 +4226,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr ""
@@ -9630,7 +9630,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11091,6 +11091,7 @@ msgid "Global value"
msgstr "முழுதளாவிய மதிப்பு"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "பதிவிறக்கம்"
@@ -11504,43 +11505,31 @@ msgstr "அட்டவணை %1$s உருவாக்கபட்டது."
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "அகலம்"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "உயரம்"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- எதுவுமில்லை --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Spatial column"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "கோப்பை சேமி"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "கோப்பின் பெயர்"
@@ -12917,6 +12906,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Width"
+#~ msgstr "அகலம்"
+
+#~ msgid "Height"
+#~ msgstr "உயரம்"
+
+#~ msgid "Save to file"
+#~ msgstr "கோப்பை சேமி"
+
#~ msgid "Total count"
#~ msgstr "மொத்தம் எண்ணல்"
diff --git a/po/te.po b/po/te.po
index 4b5bddfc6a..4815c7b264 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-06 12:16+0200\n"
"Last-Translator: వీవెన్ \n"
"Language-Team: Telugu \n"
"Language-Team: Thai \n"
@@ -525,7 +525,7 @@ msgstr "ประเภทที่ส่งออกไม่ถูกต้อ
msgid "Value for the column \"%s\""
msgstr "ค่าสำหรับคอลัมน์ \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "ใช้ OpenStreetMaps เป็นชั้นพื้นฐาน"
@@ -717,7 +717,7 @@ msgid "Database server"
msgstr "เซิร์ฟเวอร์ฐานข้อมูล"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "เซิร์ฟเวอร์"
@@ -1707,7 +1707,7 @@ msgstr "%d ไม่ใช่หมายเลขแถวที่ถูก
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "บันทึก"
@@ -3763,22 +3763,22 @@ msgstr "ตรวจสอบสิทธิสำหรับฐานข้อ
msgid "Check Privileges"
msgstr "ตรวจสอบสิทธิ"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "ไม่สามารถอ่านแฟ้มการตั้งค่าได้"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3789,38 +3789,38 @@ msgid ""
msgstr ""
"ต้องกำหนดค่า $cfg['PmaAbsoluteUri'] ในไฟล์คอนฟิกูเรชั่นเสียก่อน"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "ลำดับเซิฟเวอร์ไม่ถูกต้อง: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Hostname ไม่ถูกต้องสำหรับเซิฟเวอร์ %1$s กรุณาตรวจสอบการตั้งค่าของคุณ"
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "ใช้ประโยชน์ได้"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "ตรวจพบคีย์ตัวเลข"
@@ -4267,7 +4267,7 @@ msgid "Character set of the file"
msgstr "ชุดอักขระของไฟล์ (character set):"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "รูปแบบ"
@@ -9965,7 +9965,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11490,6 +11490,7 @@ msgid "Global value"
msgstr "ค่าแบบโกลบอล"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11913,43 +11914,31 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ
msgid "View dump (schema) of table"
msgstr "ดูโครงสร้างของตาราง"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "รวม"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "บันทึกลงเป็นไฟล์"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "User name"
msgid "File name"
@@ -13425,6 +13414,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
+#~ msgid "Save to file"
+#~ msgstr "บันทึกลงเป็นไฟล์"
+
#~ msgid "Total count"
#~ msgstr "จำนวนรวม"
diff --git a/po/tk.po b/po/tk.po
index 2938abd6f1..ede027982c 100644
--- a/po/tk.po
+++ b/po/tk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-03-23 10:42+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Turkmen \n"
@@ -535,7 +535,7 @@ msgstr ""
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -719,7 +719,7 @@ msgid "Database server"
msgstr ""
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr ""
@@ -1677,7 +1677,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr ""
@@ -3642,59 +3642,59 @@ msgstr ""
msgid "Check Privileges"
msgstr ""
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4117,7 +4117,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr ""
@@ -9443,7 +9443,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10890,6 +10890,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11289,39 +11290,27 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr ""
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr ""
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr ""
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 3d332da49c..f6a8e66ec7 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2013-01-18 19:20+0200\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-21 07:01+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: Turkish "
"\n"
@@ -533,7 +533,7 @@ msgstr "Geçersiz dışa aktarma türü"
msgid "Value for the column \"%s\""
msgstr "\"%s\" sütunu için değer"
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Taban Katman olarak OpenStreetMaps kullan"
@@ -733,7 +733,7 @@ msgid "Database server"
msgstr "Veritabanı sunucusu"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Sunucu"
@@ -1747,7 +1747,7 @@ msgstr "%d geçerli bir satır sayısı değil."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Kaydet"
@@ -3803,11 +3803,11 @@ msgstr ""%s" veritabanı için yetkileri kontrol et."
msgid "Check Privileges"
msgstr "Yetkileri kontrol et"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
msgid "Failed to read configuration file"
msgstr "Yapılandırma dosyasını okuma başarısız"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3815,12 +3815,12 @@ msgstr ""
"Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda "
"gösterilen her hatayı kontrol edin."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3828,40 +3828,40 @@ msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] talimatı yapılandırma dosyanız içinde "
"AYARLANMAK zorundadır!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Geçersiz sunucu indeksi: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden "
"geçirin."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s veya sonrasına yükseltmelisiniz."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr "Hata: Belirti uyuşmazlığı"
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS üzerine yazma girişimi"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "olası kötüye kullanma"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "sayısal tuş algılandı"
@@ -4310,7 +4310,7 @@ msgid "Character set of the file"
msgstr "Dosyanın karakter grubu"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Biçim"
@@ -10046,8 +10046,9 @@ msgid "Error in ZIP archive:"
msgstr "ZIP arşivinde hata:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
-msgstr "Önemli hata: Rehbere sadece ajax aracılığıyla erişilebilir"
+#| msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
+msgstr "Önemli hata: Rehbere sadece AJAX aracılığıyla erişilebilir"
#: pmd_display_field.php:60 pmd_save_pos.php:81
msgid "Modifications have been saved"
@@ -11680,6 +11681,7 @@ msgid "Global value"
msgstr "Genel değer"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "İndir"
@@ -12083,7 +12085,6 @@ msgid "Pie"
msgstr "Dilim"
#: tbl_chart.php:148
-#| msgid "Time"
msgctxt "Chart type"
msgid "Timeline"
msgstr "Zaman çizelgesi"
@@ -12135,39 +12136,27 @@ 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:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "GIS görselleştirmesini görüntüle"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "Genişlik"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "Yükseklik"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "Etiket sütunu"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- Yok --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "Uzaysal sütun"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "Yeniden Çiz"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "Dosyaya kaydet"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "Dosya adı"
@@ -13694,6 +13683,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 0'a ayarlı"
+#~ msgid "Width"
+#~ msgstr "Genişlik"
+
+#~ msgid "Height"
+#~ msgstr "Yükseklik"
+
+#~ msgid "Save to file"
+#~ msgstr "Dosyaya kaydet"
+
#~ msgid "Total count"
#~ msgstr "Toplam sayı"
diff --git a/po/tt.po b/po/tt.po
index 944f43653c..b05564bf2e 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-09-05 10:32+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Tatar \n"
@@ -554,7 +554,7 @@ msgstr "Çığaru ısulı"
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -757,7 +757,7 @@ msgid "Database server"
msgstr "Qullanuçı biremlege"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Server"
@@ -1866,7 +1866,7 @@ msgstr "%d digäne yazma sanı öçen kileşmi."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Saqla"
@@ -4001,63 +4001,63 @@ msgstr "\"%s\" biremlege öçen xoquqlar tikşerü."
msgid "Check Privileges"
msgstr "Xoquqlar tikşerü"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4509,7 +4509,7 @@ msgid "Character set of the file"
msgstr "Şul biremneñ bilgelämäse:"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Tözeleş"
@@ -10336,7 +10336,7 @@ msgid "Error in ZIP archive:"
msgstr "ZIP-tuplama eçendä xata:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11884,6 +11884,7 @@ msgid "Global value"
msgstr "Töp bäyä"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12313,45 +12314,31 @@ 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:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "Add/Delete Field Columns"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Tulayım"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Biremgä saqlıysı"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
msgid "File name"
msgstr "tüşämä adı"
@@ -13800,6 +13787,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Biremgä saqlıysı"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/ug.po b/po/ug.po
index a2b6800a07..c37c148100 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-05 10:16+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uighur $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3919,38 +3919,38 @@ msgid ""
"configuration file!"
msgstr "$cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4381,7 +4381,7 @@ msgid "Character set of the file"
msgstr ""
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "فورماتلاش"
@@ -9958,7 +9958,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11456,6 +11456,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11876,45 +11877,31 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Label column"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "ھۆججەتنى باشقا ساقلاش"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Keyname"
msgid "File name"
@@ -13345,6 +13332,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "ھۆججەتنى باشقا ساقلاش"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/uk.po b/po/uk.po
index c0acaf4ccb..50c8826d7b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,17 +3,17 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
-"PO-Revision-Date: 2012-12-13 13:03+0200\n"
-"Last-Translator: Michal Čihař \n"
-"Language-Team: Ukrainian \n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
+"PO-Revision-Date: 2013-01-21 18:09+0200\n"
+"Last-Translator: Andrey Prokopenko \n"
+"Language-Team: Ukrainian "
+"\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.4-dev\n"
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:344
@@ -89,7 +89,7 @@ msgstr "Вперед"
#: browse_foreigners.php:181 browse_foreigners.php:185
#: libraries/Index.class.php:561 tbl_tracking.php:381
msgid "Keyname"
-msgstr "Ім'я ключа"
+msgstr "Назва ключа"
#: browse_foreigners.php:182 browse_foreigners.php:184
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
@@ -284,7 +284,7 @@ msgstr "В БД не виявлено таблиць."
#: db_export.php:40 libraries/DbSearch.class.php:437 server_export.php:25
msgid "Select All"
-msgstr "Відмітити все"
+msgstr "Вибрати всі"
#: db_export.php:45 libraries/DbSearch.class.php:440 server_export.php:30
msgid "Unselect All"
@@ -295,16 +295,14 @@ msgid "The database name is empty!"
msgstr "Ім'я бази даних порожнє!"
#: db_operations.php:129
-#, fuzzy, php-format
-#| msgid "Database %s has been renamed to %s"
+#, php-format
msgid "Database %1$s has been renamed to %2$s"
-msgstr "Базу даних %s перейменовано в %s"
+msgstr "Базу даних %1$s було перейменовано в %2$s"
#: db_operations.php:133
-#, fuzzy, php-format
-#| msgid "Database %s has been copied to %s"
+#, php-format
msgid "Database %1$s has been copied to %2$s"
-msgstr "Базу даних %s скопійовано в %s"
+msgstr "Базу даних %1$s було скопійовано до %2$s"
#: db_operations.php:259
#, php-format
@@ -366,7 +364,7 @@ msgstr "Останнє оновлення"
#: libraries/structure.lib.php:812 libraries/structure.lib.php:1792
#: tbl_printview.php:432
msgid "Last check"
-msgstr "Перевірено"
+msgstr "Остання перевірка"
#: db_printview.php:220 libraries/structure.lib.php:176
#, php-format
@@ -395,7 +393,7 @@ msgstr "Доступ заборонено"
#: db_structure.php:86
msgid "No tables found in database"
-msgstr "В БД не виявлено таблиць."
+msgstr "Немає таблиць у базі даних"
#: db_tracking.php:73
msgid "Tracked tables"
@@ -415,7 +413,7 @@ msgstr "Відслідковувані таблиці"
#: libraries/server_privileges.lib.php:2865 server_databases.php:201
#: server_status.php:325 sql.php:1089 tbl_tracking.php:761
msgid "Database"
-msgstr "БД"
+msgstr "База даних"
#: db_tracking.php:80
msgid "Last version"
@@ -433,7 +431,7 @@ msgstr "Оновлено"
#: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78
#: server_status.php:337 sql.php:1160 tbl_tracking.php:766
msgid "Status"
-msgstr "Статус"
+msgstr "Стан"
#: db_tracking.php:84 libraries/Index.class.php:559
#: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67
@@ -452,7 +450,7 @@ msgstr "Показати"
#: db_tracking.php:97 js/messages.php:34
msgid "Delete tracking data for this table"
-msgstr "Видалити дані спостереження для цієї таблиці"
+msgstr "Видалити дані відстеження для цієї таблиці"
#: db_tracking.php:103 libraries/Index.class.php:623
#: libraries/Util.class.php:3493 libraries/Util.class.php:3494
@@ -486,7 +484,7 @@ msgstr "Знімок структури"
#: db_tracking.php:193
msgid "Untracked tables"
-msgstr "Невідслідковувані таблиці"
+msgstr "Невідстежувані таблиці"
#: db_tracking.php:212 libraries/structure.lib.php:1515
msgid "Track table"
@@ -502,7 +500,7 @@ msgstr "Невірний тип!"
#: export.php:93
msgid "Selected export type has to be saved in file!"
-msgstr "Обранний тип експорту збережений в файл!"
+msgstr "Обраний тип експорту збережений в файл!"
#: export.php:122
msgid "Bad parameters!"
@@ -540,7 +538,7 @@ msgstr "Невірний тип експорту"
msgid "Value for the column \"%s\""
msgstr "Значення для стовпчика \"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr "Використовуйте OpenStreetMaps як базовий пласт"
@@ -581,7 +579,7 @@ msgstr "Додати точку"
#: gis_data_editor.php:262 js/messages.php:313
msgid "Linestring"
-msgstr "Linestring"
+msgstr "Відрізок"
#: gis_data_editor.php:265 gis_data_editor.php:341 js/messages.php:317
msgid "Outer Ring"
@@ -593,7 +591,7 @@ msgstr "Внутрішнє кільце"
#: gis_data_editor.php:303
msgid "Add a linestring"
-msgstr "Додати linestring"
+msgstr "Додати відрізок"
#: gis_data_editor.php:304 gis_data_editor.php:378 js/messages.php:319
msgid "Add an inner ring"
@@ -699,7 +697,7 @@ msgid ""
"Script timeout passed, if you want to finish import, please resubmit same "
"file and import will resume."
msgstr ""
-"Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити "
+"Досягнуто часове обмеження виконання скрипту, якщо Ви бажаєте закінчити "
"імпорт, необхідно повторно відправити той самий файл."
#: import.php:532
@@ -724,10 +722,8 @@ msgid "Back"
msgstr "Назад"
#: index.php:114
-#, fuzzy
-#| msgid "General relation features"
msgid "General Settings"
-msgstr "Загальні можливості"
+msgstr "Загальні налаштування"
#: index.php:140 libraries/display_change_password.lib.php:46
#: user_password.php:234
@@ -735,46 +731,38 @@ msgid "Change password"
msgstr "Змінити пароль"
#: index.php:155
-#, fuzzy
-#| msgid "Server configuration"
msgid "Server connection collation"
msgstr "Конфігурація сервера"
#: index.php:181
msgid "Appearance Settings"
-msgstr ""
+msgstr "Налаштування вигляду"
#: index.php:210 prefs_manage.php:275
-#, fuzzy
-#| msgid "General relation features"
msgid "More settings"
-msgstr "Загальні можливості"
+msgstr "Додаткові налаштування"
#: index.php:227
-#, fuzzy
-#| msgid "Databases"
msgid "Database server"
-msgstr "Бази Даних"
+msgstr "Сервер бази даних"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Сервер"
#: index.php:234
msgid "Software"
-msgstr ""
+msgstr "Програмне забезпечення"
#: index.php:238
-#, fuzzy
-#| msgid "Server version"
msgid "Software version"
-msgstr "Версія сервера"
+msgstr "Версія програмного забезпечення"
#: index.php:242
msgid "Protocol version"
-msgstr ""
+msgstr "Версія протоколу"
#: index.php:246 libraries/server_privileges.lib.php:1578
#: libraries/server_privileges.lib.php:2389
@@ -784,24 +772,20 @@ msgid "User"
msgstr "Користувач"
#: index.php:251
-#, fuzzy
-#| msgid "Remove database"
msgid "Server charset"
-msgstr "Видалити базу даних"
+msgstr "Кодування символів серверу"
#: index.php:263
msgid "Web server"
-msgstr ""
+msgstr "Веб-сервер"
#: index.php:276
-#, fuzzy
-#| msgid "Database comment: "
msgid "Database client version"
-msgstr "Коментар бази даних: "
+msgstr "Версія клієнту бази даних"
#: index.php:280
msgid "PHP extension"
-msgstr ""
+msgstr "PHP розширення"
#: index.php:294
msgid "Show PHP information"
@@ -809,7 +793,7 @@ msgstr "Показати інформацію про PHP"
#: index.php:317 libraries/engines/bdb.lib.php:25
msgid "Version information"
-msgstr ""
+msgstr "Відомості про версію"
#: index.php:326 libraries/Util.class.php:430 libraries/Util.class.php:516
#: libraries/config/FormDisplay.tpl.php:147
@@ -828,20 +812,16 @@ msgid "Official Homepage"
msgstr "Офіційна сторінка phpMyAdmin"
#: index.php:349
-#, fuzzy
-#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибути"
#: index.php:356
msgid "Get support"
-msgstr ""
+msgstr "Отримати підтримку"
#: index.php:363
-#, fuzzy
-#| msgid "No change"
msgid "List of changes"
-msgstr "Змін немає"
+msgstr "Перелік змін"
#: index.php:386
msgid ""
@@ -861,6 +841,8 @@ msgid ""
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
+"У конфігурації PHP увімкнено mbstring.func_overload. Цей параметр є "
+"несумісним з phpMyAdmin і може викликати пошкодження деяких даних!"
#: index.php:408
msgid ""
@@ -868,6 +850,10 @@ msgid ""
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
+"Pозширення PHP mbstring не знайдено, і схоже на те, що використовуються "
+"багатобайтові символи. Без розширення mbstring phpMyAdmin не зможе правильно "
+"виконати поділ текстових рядків, і це може призвести до неочікуваних "
+"результатів."
#: index.php:419
msgid ""
@@ -876,12 +862,19 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login will "
"expire sooner than configured in phpMyAdmin."
msgstr ""
+"Параметр PHP [a@http://php.net/manual/en/session.configuration.php#ini."
+"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] менший, ніж термін "
+"придатності cookie налаштованого в phpMyAdmin, і через це термін дії вашого "
+"логіну закінчується раніше, ніж це налаштовано в phpMyAdmin."
#: index.php:431
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
+"Параметр збереження куків логін менший терміну дії куків, що налаштований в "
+"phpMyAdmin, і через це термін дії вашого логіну закінчується раніше терміну, "
+"налаштованого в phpMyAdmin."
#: index.php:443
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
@@ -893,6 +886,9 @@ msgid ""
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
+"Каталог [code]config[/code], який використовується сценарій установки, все "
+"ще існує в каталозі phpMyAdmin. Якщо phpMyAdmin вже налаштовано, його "
+"необхідно видалити."
#: index.php:464
#, fuzzy, php-format
@@ -912,6 +908,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
+"Версія бібліотеки PHP MySQL %s відрізняється від версії сервера MySQL %s. Це "
+"може спричинити непередбачувані наслідки."
#: index.php:519
#, php-format
@@ -919,16 +917,17 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
+"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до "
+"%sdocumentation%s."
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:337
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Оператори \"DROP DATABASE\" заборонені."
#: js/messages.php:30
-#, fuzzy, php-format
-#| msgid "Do you really want to "
+#, php-format
msgid "Do you really want to execute \"%s\"?"
-msgstr "Ви насправді хочете "
+msgstr "Ви дійсно бажаєте виконати \"%s\"?"
#: js/messages.php:31 libraries/mult_submits.inc.php:314 sql.php:459
msgid "You are about to DESTROY a complete database!"
@@ -944,7 +943,7 @@ msgstr "Ви збираєтесь здійснити ОБРІЗКУ таблиц
#: js/messages.php:35
msgid "Deleting tracking data"
-msgstr "Видалення даних трекінгу"
+msgstr "Видалення даних відстеження"
#: js/messages.php:36
msgid "Dropping Primary Key/Index"
@@ -971,17 +970,14 @@ msgid "Edit Index"
msgstr "Редагувати Індекс"
#: js/messages.php:44 tbl_indexes.php:339 tbl_indexes.php:347
-#, fuzzy, php-format
-#| msgid "Add %d column(s) to index"
+#, php-format
msgid "Add %s column(s) to index"
-msgstr "Додати %d стовпчик(ів) до індексу"
+msgstr "Додати до індексу %s стовпчик(ів)"
#. l10n: Default label for the y-Axis of Charts
#: js/messages.php:48 tbl_chart.php:217
-#, fuzzy
-#| msgid "Value"
msgid "Y Values"
-msgstr "Значення"
+msgstr "Значення y"
#: js/messages.php:51
msgid "The host name is empty!"
@@ -1101,7 +1097,7 @@ msgstr "Використання кешу запитів"
#: js/messages.php:84
msgid "Query cache used"
-msgstr "Використанний кеш запитів"
+msgstr "Використано кеш запитів"
#: js/messages.php:86
msgid "System CPU Usage"
@@ -1129,7 +1125,7 @@ msgstr "Пам'яті кешовано"
#: js/messages.php:93
msgid "Buffered memory"
-msgstr "Пам'яті буферезовано"
+msgstr "Пам'яті буферизовано"
#: js/messages.php:94
msgid "Free memory"
@@ -1196,17 +1192,17 @@ msgstr "ГБ"
#. l10n: shortcuts for Terabyte
#: js/messages.php:112 libraries/Util.class.php:1464
msgid "TiB"
-msgstr "TB"
+msgstr "ТБ"
#. l10n: shortcuts for Petabyte
#: js/messages.php:113 libraries/Util.class.php:1466
msgid "PiB"
-msgstr "PB"
+msgstr "ПБ"
#. l10n: shortcuts for Exabyte
#: js/messages.php:114 libraries/Util.class.php:1468
msgid "EiB"
-msgstr "EB"
+msgstr "ЕБ"
#: js/messages.php:115
#, php-format
@@ -1216,7 +1212,7 @@ msgstr "%d таблиця(таблиць)"
#. l10n: Questions is the name of a MySQL Status variable
#: js/messages.php:118
msgid "Questions"
-msgstr "Questions"
+msgstr "Питання"
#: js/messages.php:119 server_status.php:136
msgid "Traffic"
@@ -1263,7 +1259,7 @@ msgstr "Призупинити монітор"
#: js/messages.php:130
msgid "general_log and slow_query_log are enabled."
-msgstr "general_log та slow_query_log ввімкнені"
+msgstr "general_log та slow_query_log ввімкнені."
#: js/messages.php:131
msgid "general_log is enabled."
@@ -1359,29 +1355,25 @@ msgid "Differential"
msgstr "Диференціальний"
#: js/messages.php:154
-#, fuzzy, php-format
-#| msgid "Divided by %s:"
+#, php-format
msgid "Divided by %s"
-msgstr "Розділено по %s:"
+msgstr "Розділено на %s"
#: js/messages.php:155
msgid "Unit"
msgstr "Модуль"
#: js/messages.php:157
-#, fuzzy
msgid "From slow log"
-msgstr "Із повільного журналу (slow log)"
+msgstr "З журналу повільних запитів (slow log)"
#: js/messages.php:158
msgid "From general log"
msgstr "Із загального журналу"
#: js/messages.php:159
-#, fuzzy
-#| msgid "Loading logs"
msgid "Analysing logs"
-msgstr "Журнал завантаження"
+msgstr "Аналіз журналів"
#: js/messages.php:160
msgid "Analysing & loading logs. This may take a while."
@@ -1419,10 +1411,8 @@ msgid "Jump to Log table"
msgstr "Перейти до таблиці Log"
#: js/messages.php:167
-#, fuzzy
-#| msgid "No databases"
msgid "No data found"
-msgstr "БД відсутні"
+msgstr "Даних не знайдено"
#: js/messages.php:168
msgid "Log analysed, but no data found in this time span."
@@ -1453,29 +1443,21 @@ msgid "Profiling results"
msgstr "Результати профілювання"
#: js/messages.php:176
-#, fuzzy
-#| msgid "Table"
msgctxt "Display format"
msgid "Table"
msgstr "Таблиця"
#: js/messages.php:177
-#, fuzzy
-#| msgid "Charset"
msgid "Chart"
-msgstr "Набір символів"
+msgstr "Графік"
#: js/messages.php:178
-#, fuzzy
-#| msgid "Add into comments"
msgid "Edit chart"
-msgstr "Додати коментар"
+msgstr "Редагувати графік"
#: js/messages.php:179
-#, fuzzy
-#| msgid "SQL queries"
msgid "Series"
-msgstr "SQL запити"
+msgstr "Серії"
#. l10n: A collection of available filters
#: js/messages.php:182
@@ -1526,14 +1508,12 @@ msgid "Reload page"
msgstr "Перезавантажити сторінку"
#: js/messages.php:195
-#, fuzzy
msgid "Affected rows:"
msgstr "Рядки що зазнали змін:"
#: js/messages.php:197
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
-msgstr ""
-"Невдале зчитування файлу конфігурації. Схоже що це не валідний JSON код."
+msgstr "Невдале зчитування файлу конфігурації. Схоже на неприпустимий JSON код."
#: js/messages.php:198
msgid ""
@@ -1551,16 +1531,12 @@ msgid "Import"
msgstr "Імпорт"
#: js/messages.php:200
-#, fuzzy
-#| msgid "Could not import configuration"
msgid "Import monitor configuration"
-msgstr "Не вдається імпортувати конфігурацію"
+msgstr "Імпорт налаштувань монітору"
#: js/messages.php:201
-#, fuzzy
-#| msgid "Please select the primary key or a unique key"
msgid "Please select the file you want to import"
-msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ"
+msgstr "Будь ласка, оберіть файл, який ви бажаєте імпортувати"
#: js/messages.php:203
msgid "Analyse Query"
@@ -1621,12 +1597,12 @@ msgstr "Помилка при обробці запиту"
#: js/messages.php:225
#, php-format
msgid "Error code: %s"
-msgstr ""
+msgstr "Код помилки: %s"
#: js/messages.php:226
#, php-format
msgid "Error text: %s"
-msgstr ""
+msgstr "Текст помилки: %s"
#: js/messages.php:227 libraries/db_common.inc.php:58
#: libraries/db_table_exists.lib.php:28 server_databases.php:89
@@ -1684,22 +1660,16 @@ msgid "Show indexes"
msgstr "Показати індекси"
#: js/messages.php:246 libraries/mult_submits.inc.php:327
-#, fuzzy
-#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
-msgstr "Відключити перевірки зовнішніх ключів"
+msgstr "Перевірка зовнішніх ключів:"
#: js/messages.php:247 libraries/mult_submits.inc.php:331
-#, fuzzy
-#| msgid "Enabled"
msgid "(Enabled)"
-msgstr "дозволено"
+msgstr "(Увімкнено)"
#: js/messages.php:248 libraries/mult_submits.inc.php:331
-#, fuzzy
-#| msgid "Disabled"
msgid "(Disabled)"
-msgstr "заблоковано"
+msgstr "(Вимкнено)"
#: js/messages.php:251
msgid "Searching"
@@ -1786,7 +1756,7 @@ msgstr "%d неправильний номер рядка."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Зберегти"
@@ -1807,20 +1777,17 @@ msgid "Each point represents a data row."
msgstr "Кожна точка являє собою рядок даних."
#: js/messages.php:291
-#, fuzzy
msgid "Hovering over a point will show its label."
-msgstr "При наведенні на точку буде показано її лейбл."
+msgstr "Наведення курсора над крапкою відобразить, її назву."
#: js/messages.php:293
-#, fuzzy
msgid "To zoom in, select a section of the plot with the mouse."
-msgstr "Для маштабування, виділіть ділянку з допомогою мишки"
+msgstr "Щоб збільшити масштаб, виберіть ділянку діаграми за допомогою миші."
#: js/messages.php:295
-#, fuzzy
-#| msgid "Click reset zoom link to come back to original state."
msgid "Click reset zoom button to come back to original state."
-msgstr "Натисніть кнопку скидання зума, щоб повернутися до вихідного стану."
+msgstr ""
+"Натисніть кнопку Скидання масштабу, щоб повернутися до початкового стану."
#: js/messages.php:297
msgid "Click a data point to view and possibly edit the data row."
@@ -1844,10 +1811,8 @@ msgid "Query results"
msgstr "Результати запиту"
#: js/messages.php:304
-#, fuzzy
-#| msgid "Table of contents"
msgid "Data point content"
-msgstr "Зміст"
+msgstr "Вміст точки даних"
#: js/messages.php:307 tbl_change.php:263 tbl_indexes.php:269
#: tbl_indexes.php:307
@@ -1893,7 +1858,7 @@ msgstr "Додати опцію для колонки "
#: js/messages.php:334
#, php-format
msgid "%d object(s) created"
-msgstr ""
+msgstr "Створено %d об'єкт(ів)"
#: js/messages.php:337
msgid "Press escape to cancel editing"
@@ -1913,29 +1878,30 @@ msgstr "Перетягніть для зміни порядку"
#: js/messages.php:340
msgid "Click to sort"
-msgstr "Клікніть щоб посортувати"
+msgstr "Клацніть для сортування"
#: js/messages.php:341
msgid "Click to mark/unmark"
-msgstr "Клікніть щоб позначити/зняти позначку"
+msgstr "Клацніть для встановлення/зняття позначки"
#: js/messages.php:342
msgid "Double-click to copy column name"
-msgstr ""
+msgstr "Клацніть двічі, щоб скопіювати назву стовпчика"
#: js/messages.php:343
msgid "Click the drop-down arrow
to toggle column's visibility"
msgstr ""
-"Клікніть на стрілку випадаючого меню
для перемикання видимості стовпця"
+"Клацніть на стрілку випадаючого меню
для перемикання видимості "
+"стовпчика"
#: js/messages.php:345
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:350
#, fuzzy
@@ -1960,20 +1926,17 @@ msgid "Go to link"
msgstr "Перейти за посиланням"
#: js/messages.php:359
-#, fuzzy
-#| msgid "Column names"
msgid "Copy column name"
-msgstr "Назви колонок"
+msgstr "Копіювати назву стовпчик(ів)"
#: js/messages.php:360
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
+"Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну."
#: js/messages.php:361
-#, fuzzy
-#| msgid "Showing rows"
msgid "Show data row(s)"
-msgstr "Показано записи "
+msgstr "Показати ряд(и) даних"
#: js/messages.php:364
msgid "Generate password"
@@ -1992,22 +1955,17 @@ msgid "More"
msgstr "Більше"
#: js/messages.php:372
-#, fuzzy
-#| msgid "Show all"
msgid "Show Panel"
-msgstr "Показати все"
+msgstr "Показати панель"
#: js/messages.php:373
-#, fuzzy
-#| msgid "Hide indexes"
msgid "Hide Panel"
-msgstr "Сховати індекси"
+msgstr "Приховати панель"
#: js/messages.php:376
-#, fuzzy
-#| msgid "The selected user was not found in the privilege table."
msgid "The requested page was not found in the history, it may have expired."
-msgstr "Вказаного користувача не знайдено в таблиці прав."
+msgstr ""
+"Запитану сторінку не знайдено в історії, можливо минув її термін зберігання."
#: js/messages.php:379 setup/lib/index.lib.php:188
#, php-format
@@ -2266,11 +2224,9 @@ msgstr "календар-місяць-рік"
#. l10n: Year suffix for calendar, "none" is empty.
#: js/messages.php:516
-#, fuzzy
-#| msgid "None"
msgctxt "Year suffix"
msgid "none"
-msgstr "Жодного"
+msgstr "немає"
#: js/messages.php:525
msgid "Hour"
@@ -2287,53 +2243,51 @@ msgstr "Секунда"
#: libraries/Advisor.class.php:77
#, php-format
msgid "PHP threw following error: %s"
-msgstr ""
+msgstr "PHP вивів наступне повідомлення про помилку: %s"
#: libraries/Advisor.class.php:104
#, php-format
msgid "Failed evaluating precondition for rule '%s'"
-msgstr ""
+msgstr "Не вдалося виконати визначення передумови для правила '%s'"
#: libraries/Advisor.class.php:121
#, php-format
msgid "Failed calculating value for rule '%s'"
-msgstr ""
+msgstr "Не вдалося виконати обчислення значення для правила '%s'"
#: libraries/Advisor.class.php:140
#, php-format
msgid "Failed running test for rule '%s'"
-msgstr ""
+msgstr "Не вдалося виконати тест для правила \"%s\""
#: libraries/Advisor.class.php:222
-#, fuzzy, php-format
-#| msgid ""
-#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
+#, php-format
msgid "Failed formatting string for rule '%s'."
-msgstr ""
-"Помилка форматування рядка по '%s' правилу. PHP припинив роботу з наступною "
-"помилкою: %s"
+msgstr "Не вдалося виконати форматування рядка для правила '%s'."
#: libraries/Advisor.class.php:378
#, php-format
msgid ""
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule"
msgstr ""
+"Неприпустиме правило декларації на рядку %1$s, очікувався рядок %2$s "
+"попереднього правила"
#: libraries/Advisor.class.php:395
-#, fuzzy, php-format
-#| msgid "Invalid server index: %s"
+#, php-format
msgid "Invalid rule declaration on line %s"
-msgstr "Не вірний індекс сервера: %s"
+msgstr "Неприпустиме правило декларації в рядку %s"
#: libraries/Advisor.class.php:403
#, php-format
msgid "Unexpected characters on line %s"
-msgstr ""
+msgstr "Неочікувані символи в рядку %s"
#: libraries/Advisor.class.php:417
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
+"Неочікуваний символ в рядку %1$s. Очікувався tab, але не знайдено \"%2$s\""
#: libraries/Advisor.class.php:450 server_status_queries.php:86
msgid "per second"
@@ -2471,14 +2425,12 @@ msgstr[1] "Всього: %s співпадань"
msgstr[2] "Всього: %s співпадань"
#: libraries/DbSearch.class.php:330
-#, fuzzy, php-format
-#| msgid "%s match inside table %s"
-#| msgid_plural "%s matches inside table %s"
+#, php-format
msgid "%1$s match in %2$s"
msgid_plural "%1$s matches in %2$s"
-msgstr[0] "%s співпадіння у таблиці %s"
-msgstr[1] "%s співпадіння у таблиці %s"
-msgstr[2] "%s співпадінь у таблиці %s"
+msgstr[0] "%1$s співпадіння у %2$s"
+msgstr[1] "%1$s співпадіння у %2$s"
+msgstr[2] "%1$s співпадінь у %2$s"
#: libraries/DbSearch.class.php:345 libraries/Menu.class.php:250
#: libraries/Util.class.php:3278 libraries/Util.class.php:3486
@@ -2528,11 +2480,11 @@ msgstr "Всередині стовпчика:"
#: libraries/DisplayResults.class.php:698
msgid "Save edited data"
-msgstr ""
+msgstr "Зберегти відредаговані дані"
#: libraries/DisplayResults.class.php:704
msgid "Restore column order"
-msgstr ""
+msgstr "Відновити порядок стовпців"
#: libraries/DisplayResults.class.php:775 libraries/Util.class.php:2553
#: libraries/Util.class.php:2557
@@ -2554,27 +2506,21 @@ msgstr "Вперед"
#: libraries/DisplayResults.class.php:863 libraries/Util.class.php:2591
#: libraries/Util.class.php:2594
-#, fuzzy
-#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Кінець"
#: libraries/DisplayResults.class.php:904 tbl_chart.php:222
msgid "Start row"
-msgstr ""
+msgstr "Початковий рядок"
#: libraries/DisplayResults.class.php:908 tbl_chart.php:226
-#, fuzzy
-#| msgid "Number of rows:"
msgid "Number of rows"
-msgstr "Число рядків:"
+msgstr "Кількість рядків"
#: libraries/DisplayResults.class.php:917
-#, fuzzy
-#| msgid "More"
msgid "Mode"
-msgstr "Більше"
+msgstr "Режим"
#: libraries/DisplayResults.class.php:919
msgid "horizontal"
@@ -2589,14 +2535,13 @@ msgid "vertical"
msgstr "вертикальному"
#: libraries/DisplayResults.class.php:933
-#, fuzzy, php-format
-#| msgid "Execute every"
+#, php-format
msgid "Headers every %s rows"
-msgstr "Виконати кожні"
+msgstr "Заголовки кожні %s рядків"
#: libraries/DisplayResults.class.php:1230
msgid "Sort by key"
-msgstr ""
+msgstr "Сортувати за ключем"
#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:748
#: libraries/import.lib.php:1196 libraries/import.lib.php:1222
@@ -2624,39 +2569,34 @@ msgstr ""
#: libraries/plugins/import/ImportXml.class.php:57
#: libraries/rte/rte_routines.lib.php:935 libraries/structure.lib.php:1723
msgid "Options"
-msgstr ""
+msgstr "Параметри"
#: libraries/DisplayResults.class.php:1584
#: libraries/DisplayResults.class.php:1690
-#, fuzzy
-#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Часткові тексти"
#: libraries/DisplayResults.class.php:1585
#: libraries/DisplayResults.class.php:1694
-#, fuzzy
-#| msgid "Full Texts"
msgid "Full texts"
msgstr "Повні тексти"
#: libraries/DisplayResults.class.php:1599
msgid "Relational key"
-msgstr ""
+msgstr "Ключ відношення"
#: libraries/DisplayResults.class.php:1600
-#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
-msgstr "Схема зв'язків"
+msgstr "Стовпчик відображення зв'язків"
#: libraries/DisplayResults.class.php:1612
msgid "Show binary contents"
-msgstr ""
+msgstr "Показати двійковий вміст"
#: libraries/DisplayResults.class.php:1617
msgid "Show BLOB contents"
-msgstr ""
+msgstr "Показати вміст BLOB-ОБ'ЄКТІВ"
#: libraries/DisplayResults.class.php:1622
#: libraries/config/messages.inc.php:57
@@ -2671,11 +2611,11 @@ msgstr "Перетворення МІМЕ-типу бровзером"
#: libraries/DisplayResults.class.php:1642
msgid "Well Known Text"
-msgstr ""
+msgstr "Формат WKT (well known text)"
#: libraries/DisplayResults.class.php:1643
msgid "Well Known Binary"
-msgstr ""
+msgstr "Формат WKB (well known binary)"
#: libraries/DisplayResults.class.php:3357
#: libraries/DisplayResults.class.php:3373
@@ -2689,7 +2629,7 @@ msgstr "Вбити"
#: libraries/DisplayResults.class.php:4493 libraries/structure.lib.php:771
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]"
-msgstr ""
+msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11 [/doc]"
#: libraries/DisplayResults.class.php:4889
msgid "in query"
@@ -2701,8 +2641,8 @@ msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
-"Вигляд має щонайменше цю кількість рядків. Будь-ласка звернітся до "
-"%sдокументації%s."
+"Подання має щонайменше цю кількість рядків. Будь-ласка звернітся до %"
+"sдокументації%s."
#: libraries/DisplayResults.class.php:4939
msgid "Showing rows"
@@ -2752,7 +2692,7 @@ msgstr "Експорт"
#: libraries/DisplayResults.class.php:5178
msgid "Query results operations"
-msgstr ""
+msgstr "Операції з результатами запиту"
#: libraries/DisplayResults.class.php:5202 libraries/Header.class.php:335
#: libraries/structure.lib.php:299 libraries/structure.lib.php:362
@@ -2762,27 +2702,24 @@ msgstr "Версія для друку"
#: libraries/DisplayResults.class.php:5220
msgid "Print view (with full texts)"
-msgstr ""
+msgstr "Подання для друку (з повними текстами)"
#: libraries/DisplayResults.class.php:5291 tbl_chart.php:129
-#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
-msgstr "Показати PDF схему"
+msgstr "Відобразити діаграму"
#: libraries/DisplayResults.class.php:5316
msgid "Visualize GIS data"
-msgstr ""
+msgstr "Візуалізація даних ГІС"
#: libraries/DisplayResults.class.php:5348 view_create.php:152
-#, fuzzy
-#| msgid "Create User"
msgid "Create view"
-msgstr "Створити користувача"
+msgstr "Створити подання"
#: libraries/DisplayResults.class.php:5541
msgid "Link not found"
-msgstr "Лінк не знайдено"
+msgstr "Посилання не знайдено"
#: libraries/Error_Handler.class.php:77
msgid "Too many error messages, some are not displayed."
@@ -2790,23 +2727,23 @@ msgstr "Надто багато помилок, деякі не відобраз
#: libraries/File.class.php:239
msgid "File was not an uploaded file."
-msgstr "Файл не був завантаженим файлом."
+msgstr "Файл не був відвантаженим файлом."
#: libraries/File.class.php:279
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Завантажений файл перевищує директиву upload_max_filesize в php.ini."
+msgstr "Відвантажений файл перевищує директиву upload_max_filesize в php.ini."
#: libraries/File.class.php:282
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
-"Завантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в HTML "
-"формі."
+"Відвантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в "
+"HTML формі."
#: libraries/File.class.php:285
msgid "The uploaded file was only partially uploaded."
-msgstr "Завантажуваний файл був завантажений лише частково."
+msgstr "Відвантажений файл був відвантажений лише частково."
#: libraries/File.class.php:288
msgid "Missing a temporary folder."
@@ -2818,11 +2755,11 @@ msgstr "Неможливо записати файл на диск."
#: libraries/File.class.php:294
msgid "File upload stopped by extension."
-msgstr "Завантаження зупинено розширенням."
+msgstr "Відвантаження зупинено розширенням."
#: libraries/File.class.php:297
msgid "Unknown error in file upload."
-msgstr "Невідома помилка при завантаженні файлу."
+msgstr "Невідома помилка при відвантаженні файлу."
#: libraries/File.class.php:475
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
@@ -2830,20 +2767,20 @@ msgstr "Помилка прі переміщенні файлу, дивись [d
#: libraries/File.class.php:493
msgid "Error while moving uploaded file."
-msgstr "Помилка при переміщенні файлу."
+msgstr "Помилка при переміщенні відвантаженого файлу."
#: libraries/File.class.php:501
msgid "Cannot read (moved) upload file."
-msgstr "Неможливо прочитати (перемістити) завантажений файл."
+msgstr "Неможливо прочитати (перемістити) відвантажений файл."
#: libraries/Footer.class.php:133 libraries/Footer.class.php:137
#: libraries/Footer.class.php:140
msgid "Open new phpMyAdmin window"
-msgstr ""
+msgstr "Відкрити нове вікно phpMyAdmin"
#: libraries/Header.class.php:386
msgid "Click on the bar to scroll to top of page"
-msgstr ""
+msgstr "Натисніть на панелі, щоб прокрутити до початку сторінки"
#: libraries/Header.class.php:593
#: libraries/plugins/auth/AuthenticationCookie.class.php:267
@@ -2852,10 +2789,8 @@ msgstr "З цього моменту Cookies повинні бути дозво
#: libraries/Header.class.php:598
#: libraries/plugins/auth/AuthenticationCookie.class.php:171
-#, fuzzy
-#| msgid "Cookies must be enabled past this point."
msgid "Javascript must be enabled past this point"
-msgstr "З цього моменту Cookies повинні бути дозволені."
+msgstr "З цього моменту Javascript має бути увімкнений"
#: libraries/Index.class.php:531 tbl_relation.php:487
msgid "No index defined!"
@@ -2927,7 +2862,7 @@ msgstr "Бази Даних"
#: libraries/structure.lib.php:707 libraries/structure.lib.php:1188
#: libraries/tbl_info.inc.php:59
msgid "View"
-msgstr "Вигляд"
+msgstr "Подання"
#: libraries/Menu.class.php:256 libraries/Menu.class.php:344
#: libraries/Util.class.php:3274 libraries/Util.class.php:3281
@@ -2966,7 +2901,7 @@ msgstr "Операцій"
#: libraries/Menu.class.php:296 libraries/Menu.class.php:413
#: libraries/relation.lib.php:238
msgid "Tracking"
-msgstr ""
+msgstr "Відстеження"
#: libraries/Menu.class.php:305 libraries/Menu.class.php:407
#: libraries/navigation/Nodes/Node_Trigger_Container.class.php:26
@@ -2977,7 +2912,7 @@ msgstr ""
#: libraries/plugins/export/ExportXml.class.php:121
#: libraries/rte/rte_words.lib.php:41
msgid "Triggers"
-msgstr ""
+msgstr "Тригери"
#: libraries/Menu.class.php:319 libraries/Menu.class.php:320
msgid "Table seems to be empty!"
@@ -2986,7 +2921,7 @@ msgstr ""
#: libraries/Menu.class.php:356 libraries/Menu.class.php:363
#: libraries/Menu.class.php:370
msgid "Database seems to be empty!"
-msgstr ""
+msgstr "Порожня база даних!"
#: libraries/Menu.class.php:359
msgid "Query"
@@ -3000,18 +2935,18 @@ msgstr "Привілеї"
#: libraries/Menu.class.php:392 libraries/rte/rte_words.lib.php:29
msgid "Routines"
-msgstr ""
+msgstr "Процедури"
#: libraries/Menu.class.php:400
#: libraries/navigation/Nodes/Node_Event_Container.class.php:26
#: libraries/plugins/export/ExportSql.class.php:810
#: libraries/rte/rte_words.lib.php:53
msgid "Events"
-msgstr ""
+msgstr "Події"
#: libraries/Menu.class.php:419 libraries/relation.lib.php:205
msgid "Designer"
-msgstr ""
+msgstr "Дизайнер"
#: libraries/Menu.class.php:473
msgid "Users"
@@ -3053,7 +2988,7 @@ msgid "Error"
msgstr "Помилка"
#: libraries/Message.class.php:254
-#, fuzzy, php-format
+#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] "%1$d рядок задіяно."
@@ -3099,11 +3034,11 @@ msgstr "SQL-запит"
#: libraries/ServerStatusData.class.php:184
msgid "Handler"
-msgstr ""
+msgstr "Обробник"
#: libraries/ServerStatusData.class.php:185
msgid "Query cache"
-msgstr ""
+msgstr "Кеш запитів"
#: libraries/ServerStatusData.class.php:186
msgid "Threads"
@@ -3111,7 +3046,7 @@ msgstr ""
#: libraries/ServerStatusData.class.php:188
msgid "Temporary data"
-msgstr ""
+msgstr "Тимчасові дані"
#: libraries/ServerStatusData.class.php:189
msgid "Delayed inserts"
@@ -3127,7 +3062,7 @@ msgstr ""
#: libraries/ServerStatusData.class.php:193
msgid "Sorting"
-msgstr ""
+msgstr "Сортування"
#: libraries/ServerStatusData.class.php:194
#: libraries/build_html_for_db.lib.php:26
@@ -3139,7 +3074,7 @@ msgstr "Таблиць"
#: libraries/ServerStatusData.class.php:195
msgid "Transaction coordinator"
-msgstr ""
+msgstr "Координатор транзакцій"
#: libraries/ServerStatusData.class.php:196 server_binlog.php:107
msgid "Files"
@@ -3147,7 +3082,7 @@ msgstr "Файли"
#: libraries/ServerStatusData.class.php:207
msgid "Flush (close) all tables"
-msgstr ""
+msgstr "Вичистити (закрити) всі таблиці"
#: libraries/ServerStatusData.class.php:209
msgid "Show open tables"
@@ -3184,11 +3119,11 @@ msgstr ""
#: libraries/ServerStatusData.class.php:353
msgid "Monitor"
-msgstr ""
+msgstr "Монітор"
#: libraries/ServerStatusData.class.php:357
msgid "Advisor"
-msgstr ""
+msgstr "Радник"
#: libraries/StorageEngine.class.php:216
msgid ""
@@ -3222,13 +3157,12 @@ msgstr "невідомий статус таблиці: "
#: libraries/Table.class.php:728
#, php-format
msgid "Source database `%s` was not found!"
-msgstr ""
+msgstr "Вихідна база даних \"%s\" не знайдена!"
#: libraries/Table.class.php:736
-#, fuzzy, php-format
-#| msgid "Theme %s not found!"
+#, php-format
msgid "Target database `%s` was not found!"
-msgstr "Тема %s не знайдена!"
+msgstr "Цільова база даних \"%s\" не знайдена!"
#: libraries/Table.class.php:1164
msgid "Invalid database"
@@ -3244,10 +3178,9 @@ msgid "Error renaming table %1$s to %2$s"
msgstr "Помилка зміни назви таблиці %1$s на %2$s"
#: libraries/Table.class.php:1229
-#, fuzzy, php-format
-#| msgid "Table %s has been renamed to %s"
+#, php-format
msgid "Table %1$s has been renamed to %2$s."
-msgstr "Таблицю %s було перейменовано в %s"
+msgstr "Таблицю %1$s було перейменовано в %2$s."
#: libraries/Table.class.php:1373
msgid "Could not save table UI preferences"
@@ -3282,7 +3215,7 @@ msgstr "Функція"
#: pmd_general.php:678 pmd_general.php:691 pmd_general.php:754
#: pmd_general.php:808
msgid "Operator"
-msgstr ""
+msgstr "Оператор"
#: libraries/TableSearch.class.php:187 libraries/TableSearch.class.php:1186
#: libraries/insert_edit.lib.php:1578 libraries/replication_gui.lib.php:124
@@ -3299,16 +3232,13 @@ msgid "Table Search"
msgstr "Шукати"
#: libraries/TableSearch.class.php:232 libraries/insert_edit.lib.php:1352
-#, fuzzy
#| msgid "Insert"
msgid "Edit/Insert"
-msgstr "Вставити"
+msgstr "Редагувати/Вставити"
#: libraries/TableSearch.class.php:755
-#, fuzzy
-#| msgid "Select fields (at least one):"
msgid "Select columns (at least one):"
-msgstr "Вибрати поля (щонайменше одне):"
+msgstr "Виберіть стовпці (принаймні один):"
#: libraries/TableSearch.class.php:775
msgid "Add search conditions (body of the \"where\" clause):"
@@ -3336,10 +3266,8 @@ msgid "Browse foreign values"
msgstr ""
#: libraries/TableSearch.class.php:971
-#, fuzzy
-#| msgid "Hide search criteria"
msgid "Additional search criteria"
-msgstr "Сховати критерії пошуку"
+msgstr "Додаткові критерії пошуку"
#: libraries/TableSearch.class.php:1109
#, fuzzy
@@ -3357,13 +3285,11 @@ msgstr ""
#: libraries/TableSearch.class.php:1170
msgid "How to use"
-msgstr ""
+msgstr "Як використовувати"
#: libraries/TableSearch.class.php:1175
-#, fuzzy
-#| msgid "Reset"
msgid "Reset zoom"
-msgstr "Перевстановити"
+msgstr "Скидання масштабу"
#: libraries/Theme.class.php:170
#, php-format
@@ -3401,18 +3327,24 @@ msgstr "Тема"
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
+"Однобайтове ціле число, діапазон зі знаком - від -128 до 127, діапазон без "
+"знаку - від 0 до 255"
#: libraries/Types.class.php:298
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
+"Двобайтове ціле число, діапазон зі знаком від -32768 до 32767, діапазон без "
+"знаку від 0 до 65535"
#: libraries/Types.class.php:300
msgid ""
"A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is "
"0 to 16,777,215"
msgstr ""
+"Трибайтове ціле число, діапазон зі знаком від -8,388,608 до 8,388,607, "
+"діапазон без знаку від 0 до 16,777,215"
#: libraries/Types.class.php:302
msgid ""
@@ -3468,27 +3400,27 @@ msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE"
msgstr ""
#: libraries/Types.class.php:320 libraries/Types.class.php:722
-#, fuzzy, php-format
-#| msgid "General relation features"
+#, php-format
msgid "A date, supported range is %1$s to %2$s"
-msgstr "Загальні можливості"
+msgstr "Дата, підтримується інтервал від %1$s до %2$s"
#: libraries/Types.class.php:322 libraries/Types.class.php:724
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
-msgstr ""
+msgstr "Комбінація дати і часу, підтримуваний інтервал від %1$s до %2$s"
#: libraries/Types.class.php:324
msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
+"Мітка часу, інтервал від 1970-01-01: 00: 00: 01 UTC до 2038-01-09 03: 14: 07 "
+"UTC у кількості секунд з початку епохи (1970-01-01 00: 00: 00 UTC)"
#: libraries/Types.class.php:326 libraries/Types.class.php:728
-#, fuzzy, php-format
-#| msgid "Error renaming table %1$s to %2$s"
+#, php-format
msgid "A time, range is %1$s to %2$s"
-msgstr "Помилка зміни назви таблиці %1$s на %2$s"
+msgstr "Час, інтервал від %1$s до %2$s"
#: libraries/Types.class.php:328
msgid ""
@@ -3508,6 +3440,8 @@ msgid ""
"A variable-length (%s) string, the effective maximum length is subject to "
"the maximum row size"
msgstr ""
+"Текстовий рядок змінної довжини (%s), максимальна ефективна довжина "
+"відповідає максимальній довжині рядка таблиці"
#: libraries/Types.class.php:334
msgid ""
@@ -3789,7 +3723,7 @@ msgstr "Переглянути Ваш комп'ютер:"
#: libraries/Util.class.php:3430
#, php-format
msgid "Select from the web server upload directory %s:"
-msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:"
+msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:"
#: libraries/Util.class.php:3459 libraries/insert_edit.lib.php:1183
#: libraries/sql_query_form.lib.php:464
@@ -3798,7 +3732,7 @@ msgstr "Встановлений Вами каталог для завантаж
#: libraries/Util.class.php:3470
msgid "There are no files to upload"
-msgstr "Немає файлів для завантаження"
+msgstr "Немає файлів для відвантаження"
#: libraries/Util.class.php:3495 libraries/Util.class.php:3496
#: libraries/structure.lib.php:305
@@ -3857,11 +3791,11 @@ msgstr "Перевірити права для бази даних "%s"
msgid "Check Privileges"
msgstr "Перевірити права"
-#: libraries/common.inc.php:577
-msgid "Failed to read configuration file"
-msgstr "Неможливо прочитати конфігураційний файл."
-
#: libraries/common.inc.php:579
+msgid "Failed to read configuration file"
+msgstr "Не вдалося прочитати файл конфігурації"
+
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3869,12 +3803,12 @@ msgstr ""
"Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, "
"перевірте будь-які помилки що показано нижче."
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Неможливо завантажити стандартну функціональність із: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3886,40 +3820,40 @@ msgstr ""
"Змінна $cfg['PmaAbsoluteUri'] ПОВИННА бути встановлена у Вашому "
"конфігураційному файлі!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "Не вірний індекс сервера: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Не вірна назва хоста для сервера %1$s. Будь ласка перевірте Вашу "
"конфігурацію."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Вам необхідно оновити до %s %s або пізнішої."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "можливе використання"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "виявлено цифровий ключ"
@@ -4366,7 +4300,7 @@ msgid "Character set of the file"
msgstr "Кодування файлу"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Формат"
@@ -4478,7 +4412,7 @@ msgstr "Ключ підпису"
#: libraries/plugins/export/ExportOdt.class.php:480
#: libraries/tbl_columns_definition_form.inc.php:168
msgid "MIME type"
-msgstr "MIME type"
+msgstr "Тип MIME"
#: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:110
#: libraries/config/messages.inc.php:134 tbl_relation.php:359
@@ -4505,7 +4439,7 @@ msgstr "Запам'ятати шаблон імені файлу"
#: libraries/config/messages.inc.php:117 libraries/operations.lib.php:195
#: libraries/operations.lib.php:684 libraries/operations.lib.php:1028
msgid "Add AUTO_INCREMENT value"
-msgstr "Додати AUTO_INCREMENT значення"
+msgstr "Додати значення AUTO_INCREMENT"
#: libraries/config/messages.inc.php:118
msgid "Enclose table and column names with backquotes"
@@ -4846,7 +4780,7 @@ msgstr "SQL запити"
#: libraries/config/messages.inc.php:213
msgid "SQL Query box"
-msgstr "SQL Query box"
+msgstr "SQL Запит"
#: libraries/config/messages.inc.php:214
msgid "Customize links shown in SQL Query boxes"
@@ -5313,7 +5247,7 @@ msgstr "Посилання для редагування, копіювання
#: libraries/config/messages.inc.php:321
msgid "Where to show the table row links"
-msgstr ""
+msgstr "Де можна відобразити посилання на рядки таблиці"
#: libraries/config/messages.inc.php:322
msgid "Use natural order for sorting table and database names"
@@ -5346,6 +5280,8 @@ msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
+"[kbd]SMART[/kbd] - означає зворотній порядок сортування для полів, що мають "
+"тип TIME, DATE, DATETIME и TIMESTAMP; у іншому випадку порядок буде прямим"
#: libraries/config/messages.inc.php:329
msgid "Default sorting order"
@@ -5365,6 +5301,8 @@ msgid ""
"Structure page if any of the required tables for the phpMyAdmin "
"configuration storage could not be found"
msgstr ""
+"Вимкнути сповіщення, що відображається на сторінці структури бази даних при "
+"відсутності таблиць, необхідних для зберігання конфігурації phpMyAdmin"
#: libraries/config/messages.inc.php:333
msgid "Missing phpMyAdmin configuration storage tables"
@@ -5388,7 +5326,7 @@ msgstr ""
#: libraries/config/messages.inc.php:337
msgid "Iconic table operations"
-msgstr ""
+msgstr "Іконки операцій над таблицями"
#: libraries/config/messages.inc.php:338
msgid "Disallow BLOB and BINARY columns from editing"
@@ -5404,6 +5342,10 @@ msgid ""
"storage). If disabled, this utilizes JS-routines to display query history "
"(lost by window close)."
msgstr ""
+"Увімкніть, для зберігання історії запитів у базі даних (потрібно налаштоване "
+"сховище конфігурації phpMyAdmin). При вимкненні, для зберігання буде "
+"використовуватись JavaScript (історію запитів буде втрачено при закритті "
+"вікна)."
#: libraries/config/messages.inc.php:341
msgid "Permanent query history"
@@ -5419,11 +5361,11 @@ msgstr "Довжина історії запитів"
#: libraries/config/messages.inc.php:345
msgid "Tab displayed when opening a new query window"
-msgstr ""
+msgstr "Вкладка, які відображається під час відкриття нового вікна запиту"
#: libraries/config/messages.inc.php:346
msgid "Default query window tab"
-msgstr ""
+msgstr "Вкладка за замовчуванням вікна запитів"
#: libraries/config/messages.inc.php:347
msgid "Query window height (in pixels)"
@@ -5448,7 +5390,7 @@ msgstr ""
#: libraries/config/messages.inc.php:352
msgid "Recoding engine"
-msgstr ""
+msgstr "Механізм перекодування"
#: libraries/config/messages.inc.php:353
msgid "When browsing tables, the sorting of each table is remembered"
@@ -5512,11 +5454,11 @@ msgstr "Дозволити авторизацію для root"
#: libraries/config/messages.inc.php:368
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
-msgstr ""
+msgstr "Рядок, що відображається при ідентифікації з допомогою HTTP"
#: libraries/config/messages.inc.php:369
msgid "HTTP Realm"
-msgstr "HTTP Realm"
+msgstr "HTTP область"
#: libraries/config/messages.inc.php:370
msgid ""
@@ -5524,6 +5466,8 @@ msgid ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
+"Шлях до конфігураційного файлу [a@http://swekey.com]апаратної аутентифікації "
+"SweKey[/a] (наприклад, якщо розміщено нижче кореню хоста: /etc/swekey.conf)"
#: libraries/config/messages.inc.php:371
msgid "SweKey config file"
@@ -5567,7 +5511,7 @@ msgstr "Стискати з’єднання"
#: libraries/config/messages.inc.php:380
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
-msgstr ""
+msgstr "Спосіб з'єднання з сервером - якщо не впевнені залиште [kbd]tcp[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Connection type"
@@ -5575,29 +5519,31 @@ msgstr "Тип з’єднання"
#: libraries/config/messages.inc.php:382
msgid "Control user password"
-msgstr ""
+msgstr "Пароль виділеного користувача"
#: libraries/config/messages.inc.php:383
msgid ""
"A special MySQL user configured with limited permissions, more information "
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
+"Спеціальний користувач MySQL з обмеженими привілеями. Детальніше дивіться на "
+"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
#: libraries/config/messages.inc.php:384
msgid "Control user"
-msgstr ""
+msgstr "Виділений користувач"
#: libraries/config/messages.inc.php:385
msgid ""
"An alternate host to hold the configuration storage; leave blank to use the "
"already defined host"
msgstr ""
+"Альтернативний хост для зберігання налаштувань, для використання вже "
+"вказаного хоста - залиште порожнім"
#: libraries/config/messages.inc.php:386
-#, fuzzy
-#| msgid "Any host"
msgid "Control host"
-msgstr "Довільний хост"
+msgstr "Керування хостом"
#: libraries/config/messages.inc.php:387
msgid "Count tables when showing database list"
@@ -5615,31 +5561,33 @@ msgstr ""
#: libraries/config/messages.inc.php:390
msgid "Designer table"
-msgstr ""
+msgstr "Таблиця дизайнера"
#: libraries/config/messages.inc.php:391
msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
+"Детальніше дивіться на [a@http://sf.net/support/tracker.php?aid=1849494]PMA "
+"bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:392
msgid "Disable use of INFORMATION_SCHEMA"
-msgstr "Деактивувати використання INFORMATION_SCHEMA"
+msgstr "Вимкнути використання INFORMATION_SCHEMA"
#: libraries/config/messages.inc.php:393
msgid "What PHP extension to use; you should use mysqli if supported"
msgstr ""
-"Які розширення PHP використовувати; слід використовувати mysqli, якщо "
-"підтримується"
+"Які розширення PHP використовувати для роботи з MySQL. Варто використовувати "
+"mysqli, при можливості"
#: libraries/config/messages.inc.php:394
msgid "PHP extension to use"
-msgstr ""
+msgstr "PHP розширення"
#: libraries/config/messages.inc.php:395
msgid "Hide databases matching regular expression (PCRE)"
-msgstr ""
+msgstr "Приховати бази даних, що потрапляють під регулярний вираз (PCRE)"
#: libraries/config/messages.inc.php:396
msgid "Hide databases"
@@ -5657,11 +5605,11 @@ msgstr "Таблиця історії SQL запитів"
#: libraries/config/messages.inc.php:399
msgid "Hostname where MySQL server is running"
-msgstr "Ім’я сервера де запущений MySQL сервер"
+msgstr "Ім’я сервера на якому запущено MySQL сервер"
#: libraries/config/messages.inc.php:400
msgid "Server hostname"
-msgstr "Назва сервера"
+msgstr "Хост сервера"
#: libraries/config/messages.inc.php:401
msgid "Logout URL"
@@ -5672,18 +5620,22 @@ msgid ""
"Limits number of table preferences which are stored in database, the oldest "
"records are automatically removed"
msgstr ""
+"Обмежує кількість властивостей таблиці, що зберігаються в базі. Застарілі "
+"автоматично видаляються"
#: libraries/config/messages.inc.php:403
msgid "Maximal number of table preferences to store"
-msgstr ""
+msgstr "Максимальна кількість властивостей таблиці, що зберігаються"
#: libraries/config/messages.inc.php:404
msgid "Try to connect without password"
-msgstr "Спробувати з’єднатись буз паролю"
+msgstr ""
+"Спробувати з’єднатись без паролю, якщо пароль не було прийнято при "
+"ідентифікації"
#: libraries/config/messages.inc.php:405
msgid "Connect without password"
-msgstr "З’єднатись без паролю"
+msgstr "З’єднуватись без паролю"
#: libraries/config/messages.inc.php:406
msgid ""
@@ -5693,10 +5645,16 @@ msgid ""
"their names in order and use [kbd]*[/kbd] at the end to show the rest in "
"alphabetical order."
msgstr ""
+"Ви можете використовувати підставні символи (% і _), екрануйте їх, якщо "
+"хочете використовувати, як звичайні літературні символи, тобто "
+"використовуйте [kbd]'my\\_db'[/kbd] а не [kbd]'my_db'[/kbd]. За допомогою "
+"даної настройки можна сортувати список баз даних, для чого достатньо ввести "
+"їх імена в певному порядку і використовувати [kbd]*[/kbd] в кінці для "
+"виведення залишилися в алфавітному порядку."
#: libraries/config/messages.inc.php:407
msgid "Show only listed databases"
-msgstr ""
+msgstr "Показати лише перелічені бази даних"
#: libraries/config/messages.inc.php:408 libraries/config/messages.inc.php:449
msgid "Leave empty if not using config auth"
@@ -5713,7 +5671,7 @@ msgstr ""
#: libraries/config/messages.inc.php:411
msgid "PDF schema: pages table"
-msgstr ""
+msgstr "PDF схема: сторінки таблиці"
#: libraries/config/messages.inc.php:412
msgid ""
@@ -5721,6 +5679,10 @@ msgid ""
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
+"База даних використовувана для розширених функцій: зв'язків, закладок, і "
+"PDF. Для більш повної інформації дивіться "
+"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Для відключення "
+"підтримки, залиште поле порожнім. Рекомендується: [kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:413
msgid "Database name"
@@ -5743,10 +5705,8 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:417
-#, fuzzy
-#| msgid "Analyze table"
msgid "Recently used table"
-msgstr "Аналіз таблиці"
+msgstr "Нещодавно використані таблиці"
#: libraries/config/messages.inc.php:418
msgid ""
@@ -5756,15 +5716,15 @@ msgstr ""
#: libraries/config/messages.inc.php:419
msgid "Relation table"
-msgstr ""
+msgstr "Таблиця зв'язків"
#: libraries/config/messages.inc.php:420
msgid "SQL command to fetch available databases"
-msgstr ""
+msgstr "SQL команда для вибірки доступних баз даних"
#: libraries/config/messages.inc.php:421
msgid "SHOW DATABASES command"
-msgstr ""
+msgstr "Команда SHOW DATABASES"
#: libraries/config/messages.inc.php:422
msgid ""
@@ -5776,19 +5736,21 @@ msgstr ""
#: libraries/config/messages.inc.php:423
msgid "Signon session name"
-msgstr ""
+msgstr "Ім'я сесії для Signon"
#: libraries/config/messages.inc.php:424
msgid "Signon URL"
-msgstr ""
+msgstr "Signon URL"
#: libraries/config/messages.inc.php:425
msgid "Socket on which MySQL server is listening, leave empty for default"
msgstr ""
+"Сокет на якому працює сервер MySQL, для значення за замовчуванням, залиште "
+"порожнім"
#: libraries/config/messages.inc.php:426
msgid "Server socket"
-msgstr ""
+msgstr "Сокет серверу"
#: libraries/config/messages.inc.php:427
msgid "Enable SSL for connection to MySQL server"
@@ -5796,7 +5758,7 @@ msgstr "Активувати SSL для з’єднання з MySQL серве
#: libraries/config/messages.inc.php:428
msgid "Use SSL"
-msgstr ""
+msgstr "Використовувати SSL"
#: libraries/config/messages.inc.php:429
msgid ""
@@ -5806,7 +5768,7 @@ msgstr ""
#: libraries/config/messages.inc.php:430
msgid "PDF schema: table coordinates"
-msgstr ""
+msgstr "PDF схема: координати таблиць"
#: libraries/config/messages.inc.php:431
msgid ""
@@ -5816,7 +5778,7 @@ msgstr ""
#: libraries/config/messages.inc.php:432
msgid "Display columns table"
-msgstr "Показувати колонки таблиці"
+msgstr "Таблиця з описами полів"
#: libraries/config/messages.inc.php:433
msgid ""
@@ -5826,45 +5788,53 @@ msgstr ""
#: libraries/config/messages.inc.php:434
msgid "UI preferences table"
-msgstr ""
+msgstr "Таблиця налаштувань користувацького інтерфейсу"
#: libraries/config/messages.inc.php:435
msgid ""
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
"the log when creating a database."
msgstr ""
+"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP "
+"DATABASE IF EXISTS."
#: libraries/config/messages.inc.php:436
msgid "Add DROP DATABASE"
-msgstr ""
+msgstr "Додати DROP DATABASE"
#: libraries/config/messages.inc.php:437
msgid ""
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
"log when creating a table."
msgstr ""
+"Чи буде при створенні бази даних, в журнал першим рядком додано вираз DROP "
+"DATABASE IF EXISTS."
#: libraries/config/messages.inc.php:438
msgid "Add DROP TABLE"
-msgstr ""
+msgstr "Додати DROP TABLE"
#: libraries/config/messages.inc.php:439
msgid ""
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
"log when creating a view."
msgstr ""
+"Чи буде при створенні вистави, в журнал першим рядком додано вираз DROP VIEW "
+"IF EXISTS."
#: libraries/config/messages.inc.php:440
msgid "Add DROP VIEW"
-msgstr ""
+msgstr "Додати DROP VIEW"
#: libraries/config/messages.inc.php:441
msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
+"Визначити список виразів, які використовуються для автоматичного створення "
+"нових версій."
#: libraries/config/messages.inc.php:442
msgid "Statements to track"
-msgstr ""
+msgstr "Стеження за виразами"
#: libraries/config/messages.inc.php:443
msgid ""
@@ -5874,17 +5844,18 @@ msgstr ""
#: libraries/config/messages.inc.php:444
msgid "SQL query tracking table"
-msgstr ""
+msgstr "Таблиця відстежування SQL запитів"
#: libraries/config/messages.inc.php:445
msgid ""
"Whether the tracking mechanism creates versions for tables and views "
"automatically."
msgstr ""
+"Чи механізм відстеження створює версії для таблиць і подань автоматично."
#: libraries/config/messages.inc.php:446
msgid "Automatically create versions"
-msgstr ""
+msgstr "Автоматично створювати версії"
#: libraries/config/messages.inc.php:447
msgid ""
@@ -5894,29 +5865,29 @@ msgstr ""
#: libraries/config/messages.inc.php:448
msgid "User preferences storage table"
-msgstr ""
+msgstr "Таблиця збереження налаштувань користувача"
#: libraries/config/messages.inc.php:450
msgid "User for config auth"
-msgstr ""
+msgstr "Прописаний користувач"
#: libraries/config/messages.inc.php:451
msgid ""
"A user-friendly description of this server. Leave blank to display the "
"hostname instead."
-msgstr ""
+msgstr "Користувацький опис сервера. Залиште пустим, щоб вивести назву хоста."
#: libraries/config/messages.inc.php:452
msgid "Verbose name of this server"
-msgstr ""
+msgstr "Повна назва цього сервера"
#: libraries/config/messages.inc.php:453
msgid "Whether a user should be displayed a "show all (rows)" button"
-msgstr ""
+msgstr "Чи користувачеві має відображатися кнопка на \"показати всі (рядки)\""
#: libraries/config/messages.inc.php:454
msgid "Allow to display all the rows"
-msgstr ""
+msgstr "Дозволити відображати всі рядки"
#: libraries/config/messages.inc.php:455
msgid ""
@@ -5924,14 +5895,17 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
+"Будь ласка, зверніть увагу, що включення даного параметра не дасть ефекту "
+"при ідентифікації методом [kbd]config[/kbd] через жорстко прописаного "
+"пароля. Зміна пароля в конфігураційному файлі безпосередньо ніяк не обмежена"
#: libraries/config/messages.inc.php:456
msgid "Show password change form"
-msgstr ""
+msgstr "Показати форму для зміни паролю"
#: libraries/config/messages.inc.php:457
msgid "Show create database form"
-msgstr ""
+msgstr "Показати форму для створення бази даних"
#: libraries/config/messages.inc.php:458
msgid "Show or hide a column displaying the Creation timestamp for all tables"
@@ -5966,98 +5940,103 @@ msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
+"Визначає, чи буде показуватися при перегляді таблиці параметр типу напрямку "
+"відображення"
#: libraries/config/messages.inc.php:465
-#, fuzzy
-#| msgid "Default display direction"
msgid "Show display direction"
-msgstr "Напрямок відображення по змовчуванню"
+msgstr "Показати напрямком відображення"
#: libraries/config/messages.inc.php:466
msgid ""
"Defines whether or not type fields should be initially displayed in edit/"
"insert mode"
msgstr ""
+"Визначає, чи в режимі редагування/вставки має на початку відображатися тип "
+"поля"
#: libraries/config/messages.inc.php:467
msgid "Show field types"
-msgstr ""
+msgstr "Показувати типи полів"
#: libraries/config/messages.inc.php:468
msgid "Display the function fields in edit/insert mode"
-msgstr ""
+msgstr "Відображувати поля функції у режим редагування/вставки"
#: libraries/config/messages.inc.php:469
msgid "Show function fields"
-msgstr ""
+msgstr "Показувати поля функції"
#: libraries/config/messages.inc.php:470
msgid "Whether to show hint or not"
-msgstr ""
+msgstr "Чи показувати підказки"
#: libraries/config/messages.inc.php:471
-#, fuzzy
-#| msgid "Show grid"
msgid "Show hint"
-msgstr "Показати сітку"
+msgstr "Відображати підказки"
#: libraries/config/messages.inc.php:472
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
+"Показує посилання на [a@http://php.net/manual/function.phpinfo.php]phpinfo()"
+"[/a]"
#: libraries/config/messages.inc.php:473
msgid "Show phpinfo() link"
-msgstr ""
+msgstr "Показувати посилання phpinfo()"
#: libraries/config/messages.inc.php:474
msgid "Show detailed MySQL server information"
-msgstr ""
+msgstr "Показувати докладну інформацію про сервер MySQL"
#: libraries/config/messages.inc.php:475
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
-msgstr ""
+msgstr "Визначає, чи мають відображатися SQL запити, що згенеровані PHPMyAdmin"
#: libraries/config/messages.inc.php:476
msgid "Show SQL queries"
-msgstr ""
+msgstr "Показувати SQL-запити"
#: libraries/config/messages.inc.php:477
msgid ""
"Defines whether the query box should stay on-screen after its submission"
msgstr ""
+"Визначає, чи має залишатися вікно запиту на екрані після надсилання запиту"
#: libraries/config/messages.inc.php:478 libraries/sql_query_form.lib.php:361
-#, fuzzy
-#| msgid "Hide query box"
msgid "Retain query box"
-msgstr "Сховати блок запиту"
+msgstr "Залишати вікно запиту"
#: libraries/config/messages.inc.php:479
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
+"Дозволити показ статистики бази даних і таблиць (наприклад, використання "
+"простору)"
#: libraries/config/messages.inc.php:480
msgid "Show statistics"
-msgstr ""
+msgstr "Показувати статистику"
#: libraries/config/messages.inc.php:481
msgid "Display table comments in tooltips"
-msgstr ""
+msgstr "Коментарі таблиці в спливаючих підказках"
#: libraries/config/messages.inc.php:482
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
+"Відзначати використані таблиці і зробити можливим відображення баз даних із "
+"заблокованими таблицями"
#: libraries/config/messages.inc.php:483
msgid "Skip locked tables"
-msgstr ""
+msgstr "Пропускати заблоковані таблиці"
#: libraries/config/messages.inc.php:488
msgid "Requires SQL Validator to be enabled"
-msgstr ""
+msgstr "Має бути увімкнений SQL валідатор"
#: libraries/config/messages.inc.php:490
#: libraries/display_change_password.lib.php:61
@@ -6076,57 +6055,65 @@ msgid ""
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
"installed"
msgstr ""
+"[strong]УВАГА:[/strong] має бути встановлено розширення PHP SOAP або PEAR "
+"SOAP"
#: libraries/config/messages.inc.php:492
msgid "Enable SQL Validator"
-msgstr ""
+msgstr "Увімкнути SQL валідатор"
#: libraries/config/messages.inc.php:493
msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
+"При наявності виділеного імені користувача, пропишіть його тут (по "
+"замовчуванню використовується [kbd]anonymous[/kbd])"
#: libraries/config/messages.inc.php:494 tbl_tracking.php:555
#: tbl_tracking.php:617
msgid "Username"
-msgstr ""
+msgstr "Ім'я користувача"
#: libraries/config/messages.inc.php:495
msgid "A warning is displayed on the main page if Suhosin is detected"
-msgstr ""
+msgstr "При визначенні Suhosin, на головній сторінці виводиться попередження"
#: libraries/config/messages.inc.php:496
msgid "Suhosin warning"
-msgstr ""
+msgstr "Попередження про Suhosin"
#: libraries/config/messages.inc.php:497
msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
+"Розмір текстового поля в режимі редагування (у стовпцях); дане значення буде "
+"пріоритетним для текстових полів SQL запиту (*2) і для вікна запиту (*1.25)"
#: libraries/config/messages.inc.php:498
msgid "Textarea columns"
-msgstr ""
+msgstr "Стовпців у текстовому полі"
#: libraries/config/messages.inc.php:499
msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
+"Розмір текстового поля в режимі редагування (в рядках); дане значення буде "
+"пріоритетним для текстових полів SQL запиту (*2) і для вікна запиту (*1.25)"
#: libraries/config/messages.inc.php:500
msgid "Textarea rows"
-msgstr ""
+msgstr "Рядків у текстовому полі"
#: libraries/config/messages.inc.php:501
msgid "Title of browser window when a database is selected"
-msgstr ""
+msgstr "Заголовок вікна браузера при виборі бази даних"
#: libraries/config/messages.inc.php:503
msgid "Title of browser window when nothing is selected"
-msgstr ""
+msgstr "Заголовок вікна браузера за замовчуванням"
#: libraries/config/messages.inc.php:504
msgid "Default title"
@@ -6134,11 +6121,11 @@ msgstr "Заголовок по замовчуванню"
#: libraries/config/messages.inc.php:505
msgid "Title of browser window when a server is selected"
-msgstr ""
+msgstr "Заголовок вікна браузера при виборі сервера"
#: libraries/config/messages.inc.php:507
msgid "Title of browser window when a table is selected"
-msgstr ""
+msgstr "Заголовок вікна браузера при виборі таблиці"
#: libraries/config/messages.inc.php:509
msgid ""
@@ -6147,44 +6134,54 @@ msgid ""
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd]"
msgstr ""
+"Додайте проксі у вигляді [kbd]IP: довірений HTTP заголовок[/kbd]. Наступний "
+"приклад показує, що phpMyAdmin повинен довіряти HTTP_X_FORWARDED_FOR (X"
+"-Forwarded-For) заголовку, що прийшов з проксі 1.2.3.4: "
+"[br][kbd]1.2.3.4:HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:510
msgid "List of trusted proxies for IP allow/deny"
-msgstr ""
+msgstr "Список довірених проксі для IP allow/deny"
#: libraries/config/messages.inc.php:511
msgid "Directory on server where you can upload files for import"
msgstr ""
+"Каталог на сервері, в який ви можете відвантажувати файли для подальшого "
+"імпорту"
#: libraries/config/messages.inc.php:512
msgid "Upload directory"
-msgstr ""
+msgstr "Каталог відвантаження"
#: libraries/config/messages.inc.php:513
msgid "Allow for searching inside the entire database"
-msgstr ""
+msgstr "Дозволити пошук по всій базі даних"
#: libraries/config/messages.inc.php:514
msgid "Use database search"
-msgstr ""
+msgstr "Використовувати пошук по базі даних"
#: libraries/config/messages.inc.php:515
msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
+"При відключенні, користувачі не зможуть встановити ніякі із зазначених нижче "
+"параметрів, незалежно від галочки праворуч від них"
#: libraries/config/messages.inc.php:516
msgid "Enable the Developer tab in settings"
-msgstr ""
+msgstr "Включення вкладки розробника в налаштуваннях"
#: libraries/config/messages.inc.php:517 setup/frames/index.inc.php:275
msgid "Check for latest version"
-msgstr ""
+msgstr "Перевірити оновлення"
#: libraries/config/messages.inc.php:518
msgid "Enables check for latest version on main phpMyAdmin page"
msgstr ""
+"Включає можливість перевірки останньої версії phpMyAdmin на головній "
+"сторінці"
#: libraries/config/messages.inc.php:519 setup/lib/index.lib.php:132
#: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164
@@ -6192,59 +6189,61 @@ msgstr ""
#: setup/lib/index.lib.php:195 setup/lib/index.lib.php:202
#: setup/lib/index.lib.php:243
msgid "Version check"
-msgstr ""
+msgstr "перевірка версії"
#: libraries/config/messages.inc.php:520
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
+"Включити [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
+"архівування для операцій імпорту та експорту"
#: libraries/config/messages.inc.php:521
msgid "ZIP"
-msgstr ""
+msgstr "ZIP"
#: libraries/config/setup.forms.php:41
msgid "Config authentication"
-msgstr ""
+msgstr "Авторизація через файл конфігурації"
#: libraries/config/setup.forms.php:45
msgid "Cookie authentication"
-msgstr ""
+msgstr "Авторизація за допомогою cookie"
#: libraries/config/setup.forms.php:48
msgid "HTTP authentication"
-msgstr ""
+msgstr "Авторизація за допомогою HTTP"
#: libraries/config/setup.forms.php:51
msgid "Signon authentication"
-msgstr ""
+msgstr "Авторизація за допомогою Signon"
#: libraries/config/setup.forms.php:247
#: libraries/config/user_preferences.forms.php:151
msgid "CSV using LOAD DATA"
-msgstr ""
+msgstr "CSV, використовуючи LOAD DATA"
#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:349
#: libraries/config/user_preferences.forms.php:159
#: libraries/config/user_preferences.forms.php:251
msgid "Open Document Spreadsheet"
-msgstr ""
+msgstr "Відкрити документ електронної таблиці"
#: libraries/config/setup.forms.php:263
#: libraries/config/user_preferences.forms.php:166
msgid "Quick"
-msgstr ""
+msgstr "Швидко"
#: libraries/config/setup.forms.php:267
#: libraries/config/user_preferences.forms.php:170
msgid "Custom"
-msgstr ""
+msgstr "Звичайно"
#: libraries/config/setup.forms.php:288
#: libraries/config/user_preferences.forms.php:190
msgid "Database export options"
-msgstr "Налаштування експорту бази даних"
+msgstr "Параметри експорту бази даних"
#: libraries/config/setup.forms.php:321
#: libraries/config/user_preferences.forms.php:223
@@ -6254,72 +6253,81 @@ msgstr "CSV для даних MS Excel"
#: libraries/config/setup.forms.php:344
#: libraries/config/user_preferences.forms.php:246
msgid "Microsoft Word 2000"
-msgstr ""
+msgstr "Microsoft Word 2000"
#: libraries/config/setup.forms.php:353
#: libraries/config/user_preferences.forms.php:255
msgid "Open Document Text"
-msgstr ""
+msgstr "OpenDocument текст"
#: libraries/config/validate.lib.php:214
msgid "Could not initialize Drizzle connection library"
-msgstr ""
+msgstr "Неможливо ініціалізувати бібліотеку з'єднання Drizzle"
#: libraries/config/validate.lib.php:223 libraries/config/validate.lib.php:231
msgid "Could not connect to Drizzle server"
-msgstr ""
+msgstr "Не вдалося з'єднатися з сервером Drizzle"
#: libraries/config/validate.lib.php:242 libraries/config/validate.lib.php:249
msgid "Could not connect to MySQL server"
-msgstr ""
+msgstr "Неможливо з'єднатися з сервером MySQL"
#: libraries/config/validate.lib.php:282
msgid "Empty username while using config authentication method"
msgstr ""
+"При використанні ідентифікації по конфігураційному файлу не встановлено ім'я "
+"користувача"
#: libraries/config/validate.lib.php:289
msgid "Empty signon session name while using signon authentication method"
msgstr ""
+"При використанні єдиного методу ідентифікації signon не встановлено ім’я "
+"сесії"
#: libraries/config/validate.lib.php:298
msgid "Empty signon URL while using signon authentication method"
msgstr ""
+"При використанні єдиного методу ідентифікації signon не встановлений URL"
#: libraries/config/validate.lib.php:346
msgid "Empty phpMyAdmin control user while using pmadb"
-msgstr ""
+msgstr "При використанні pmadb не встановлений керуючий користувач phpMyAdmin"
#: libraries/config/validate.lib.php:351
msgid "Empty phpMyAdmin control user password while using pmadb"
msgstr ""
+"При використанні pmadb не встановлений пароль керуючого користувача "
+"phpMyAdmin"
#: libraries/config/validate.lib.php:443
#, php-format
msgid "Incorrect IP address: %s"
-msgstr ""
+msgstr "Некоректно введена IP адреса: %s"
#: libraries/core.lib.php:290
#, php-format
msgid "The %s extension is missing. Please check your PHP configuration."
-msgstr ""
+msgstr "Розширення %s не знайдено. Будь ласка, перевірте ваші налаштування PHP."
#: libraries/core.lib.php:449
msgid "possible deep recursion attack"
-msgstr ""
+msgstr "можлива атака глибокої рекурсії"
#: libraries/database_interface.lib.php:2059
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
+"Сервер не відповідає (або локальний сокет сервера MySQL невірно "
+"налаштований)."
#: libraries/database_interface.lib.php:2064
msgid "The server is not responding."
-msgstr ""
+msgstr "Сервер не відповідає."
#: libraries/database_interface.lib.php:2069
msgid "Please check privileges of directory containing database."
-msgstr ""
+msgstr "Будь ласка, перевірте привілеї каталогу містить базу даних."
#: libraries/database_interface.lib.php:2079
msgid "Details…"
@@ -6336,7 +6344,7 @@ msgstr ""
#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:159
#: libraries/dbi/mysqli.dbi.lib.php:206
msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
+msgstr "Помилка при вказуванні з'єднання для controluser в конфігурації."
#: libraries/display_change_password.lib.php:53
#: libraries/replication_gui.lib.php:371
@@ -6353,18 +6361,16 @@ msgstr "Підтвердження"
#: libraries/display_change_password.lib.php:74
msgid "Password Hashing"
-msgstr ""
+msgstr "Хешування пароля"
#: libraries/display_change_password.lib.php:87
msgid "MySQL 4.0 compatible"
-msgstr ""
+msgstr "Сумісно з MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
-#, fuzzy
-#| msgid "Create new database"
msgid "Create database"
-msgstr "Створити нову БД"
+msgstr "Створити базу даних"
#: libraries/display_create_database.lib.php:33
msgid "Create"
@@ -6378,7 +6384,7 @@ msgstr "Без привілеїв"
#: libraries/display_create_table.lib.php:46 pmd_general.php:100
msgid "Create table"
-msgstr ""
+msgstr "Створити таблицю"
#: libraries/display_create_table.lib.php:51
#: libraries/plugins/export/ExportHtmlword.class.php:483
@@ -6399,6 +6405,7 @@ msgstr "Число колонок"
#: libraries/display_export.lib.php:49
msgid "Could not load export plugins, please check your installation!"
msgstr ""
+"Відсутні модулі експорту. Перевірте вміст встановленої копії phpMyAdmin!"
#: libraries/display_export.lib.php:96
msgid "Exporting databases from the current server"
@@ -6420,11 +6427,11 @@ msgstr "Метод Експорту:"
#: libraries/display_export.lib.php:122
msgid "Quick - display only the minimal options"
-msgstr ""
+msgstr "Швидкий - відображати мінімум налаштувань"
#: libraries/display_export.lib.php:134
msgid "Custom - display all possible options"
-msgstr ""
+msgstr "Звичайний - відображати всі можливі настройки"
#: libraries/display_export.lib.php:143
msgid "Database(s):"
@@ -6440,7 +6447,7 @@ msgstr "Рядки:"
#: libraries/display_export.lib.php:162
msgid "Dump some row(s)"
-msgstr ""
+msgstr "Вивантажити частину рядків"
#: libraries/display_export.lib.php:165
msgid "Number of rows:"
@@ -6448,15 +6455,15 @@ msgstr "Число рядків:"
#: libraries/display_export.lib.php:177
msgid "Row to begin at:"
-msgstr ""
+msgstr "Почати з рядка:"
#: libraries/display_export.lib.php:194
msgid "Dump all rows"
-msgstr ""
+msgstr "Вивантажити всі рядки"
#: libraries/display_export.lib.php:202 libraries/display_export.lib.php:229
msgid "Output:"
-msgstr ""
+msgstr "Вывод:"
#: libraries/display_export.lib.php:211 libraries/display_export.lib.php:248
#, php-format
@@ -6473,15 +6480,15 @@ msgstr "Шаблон назви файлу:"
#: libraries/display_export.lib.php:267
msgid "@SERVER@ will become the server name"
-msgstr ""
+msgstr "@SERVER@ буде заміщено іменем сервера"
#: libraries/display_export.lib.php:269
msgid ", @DATABASE@ will become the database name"
-msgstr ""
+msgstr ", @DATABASE@ буде заміщено ім'ям бази даних"
#: libraries/display_export.lib.php:271
msgid ", @TABLE@ will become the table name"
-msgstr ""
+msgstr ", @TABLE@ буде заміщено ім'ям таблиці"
#: libraries/display_export.lib.php:276
#, php-format
@@ -6490,10 +6497,14 @@ msgid ""
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
+"Значення обробляється функцією %1$sstrftime%2$s, завдяки чому можлива "
+"вставка поточної дати і часу. Додатково можуть бути використані наступні "
+"підстановки: %3$s. Решта тексту залишиться без змін. Подробиці дивіться у %"
+"4$sFAQ%5$s."
#: libraries/display_export.lib.php:329
msgid "use this for future exports"
-msgstr ""
+msgstr "використовувати для майбутнього експорту"
#: libraries/display_export.lib.php:335 libraries/display_import.lib.php:255
#: libraries/display_import.lib.php:269 libraries/sql_query_form.lib.php:480
@@ -6517,10 +6528,9 @@ msgid "bzipped"
msgstr "стиснено в \"bzip\""
#: libraries/display_export.lib.php:408
-#, fuzzy
#| msgid "Save output to a file"
msgid "View output as text"
-msgstr "Зберегти вивід у файл"
+msgstr "Відобразити вивід як текст"
#: libraries/display_export.lib.php:413 libraries/display_import.lib.php:312
#: libraries/plugins/export/ExportCodegen.class.php:107
@@ -6528,20 +6538,20 @@ msgid "Format:"
msgstr "Формат:"
#: libraries/display_export.lib.php:418
-#, fuzzy
-#| msgid "Transformation options"
msgid "Format-specific options:"
-msgstr "Опції перетворення"
+msgstr "Параметри форматування:"
#: libraries/display_export.lib.php:420
msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
+"Заповніть параметри для обраного формату і ігноруйте параметри інших "
+"форматів."
#: libraries/display_export.lib.php:429 libraries/display_import.lib.php:327
msgid "Encoding Conversion:"
-msgstr ""
+msgstr "Зміна кодування:"
#: libraries/display_git_revision.lib.php:56
#, php-format
@@ -6574,6 +6584,9 @@ msgid ""
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
"browsers."
msgstr ""
+"Ймовірно, завантажуваний файл має більший розмір, ніж максимально допустимо, "
+"або помилка пов’язана з використанням веб-орієнтованих браузерів (Safari, "
+"Google Chrome, Arora та ін.)."
#: libraries/display_import.lib.php:77
#, php-format
@@ -6600,66 +6613,68 @@ msgid "About %SEC sec. remaining."
msgstr ""
#: libraries/display_import.lib.php:135
+#, fuzzy
msgid "The file is being processed, please be patient."
-msgstr ""
+msgstr "Файл обробляється, будь ласка, будьте терплячими."
#: libraries/display_import.lib.php:154
msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
msgstr ""
+"Будь ласка, будьте терплячими, файл відвантажується. Докладна інформація про "
+"відвантаження не доступна."
#: libraries/display_import.lib.php:190
-#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Importing into the current server"
-msgstr "Не можу зареєструватися на MySQL сервері"
+msgstr "Імпортування до поточного сервера"
#: libraries/display_import.lib.php:192
-#, fuzzy, php-format
-#| msgid "No databases"
+#, php-format
msgid "Importing into the database \"%s\""
-msgstr "БД відсутні"
+msgstr "Імпортування до бази даних \"%s\""
#: libraries/display_import.lib.php:194
-#, fuzzy, php-format
-#| msgid "No databases"
+#, php-format
msgid "Importing into the table \"%s\""
-msgstr "БД відсутні"
+msgstr "Імпортування до таблиці \"%s\""
#: libraries/display_import.lib.php:200
msgid "File to Import:"
-msgstr ""
+msgstr "Файл для імпорту:"
#: libraries/display_import.lib.php:217
#, php-format
msgid "File may be compressed (%s) or uncompressed."
-msgstr ""
+msgstr "Файл може бути стиснений (%s) або нестиснений."
#: libraries/display_import.lib.php:219
msgid ""
"A compressed file's name must end in .[format].[compression]. "
"Example: .sql.zip"
msgstr ""
+"Ім'я стисненого файлу повинно закінчуватися на "
+".[format].[compression]. Приклад: .sql.zip"
#: libraries/display_import.lib.php:245
msgid "File uploads are not allowed on this server."
-msgstr ""
+msgstr "Завантаження файлів на цьому сервері не допускаються."
#: libraries/display_import.lib.php:276
-#, fuzzy
#| msgid "Partial Texts"
msgid "Partial Import:"
-msgstr "Часткові тексти"
+msgstr "Частковий імпорт:"
#: libraries/display_import.lib.php:282
#, php-format
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
+"Попередній імпорт прострочений, після повторного надсилання він почнеться з "
+"позиції %d."
#: libraries/display_import.lib.php:289
-#, fuzzy
#| msgid ""
#| "Allow interrupt of import in case script detects it is close to time "
#| "limit. This might be a good way to import large files, however it can "
@@ -6669,35 +6684,35 @@ msgid ""
"to the PHP timeout limit. (This might be a good way to import large "
"files, however it can break transactions.)"
msgstr ""
-"Дозволити перервати імпорт у випадку коли скрипт виявляє що він близький до "
-"часу який був виділений на виконання. Це може бути хорошим способом для "
-"імпорту файлів великого розміру, проте це може призвести до відхилення "
-"транзакції."
+"Дозволити переривання імпорту у випадку, коли скрипт виявить наближення до "
+"вичерпання часу очікування PHP. (Це може бути хороший способом "
+"імпортування великих файлів, однак це можу привести до розриву "
+"пересилань)."
#: libraries/display_import.lib.php:296
msgid "Number of rows to skip, starting from the first row:"
-msgstr ""
+msgstr "Кількість пропущених рядків, починаючи з першого рядка:"
#: libraries/display_import.lib.php:318
msgid "Format-Specific Options:"
-msgstr ""
+msgstr "Параметри щодо формату:"
#: libraries/display_select_lang.lib.php:56
#: libraries/display_select_lang.lib.php:57 setup/frames/index.inc.php:75
msgid "Language"
-msgstr ""
+msgstr "Мова"
#: libraries/engines/innodb.lib.php:28
msgid "Data home directory"
-msgstr ""
+msgstr "Домашній каталог даних"
#: libraries/engines/innodb.lib.php:29
msgid "The common part of the directory path for all InnoDB data files."
-msgstr ""
+msgstr "Загальна частина шляху до каталогу всіх файлів даних InnoDB."
#: libraries/engines/innodb.lib.php:32
msgid "Data files"
-msgstr ""
+msgstr "Файли даних"
#: libraries/engines/innodb.lib.php:35
msgid "Autoextend increment"
@@ -7012,32 +7027,32 @@ msgid "Edit structure by following the \"Structure\" link"
msgstr ""
#: libraries/import.lib.php:1198
-#, fuzzy, php-format
+#, php-format
#| msgid "No databases"
msgid "Go to database: %s"
-msgstr "БД відсутні"
+msgstr "Перейти до бази даних: %s"
#: libraries/import.lib.php:1201 libraries/import.lib.php:1229
#, php-format
msgid "Edit settings for %s"
-msgstr ""
+msgstr "Редагувати налаштування для %s"
#: libraries/import.lib.php:1224
-#, fuzzy, php-format
+#, php-format
#| msgid "Set value: %s"
msgid "Go to table: %s"
-msgstr "Встановити значення: %s"
+msgstr "Перейти до таблиці: %s"
#: libraries/import.lib.php:1227
-#, fuzzy, php-format
+#, php-format
#| msgid "Structure only"
msgid "Structure of %s"
-msgstr "Лише структуру"
+msgstr "Структура %s"
#: libraries/import.lib.php:1235
#, php-format
msgid "Go to view: %s"
-msgstr ""
+msgstr "Перейти до подання: %s"
#: libraries/insert_edit.lib.php:214 libraries/insert_edit.lib.php:245
#: pmd_general.php:197
@@ -7050,10 +7065,9 @@ msgid "Binary"
msgstr "Двійковий"
#: libraries/insert_edit.lib.php:653
-#, fuzzy
#| msgid "Because of its length,
this field might not be editable "
msgid "Because of its length,
this column might not be editable"
-msgstr "Через велику довжину,
це поле не може бути відредаговано "
+msgstr "Через велику довжину,
цей стовпчик не може бути відредаговано"
#: libraries/insert_edit.lib.php:1089
msgid "Binary - do not edit"
@@ -7061,7 +7075,7 @@ msgstr "Двійкові дані - не редагуються"
#: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:467
msgid "web server upload directory"
-msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
+msgstr "каталог веб-сервера для відвантаження файлів (upload directory)"
#: libraries/insert_edit.lib.php:1402
#, php-format
@@ -7135,14 +7149,12 @@ msgid "Copy table with prefix"
msgstr "Копіювати таблицю з префіксом"
#: libraries/mult_submits.inc.php:280
-#, fuzzy
-#| msgid "Fr"
msgid "From"
-msgstr "Пт"
+msgstr "Від"
#: libraries/mult_submits.inc.php:283
msgid "To"
-msgstr ""
+msgstr "До"
#: libraries/mult_submits.inc.php:289 libraries/mult_submits.inc.php:306
#: libraries/sql_query_form.lib.php:407
@@ -7151,11 +7163,11 @@ msgstr "Виконати"
#: libraries/mult_submits.inc.php:297
msgid "Add table prefix"
-msgstr ""
+msgstr "Додати префікс таблиці"
#: libraries/mult_submits.inc.php:300
msgid "Add prefix"
-msgstr ""
+msgstr "Додати префікс"
#: libraries/mult_submits.inc.php:316 sql.php:499
#, fuzzy
@@ -7185,39 +7197,39 @@ msgstr "Китайське Традиційне"
#: libraries/mysql_charsets.lib.php:261 libraries/mysql_charsets.lib.php:447
msgid "case-insensitive"
-msgstr "case-insensitive"
+msgstr "нечутливий до регістру"
#: libraries/mysql_charsets.lib.php:264 libraries/mysql_charsets.lib.php:449
msgid "case-sensitive"
-msgstr "case-sensitive"
+msgstr "чутливий до регістру"
#: libraries/mysql_charsets.lib.php:267
msgid "Croatian"
-msgstr "Кроатське"
+msgstr "Хорватська"
#: libraries/mysql_charsets.lib.php:270
msgid "Czech"
-msgstr "Чеське"
+msgstr "Чеська"
#: libraries/mysql_charsets.lib.php:273
msgid "Danish"
-msgstr "Данське"
+msgstr "Датська"
#: libraries/mysql_charsets.lib.php:276
msgid "English"
-msgstr "Англійське"
+msgstr "Англійська"
#: libraries/mysql_charsets.lib.php:279
msgid "Esperanto"
-msgstr ""
+msgstr "Есперанто"
#: libraries/mysql_charsets.lib.php:282
msgid "Estonian"
-msgstr "Естонське"
+msgstr "Естонська"
#: libraries/mysql_charsets.lib.php:285 libraries/mysql_charsets.lib.php:288
msgid "German"
-msgstr "Німецьке"
+msgstr "Німецька"
#: libraries/mysql_charsets.lib.php:285
msgid "dictionary"
@@ -7229,35 +7241,35 @@ msgstr "телефонна книга"
#: libraries/mysql_charsets.lib.php:291
msgid "Hungarian"
-msgstr "Мадярське"
+msgstr "Угорська"
#: libraries/mysql_charsets.lib.php:294
msgid "Icelandic"
-msgstr ""
+msgstr "Ісландська"
#: libraries/mysql_charsets.lib.php:297 libraries/mysql_charsets.lib.php:387
msgid "Japanese"
-msgstr "Японське"
+msgstr "Японська"
#: libraries/mysql_charsets.lib.php:300
msgid "Latvian"
-msgstr ""
+msgstr "Латвійська"
#: libraries/mysql_charsets.lib.php:303
msgid "Lithuanian"
-msgstr "Литовське"
+msgstr "Литовська"
#: libraries/mysql_charsets.lib.php:306 libraries/mysql_charsets.lib.php:409
msgid "Korean"
-msgstr "Корейське"
+msgstr "Корейська"
#: libraries/mysql_charsets.lib.php:309
msgid "Persian"
-msgstr ""
+msgstr "Перська"
#: libraries/mysql_charsets.lib.php:312
msgid "Polish"
-msgstr ""
+msgstr "Польська"
#: libraries/mysql_charsets.lib.php:315 libraries/mysql_charsets.lib.php:363
msgid "West European"
@@ -7265,23 +7277,23 @@ msgstr "Західно Європейське"
#: libraries/mysql_charsets.lib.php:318
msgid "Romanian"
-msgstr ""
+msgstr "Румунська"
#: libraries/mysql_charsets.lib.php:321
msgid "Slovak"
-msgstr ""
+msgstr "Словацька"
#: libraries/mysql_charsets.lib.php:324
msgid "Slovenian"
-msgstr ""
+msgstr "Словенська"
#: libraries/mysql_charsets.lib.php:327
msgid "Spanish"
-msgstr ""
+msgstr "Іспанська"
#: libraries/mysql_charsets.lib.php:330
msgid "Traditional Spanish"
-msgstr ""
+msgstr "Традиційна іспанська"
#: libraries/mysql_charsets.lib.php:333 libraries/mysql_charsets.lib.php:430
msgid "Swedish"
@@ -7293,11 +7305,11 @@ msgstr "Тайське"
#: libraries/mysql_charsets.lib.php:339 libraries/mysql_charsets.lib.php:427
msgid "Turkish"
-msgstr "Турецьке"
+msgstr "Турецька"
#: libraries/mysql_charsets.lib.php:342 libraries/mysql_charsets.lib.php:424
msgid "Ukrainian"
-msgstr "Українське"
+msgstr "Українська"
#: libraries/mysql_charsets.lib.php:345 libraries/mysql_charsets.lib.php:354
msgid "Unicode"
@@ -7315,7 +7327,7 @@ msgstr "СхідноЄвропейське"
#: libraries/mysql_charsets.lib.php:375
msgid "Russian"
-msgstr "Російське"
+msgstr "Російська"
#: libraries/mysql_charsets.lib.php:392
msgid "Baltic"
@@ -7339,7 +7351,7 @@ msgstr "Іврит"
#: libraries/mysql_charsets.lib.php:415
msgid "Georgian"
-msgstr ""
+msgstr "Грузинська"
#: libraries/mysql_charsets.lib.php:418
msgid "Greek"
@@ -7347,7 +7359,7 @@ msgstr "Грецьке"
#: libraries/mysql_charsets.lib.php:421
msgid "Czech-Slovak"
-msgstr ""
+msgstr "Чехословацька"
#: libraries/mysql_charsets.lib.php:436 libraries/mysql_charsets.lib.php:443
#: libraries/structure.lib.php:1068
@@ -7433,7 +7445,7 @@ msgstr "Новий"
#: libraries/plugins/export/ExportSql.class.php:475
#: libraries/plugins/export/ExportXml.class.php:107
msgid "Functions"
-msgstr ""
+msgstr "Функції"
#: libraries/navigation/Nodes/Node_Function_Container.class.php:36
#, fuzzy
@@ -7453,7 +7465,7 @@ msgstr "Новий"
#: libraries/plugins/export/ExportSql.class.php:458
#: libraries/plugins/export/ExportXml.class.php:111
msgid "Procedures"
-msgstr ""
+msgstr "Процедури"
#: libraries/navigation/Nodes/Node_Procedure_Container.class.php:36
#: libraries/rte/rte_footer.lib.php:29
@@ -7480,7 +7492,7 @@ msgstr "Новий"
#: libraries/navigation/Nodes/Node_View_Container.class.php:26
#: libraries/plugins/export/ExportXml.class.php:125
msgid "Views"
-msgstr ""
+msgstr "Подання"
#: libraries/navigation/Nodes/Node_View_Container.class.php:36
#, fuzzy
@@ -7531,7 +7543,7 @@ msgstr "Виконайте CREATE DATABASE перед копіюванням"
#: libraries/operations.lib.php:199 libraries/operations.lib.php:1036
msgid "Add constraints"
-msgstr "Додати constraints"
+msgstr "Додати обмеження"
#: libraries/operations.lib.php:207
msgid "Switch to copied database"
@@ -7576,7 +7588,7 @@ msgstr "Перейти до скопійованої таблиці"
#: libraries/operations.lib.php:1078
msgid "Table maintenance"
-msgstr "Обслговування таблиці"
+msgstr "Обслуговування таблиці"
#: libraries/operations.lib.php:1116 libraries/structure.lib.php:309
msgid "Check table"
@@ -7584,7 +7596,7 @@ msgstr "Перевірити таблицю"
#: libraries/operations.lib.php:1129
msgid "Defragment table"
-msgstr ""
+msgstr "Дефрагментувати таблицю"
#: libraries/operations.lib.php:1143 libraries/structure.lib.php:317
msgid "Analyze table"
@@ -7611,18 +7623,17 @@ msgid "Flush the table (FLUSH)"
msgstr "Очистити кеш таблиці (\"FLUSH\")"
#: libraries/operations.lib.php:1237
-#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
-msgstr "Дамп даних таблиці"
+msgstr "Видалити дані або таблицю"
#: libraries/operations.lib.php:1245
msgid "Empty the table (TRUNCATE)"
-msgstr ""
+msgstr "Очистити таблицю (TRUNCATE)"
#: libraries/operations.lib.php:1253
msgid "Delete the table (DROP)"
-msgstr "Видалити таюлицю (DROP)"
+msgstr "Видалити таблицю (DROP)"
#: libraries/operations.lib.php:1295
msgid "Analyze"
@@ -7662,10 +7673,8 @@ msgid "Check referential integrity:"
msgstr "Перевір цілісність даних на рівні посилань:"
#: libraries/plugin_interface.lib.php:503
-#, fuzzy
-#| msgid "This format has no options"
msgid "This format has no options"
-msgstr "Цей формат не має опцій"
+msgstr "Цей формат не має параметрів"
#: libraries/plugins/auth/AuthenticationConfig.class.php:73
msgid "Cannot connect: invalid settings."
@@ -7780,17 +7789,14 @@ msgstr "Авторизуємося…"
#: libraries/plugins/export/ExportCsv.class.php:93
#: libraries/plugins/import/ImportCsv.class.php:82
-#, fuzzy
-#| msgid "Lines terminated by"
msgid "Columns separated with:"
-msgstr "Рядки розділено"
+msgstr "Стовпці розділені з:"
#: libraries/plugins/export/ExportCsv.class.php:97
#: libraries/plugins/import/ImportCsv.class.php:88
-#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed with:"
-msgstr "Поля взято в"
+msgstr "Стовпчики взято в:"
#: libraries/plugins/export/ExportCsv.class.php:101
#: libraries/plugins/import/ImportCsv.class.php:94
@@ -7801,10 +7807,9 @@ msgstr "Поля екрануються"
#: libraries/plugins/export/ExportCsv.class.php:105
#: libraries/plugins/import/ImportCsv.class.php:100
-#, fuzzy
#| msgid "Lines terminated by"
msgid "Lines terminated with:"
-msgstr "Рядки розділено"
+msgstr "Рядки закінчуються:"
#: libraries/plugins/export/ExportCsv.class.php:109
#: libraries/plugins/export/ExportExcel.class.php:58
@@ -7813,29 +7818,25 @@ msgstr "Рядки розділено"
#: libraries/plugins/export/ExportOds.class.php:71
#: libraries/plugins/export/ExportOdt.class.php:132
#: libraries/plugins/export/ExportTexytext.class.php:89
-#, fuzzy
-#| msgid "Replace NULL by"
msgid "Replace NULL with:"
-msgstr "Замінити NULL на"
+msgstr "Замінити значення NULL на:"
#: libraries/plugins/export/ExportCsv.class.php:114
#: libraries/plugins/export/ExportExcel.class.php:63
msgid "Remove carriage return/line feed characters within columns"
-msgstr ""
+msgstr "Видаляти символи повернення каретки/завершення рядка в стовпчиках"
#: libraries/plugins/export/ExportExcel.class.php:78
msgid "Excel edition:"
-msgstr ""
+msgstr "Excel редакція:"
#: libraries/plugins/export/ExportHtmlword.class.php:81
#: libraries/plugins/export/ExportLatex.class.php:157
#: libraries/plugins/export/ExportOdt.class.php:123
#: libraries/plugins/export/ExportTexytext.class.php:80
#: libraries/plugins/export/ExportXml.class.php:133
-#, fuzzy
-#| msgid "Database export options"
msgid "Data dump options"
-msgstr "Налаштування експорту бази даних"
+msgstr "Параметри дампу даних"
#: libraries/plugins/export/ExportHtmlword.class.php:203
#: libraries/plugins/export/ExportOdt.class.php:258
@@ -7882,11 +7883,11 @@ msgstr ""
#: libraries/plugins/export/ExportLatex.class.php:43
msgid "Content of table @TABLE@"
-msgstr ""
+msgstr "Вміст таблиці @TABLE@"
#: libraries/plugins/export/ExportLatex.class.php:44
msgid "(continued)"
-msgstr ""
+msgstr "(продовження)"
#: libraries/plugins/export/ExportLatex.class.php:45
msgid "Structure of table @TABLE@"
@@ -7895,17 +7896,13 @@ msgstr "Структура таблиці @TABLE@"
#: libraries/plugins/export/ExportLatex.class.php:116
#: libraries/plugins/export/ExportOdt.class.php:97
#: libraries/plugins/export/ExportSql.class.php:213
-#, fuzzy
-#| msgid "Transformation options"
msgid "Object creation options"
-msgstr "Опції перетворення"
+msgstr "Параметри створення об'єкта"
#: libraries/plugins/export/ExportLatex.class.php:126
#: libraries/plugins/export/ExportLatex.class.php:171
-#, fuzzy
-#| msgid "Table of contents"
msgid "Table caption (continued)"
-msgstr "Зміст"
+msgstr "Заголовок таблиці (продовження)"
#: libraries/plugins/export/ExportLatex.class.php:137
#: libraries/plugins/export/ExportOdt.class.php:103
@@ -7915,18 +7912,14 @@ msgstr ""
#: libraries/plugins/export/ExportLatex.class.php:142
#: libraries/plugins/export/ExportOdt.class.php:108
-#, fuzzy
-#| msgid "Displaying Column Comments"
msgid "Display comments"
-msgstr "Показувати коментарі стовпців"
+msgstr "Відображення коментарів"
#: libraries/plugins/export/ExportLatex.class.php:147
#: libraries/plugins/export/ExportOdt.class.php:113
#: libraries/plugins/export/ExportSql.class.php:120
-#, fuzzy
-#| msgid "Available MIME types"
msgid "Display MIME types"
-msgstr "Доступні MIME-types"
+msgstr "Відображати Типи MIME"
#: libraries/plugins/export/ExportLatex.class.php:218
#: libraries/plugins/export/ExportSql.class.php:601
@@ -7977,10 +7970,8 @@ msgid "(Generates a report containing the data of a single table)"
msgstr ""
#: libraries/plugins/export/ExportPdf.class.php:102
-#, fuzzy
-#| msgid "Import files"
msgid "Report title:"
-msgstr "Імпорт файлів"
+msgstr "Заголовок звіту:"
#: libraries/plugins/export/ExportSql.class.php:90
msgid ""
@@ -8006,16 +7997,13 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:184
#: libraries/plugins/export/ExportSql.class.php:241
#: libraries/plugins/export/ExportSql.class.php:249
-#, fuzzy, php-format
-#| msgid "Statements"
+#, php-format
msgid "Add %s statement"
-msgstr "Параметр"
+msgstr "Додати оператор %s"
#: libraries/plugins/export/ExportSql.class.php:220
-#, fuzzy
-#| msgid "Statements"
msgid "Add statements:"
-msgstr "Параметр"
+msgstr "Додати оператори:"
#: libraries/plugins/export/ExportSql.class.php:279
msgid ""
@@ -8036,16 +8024,16 @@ msgstr ""
#: libraries/plugins/export/ExportSql.class.php:305
msgid "Instead of INSERT statements, use:"
-msgstr ""
+msgstr "Замість виразів INSERT використовуйте:"
#: libraries/plugins/export/ExportSql.class.php:311
msgid "INSERT DELAYED statements"
-msgstr ""
+msgstr "Вирази INSERT DELAYED"
#: libraries/plugins/export/ExportSql.class.php:322
#: libraries/plugins/export/ExportSql.class.php:352
msgid "INSERT IGNORE statements"
-msgstr ""
+msgstr "Вирази INSERT IGNORE"
#: libraries/plugins/export/ExportSql.class.php:335
msgid "Function to use when dumping data:"
@@ -8110,10 +8098,8 @@ msgid "RELATIONS FOR TABLE"
msgstr ""
#: libraries/plugins/export/ExportSql.class.php:1566
-#, fuzzy
-#| msgid "Allows reading data."
msgid "Error reading data:"
-msgstr "Дозволити читання даних."
+msgstr "Помилка читання даних:"
#: libraries/plugins/export/ExportXml.class.php:102
msgid "Object creation options (all are recommended)"
@@ -8138,10 +8124,8 @@ msgid ""
msgstr ""
#: libraries/plugins/import/ImportCsv.class.php:127
-#, fuzzy
-#| msgid "Column names"
msgid "Column names: "
-msgstr "Назви колонок"
+msgstr "Назви стовпців: "
#: libraries/plugins/import/ImportCsv.class.php:177
#: libraries/plugins/import/ImportCsv.class.php:192
@@ -8175,7 +8159,7 @@ msgstr ""
#: libraries/plugins/import/ImportMediawiki.class.php:56
msgid "MediaWiki Table"
-msgstr ""
+msgstr "Таблиця MediaWiki"
#: libraries/plugins/import/ImportMediawiki.class.php:303
#, php-format
@@ -8228,7 +8212,7 @@ msgstr ""
#: libraries/plugins/import/ImportSql.class.php:83
msgid "Do not use AUTO_INCREMENT for zero values"
-msgstr ""
+msgstr "Не використовувати AUTO_INCREMENT для нульових значень"
#: libraries/plugins/import/ImportXml.class.php:53
msgid "XML"
@@ -8324,8 +8308,8 @@ msgid ""
"Displays a clickable thumbnail. The options are the maximum width and height "
"in pixels. The original aspect ratio is preserved."
msgstr ""
-"Відображає clickable thumbnail; опції: ширина, висота у пікселах (зберігає "
-"початкові пропорції)"
+"Відображає клікабельний ескіз. Параметрами є максимальна ширина і висота в "
+"пікселях. Оригінальні пропорції зберігаються."
#: libraries/plugins/transformations/abstract/LongToIPv4TransformationsPlugin.class.php:31
msgid ""
@@ -8449,7 +8433,7 @@ msgstr ""
#: libraries/relation.lib.php:265
msgid "Create a pma user and give access to these tables."
-msgstr "Створити phpMyAdmin користувача та дати йому доступ до цих таблиць"
+msgstr "Створити користувача phpMyAdmin та дати йому доступ до цих таблиць."
#: libraries/relation.lib.php:270
msgid ""
@@ -8649,8 +8633,6 @@ msgid "Start"
msgstr "Старт"
#: libraries/rte/rte_events.lib.php:505
-#, fuzzy
-#| msgid "End"
msgctxt "End of recurring event"
msgid "End"
msgstr "Кінець"
@@ -8785,9 +8767,8 @@ msgid "Security type"
msgstr "Тип безпеки"
#: libraries/rte/rte_routines.lib.php:1017
-#, fuzzy
msgid "SQL data access"
-msgstr "доступ SQL даних"
+msgstr "Доступ до даних SQL"
#: libraries/rte/rte_routines.lib.php:1086
msgid "You must provide a routine name"
@@ -8863,8 +8844,6 @@ msgid "Trigger name"
msgstr "Назва тригера"
#: libraries/rte/rte_triggers.lib.php:373
-#, fuzzy
-#| msgid "Time"
msgctxt "Trigger action time"
msgid "Time"
msgstr "Час"
@@ -9123,8 +9102,9 @@ msgstr "ввімкнути чорновик (scratchboard)"
#. l10n: Text direction for language, use either "ltr" or "rtl"
#: libraries/select_lang.lib.php:499
+#, fuzzy
msgid "ltr"
-msgstr "ltr"
+msgstr "зліва направо"
#: libraries/select_lang.lib.php:517 libraries/select_lang.lib.php:526
#: libraries/select_lang.lib.php:535
@@ -9426,10 +9406,8 @@ msgid "Grant"
msgstr "Grant"
#: libraries/server_privileges.lib.php:1617
-#, fuzzy
-#| msgid "The row has been deleted"
msgid "User has been added."
-msgstr "Рядок видалено"
+msgstr "Користувача було додано."
#: libraries/server_privileges.lib.php:1625
#, fuzzy
@@ -9457,10 +9435,8 @@ msgid "wildcard"
msgstr "шаблон"
#: libraries/server_privileges.lib.php:1751 server_privileges.php:168
-#, fuzzy
-#| msgid "No user(s) found."
msgid "No user found."
-msgstr "Не знайдено користувача."
+msgstr "Користувача не знайдено."
#: libraries/server_privileges.lib.php:1777
#: libraries/server_privileges.lib.php:2853
@@ -9554,8 +9530,6 @@ msgid "Privileges for %s"
msgstr "Привілеї"
#: libraries/server_privileges.lib.php:2907
-#, fuzzy
-#| msgid "User overview"
msgid "Users overview"
msgstr "Огляд користувачів"
@@ -9627,9 +9601,8 @@ msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
"below, if there is any, may also help you in diagnosing the problem"
msgstr ""
-"There seems to be an error in your SQL query. Повідомлення MySQL сервера про "
-"помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні "
-"проблеми."
+"Схоже на помилку у SQL запиті. У визначенні проблеми може допомогти "
+"повідомлення про помилку сервера MySQL, що наведено нижче (якщо таке є)"
#: libraries/sqlparser.lib.php:171
msgid ""
@@ -9711,7 +9684,7 @@ msgstr "Трекінг не активний."
#: libraries/structure.lib.php:129 tbl_operations.php:327
#, php-format
msgid "View %s has been dropped"
-msgstr "Вигляд %s знищено"
+msgstr "Подання %s було знищено"
#: libraries/structure.lib.php:130 tbl_operations.php:328
#, php-format
@@ -9778,14 +9751,13 @@ msgid "Move the columns by dragging them up and down."
msgstr ""
#: libraries/structure.lib.php:1460
-#, fuzzy
#| msgid "Print view"
msgid "Edit view"
-msgstr "Версія для друку"
+msgstr "Редагувати подання"
#: libraries/structure.lib.php:1493
msgid "Relation view"
-msgstr "Перегляд залежностей"
+msgstr "Подання зв'язків"
#: libraries/structure.lib.php:1505
msgid "Propose table structure"
@@ -9793,16 +9765,13 @@ msgstr "Запропонувати структуру таблиці"
#: libraries/structure.lib.php:1541
#: libraries/tbl_columns_definition_form.inc.php:760
-#, fuzzy
-#| msgid "You have to choose at least one column to display"
msgid "You have to add at least one column."
-msgstr "Необхідно вибрати принаймі один Стовпчик для показу"
+msgstr "Необхідно додати принаймні один стовпчик."
#: libraries/structure.lib.php:1552
-#, fuzzy
#| msgid "Add into comments"
msgid "Add column"
-msgstr "Додати коментар"
+msgstr "Додати стовпчик"
#: libraries/structure.lib.php:1557
#: libraries/tbl_columns_definition_form.inc.php:750
@@ -9835,7 +9804,7 @@ msgstr "Статистика рядка"
#: libraries/structure.lib.php:1705 tbl_printview.php:353
msgid "static"
-msgstr ""
+msgstr "статичний"
#: libraries/structure.lib.php:1707 tbl_printview.php:355
msgid "dynamic"
@@ -9978,8 +9947,6 @@ msgid "Get more editing space"
msgstr ""
#: libraries/tbl_columns_definition_form.inc.php:429
-#, fuzzy
-#| msgid "None"
msgctxt "for default"
msgid "None"
msgstr "Немає"
@@ -10000,7 +9967,7 @@ msgstr "Після %s"
#: libraries/tbl_columns_definition_form.inc.php:739
msgid "Table name"
-msgstr ""
+msgstr "Назва таблиці"
#: libraries/tbl_columns_definition_form.inc.php:878
msgid "PARTITION definition"
@@ -10019,10 +9986,9 @@ msgid "Manage your settings"
msgstr "Загальні можливості"
#: libraries/user_preferences.inc.php:46 prefs_manage.php:292
-#, fuzzy
#| msgid "Modifications have been saved"
msgid "Configuration has been saved"
-msgstr "Модифікації було збережено"
+msgstr "Конфігурація була збережена"
#: libraries/user_preferences.inc.php:66
#, php-format
@@ -10051,7 +10017,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -10619,10 +10585,10 @@ msgid "Network traffic since startup: %s"
msgstr ""
#: server_status.php:83
-#, fuzzy, php-format
+#, 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."
+msgstr "Цей MySQL сервер працює %1$s. Стартував %2$s."
#: server_status.php:93
msgid ""
@@ -10683,10 +10649,9 @@ msgid "Command"
msgstr "Команда"
#: server_status_advisor.php:29
-#, fuzzy
#| msgid "Administration"
msgid "Instructions"
-msgstr "Адміністратор"
+msgstr "Команди"
#: server_status_advisor.php:35
msgid ""
@@ -10738,16 +10703,14 @@ msgid "Rearrange/edit charts"
msgstr ""
#: server_status_monitor.php:496
-#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
-msgstr "Оновити"
+msgstr "Частота оновлення"
#: server_status_monitor.php:505
-#, fuzzy
#| msgid "Column names"
msgid "Chart columns"
-msgstr "Назви колонок"
+msgstr "Діаграма стовпців"
#: server_status_monitor.php:521
msgid "Chart arrangement"
@@ -10836,10 +10799,9 @@ msgid "Commonly monitored"
msgstr ""
#: server_status_monitor.php:635
-#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
-msgstr "Неправильна назва таблиці"
+msgstr "або введіть назву змінної:"
#: server_status_monitor.php:642
msgid "Display as differential value"
@@ -10854,10 +10816,9 @@ msgid "Append unit to data values"
msgstr ""
#: server_status_monitor.php:659
-#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
-msgstr "Додати нового користувача"
+msgstr "Додати ці серії"
#: server_status_monitor.php:661
msgid "Clear series"
@@ -10874,10 +10835,9 @@ msgid "Log statistics"
msgstr "Статистика рядка"
#: server_status_monitor.php:676
-#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
-msgstr "Вибрати таблиці"
+msgstr "Обраний проміжок часу:"
#: server_status_monitor.php:682
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
@@ -10902,22 +10862,22 @@ msgid "Query analyzer"
msgstr "Тип запиту"
#: server_status_monitor.php:745
-#, fuzzy, php-format
+#, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
-msgstr[0] "Секунда"
-msgstr[1] "Секунда"
-msgstr[2] "Секунда"
+msgstr[0] "%d секунда"
+msgstr[1] "%d секунди"
+msgstr[2] "%d секунд"
#: server_status_monitor.php:748
-#, fuzzy, php-format
+#, php-format
#| msgid "Minute"
msgid "%d minute"
msgid_plural "%d minutes"
-msgstr[0] "Хвилина"
-msgstr[1] "Хвилина"
-msgstr[2] "Хвилина"
+msgstr[0] "%d хвилина"
+msgstr[1] "%d хвилини"
+msgstr[2] "%d хвилин"
#: server_status_queries.php:67
#, php-format
@@ -10938,26 +10898,20 @@ msgid "Filters"
msgstr ""
#: server_status_variables.php:82 server_variables.php:158
-#, fuzzy
-#| msgid "Do not change the password"
msgid "Containing the word:"
-msgstr "Не змінювати пароль"
+msgstr "Містить слова:"
#: server_status_variables.php:89
-#, fuzzy
-#| msgid "Show tables"
msgid "Show only alert values"
-msgstr "Показати таблиці"
+msgstr "Показати тільки оповіщення значень"
#: server_status_variables.php:94
msgid "Filter by category…"
msgstr ""
#: server_status_variables.php:114
-#, fuzzy
-#| msgid "Show tables"
msgid "Show unformatted values"
-msgstr "Показати таблиці"
+msgstr "Показати неформатовані значення"
#: server_status_variables.php:133
#, fuzzy
@@ -11555,6 +11509,7 @@ msgid "Global value"
msgstr "Загальне значення"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -11591,10 +11546,9 @@ msgid "Insecure connection"
msgstr ""
#: setup/frames/index.inc.php:98
-#, fuzzy
#| msgid "Modifications have been saved"
msgid "Configuration saved."
-msgstr "Модифікації було збережено"
+msgstr "Конфігурація збережена."
#: setup/frames/index.inc.php:99
msgid ""
@@ -11833,10 +11787,9 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters."
msgstr ""
#: setup/validate.php:22
-#, fuzzy
#| msgid "No databases"
msgid "Wrong data"
-msgstr "БД відсутні"
+msgstr "Неправильні дані"
#: sql.php:299
#, php-format
@@ -11861,7 +11814,7 @@ msgstr "Перевірити SQL"
#: sql.php:1086
msgid "SQL result"
-msgstr "SQL result"
+msgstr "Результат SQL"
#: sql.php:1093
msgid "Generated by"
@@ -11883,14 +11836,12 @@ msgid "No data to display"
msgstr "БД відсутні"
#: tbl_chart.php:132
-#, fuzzy
#| msgid "Mar"
msgctxt "Chart type"
msgid "Bar"
-msgstr "Бер"
+msgstr "Прямокутник"
#: tbl_chart.php:134
-#, fuzzy
#| msgid "Column"
msgctxt "Chart type"
msgid "Column"
@@ -11912,11 +11863,10 @@ msgid "Area"
msgstr ""
#: tbl_chart.php:144
-#, fuzzy
#| msgid "PiB"
msgctxt "Chart type"
msgid "Pie"
-msgstr "PB"
+msgstr "Пиріг"
#: tbl_chart.php:148
#, fuzzy
@@ -11930,10 +11880,9 @@ msgid "Stacked"
msgstr ""
#: tbl_chart.php:158
-#, fuzzy
#| msgid "Import files"
msgid "Chart title"
-msgstr "Імпорт файлів"
+msgstr "Назва діаграми"
#: tbl_chart.php:165
msgid "X-Axis:"
@@ -11951,7 +11900,7 @@ msgstr ""
#, fuzzy
#| msgid "Value"
msgid "X Values"
-msgstr "Значення"
+msgstr "Значення X"
#: tbl_chart.php:215
msgid "Y-Axis label:"
@@ -11976,49 +11925,33 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr "Переглянути дамп (схему) таблиці"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr ""
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
-#, fuzzy
+#: tbl_gis_visualization.php:110
#| msgid "Add into comments"
msgid "Label column"
-msgstr "Додати коментар"
+msgstr "Мітка стовпчика"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "Разом"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Зберегти як файл"
-
-#: tbl_gis_visualization.php:179
-#, fuzzy
+#: tbl_gis_visualization.php:164
#| msgid "User name"
msgid "File name"
-msgstr "Ім'я користувача"
+msgstr "Назва файлу"
#: tbl_indexes.php:71
msgid "The name of the primary key must be \"PRIMARY\"!"
@@ -12033,10 +11966,9 @@ msgid "No index parts defined!"
msgstr "Не визначено частини індекса!"
#: tbl_indexes.php:193
-#, fuzzy
#| msgid "Edit mode"
msgid "Edit index"
-msgstr "Режим редагування"
+msgstr "Редагувати індекс"
#: tbl_indexes.php:205
msgid "Index name:"
@@ -12091,10 +12023,9 @@ msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
#: tbl_relation.php:364
-#, fuzzy
#| msgid "General relation features"
msgid "Internal relation"
-msgstr "Загальні можливості"
+msgstr "Внутрішні відносини"
#: tbl_relation.php:366
msgid ""
@@ -12130,7 +12061,7 @@ msgstr "Трекінг є активним."
#: tbl_tracking.php:253
msgid "SQL statements executed."
-msgstr ""
+msgstr "SQL вирази виконано."
#: tbl_tracking.php:260
msgid ""
@@ -12156,10 +12087,9 @@ msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:456 tbl_tracking.php:480
-#, fuzzy
#| msgid "Query type"
msgid "Query error"
-msgstr "Тип запиту"
+msgstr "Помилка запиту"
#: tbl_tracking.php:477
msgid "Tracking data manipulation successfully deleted"
@@ -12175,16 +12105,15 @@ msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s"
msgstr ""
#: tbl_tracking.php:531
-#, fuzzy
#| msgid "Deleting tracking data"
msgid "Delete tracking data row from report"
-msgstr "Видалення даних трекінгу"
+msgstr "Видалити рядки даних відстеження із звіту"
#: tbl_tracking.php:545
#, fuzzy
#| msgid "No databases"
msgid "No data"
-msgstr "БД відсутні"
+msgstr "Немає даних"
#: tbl_tracking.php:554 tbl_tracking.php:616
msgid "Date"
@@ -12221,7 +12150,7 @@ msgstr ""
#: tbl_tracking.php:735
msgid "Show versions"
-msgstr ""
+msgstr "Показати версії"
#: tbl_tracking.php:823
#, fuzzy, php-format
@@ -12262,7 +12191,7 @@ msgstr ""
#: themes.php:24
msgid "Get more themes!"
-msgstr ""
+msgstr "Ще теми!"
#: transformation_overview.php:21
msgid "Available MIME types"
@@ -12361,10 +12290,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%."
msgstr ""
#: libraries/advisory_rules.txt:70
-#, fuzzy
#| msgid "Show query box"
msgid "Slow query rate"
-msgstr "Показати блок запиту"
+msgstr "Низька частота запитів"
#: libraries/advisory_rules.txt:73
msgid ""
@@ -12379,10 +12307,9 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:77
-#, fuzzy
#| msgid "in query"
msgid "Long query time"
-msgstr "по запиту"
+msgstr "Довгий час запиту"
#: libraries/advisory_rules.txt:80
msgid ""
@@ -12456,10 +12383,10 @@ msgstr ""
#: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112
#: libraries/advisory_rules.txt:119
-#, fuzzy, php-format
+#, php-format
#| msgid "General relation features"
msgid "Current version: %s"
-msgstr "Загальні можливості"
+msgstr "Поточна версія: %s"
#: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114
#, fuzzy
@@ -12489,14 +12416,15 @@ msgstr "Вам необхідно оновити до %s %s або пізніш
#: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128
#: libraries/advisory_rules.txt:135
-#, fuzzy
#| msgid "Description"
msgid "Distribution"
-msgstr "Опис"
+msgstr "Дистрибутив"
#: libraries/advisory_rules.txt:124
msgid "Version is compiled from source, not a MySQL official binary."
msgstr ""
+"Версія скомпільована з вихідних кодів, не з офіційного двійкового коду "
+"MySQL."
#: libraries/advisory_rules.txt:125
msgid ""
@@ -12553,16 +12481,14 @@ msgid "Available memory on this host: %s"
msgstr ""
#: libraries/advisory_rules.txt:153
-#, fuzzy
#| msgid "Query cache used"
msgid "Query cache disabled"
-msgstr "Використанний кеш запитів"
+msgstr "Кеш запитів вимкнено"
#: libraries/advisory_rules.txt:156
-#, fuzzy
#| msgid "Tracking is not active."
msgid "The query cache is not enabled."
-msgstr "Трекінг не активний."
+msgstr "Кеш запитів не увімкнено."
#: libraries/advisory_rules.txt:157
msgid ""
@@ -12577,10 +12503,9 @@ msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
msgstr ""
#: libraries/advisory_rules.txt:160
-#, fuzzy
#| msgid "Space usage"
msgid "Query caching method"
-msgstr "Простір, що використовується"
+msgstr "Метод кешування запитів"
#: libraries/advisory_rules.txt:163
#, fuzzy
@@ -12604,10 +12529,10 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:167
-#, fuzzy, php-format
+#, php-format
#| msgid "Query cache efficiency"
msgid "Query cache efficiency (%%)"
-msgstr "Ефективність кешу запитів"
+msgstr "Ефективність кешу запитів (%%)"
#: libraries/advisory_rules.txt:170
msgid "Query cache not running efficiently, it has a low hit rate."
@@ -12623,9 +12548,8 @@ msgid "The current query cache hit rate of %s%% is below 20%%"
msgstr ""
#: libraries/advisory_rules.txt:174
-#, fuzzy
msgid "Query Cache usage"
-msgstr "Простір, що використовується"
+msgstr "Використання кешу запитів"
#: libraries/advisory_rules.txt:177
#, php-format
@@ -12646,10 +12570,9 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:181
-#, fuzzy
#| msgid "Query cache usage"
msgid "Query cache fragmentation"
-msgstr "Використання кешу запитів"
+msgstr "Фрагментація кешу запитів"
#: libraries/advisory_rules.txt:184
#, fuzzy
@@ -12704,10 +12627,9 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:195
-#, fuzzy
#| msgid "Query cache used"
msgid "Query cache max size"
-msgstr "Використанний кеш запитів"
+msgstr "Максимальний розмір кешу запитів"
#: libraries/advisory_rules.txt:198
msgid ""
@@ -12792,10 +12714,9 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:225
-#, fuzzy
#| msgid "Showing rows"
msgid "Sort rows"
-msgstr "Показано записи "
+msgstr "Сортувати рядки"
#: libraries/advisory_rules.txt:228
msgid "There are lots of rows being sorted."
@@ -13266,10 +13187,8 @@ msgid ""
msgstr ""
#: libraries/advisory_rules.txt:399
-#, fuzzy
-#| msgid "Connections"
msgid "Percentage of aborted connections"
-msgstr "З'єднань"
+msgstr "Відсоток перерваних підключень"
#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409
msgid "Too many connections are aborted."
@@ -13465,6 +13384,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert встановлений у 0"
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Зберегти як файл"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/ur.po b/po/ur.po
index a01a8f8645..a64bf07bbe 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-11-05 10:19+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Urdu \n"
@@ -549,7 +549,7 @@ msgstr "برآمد قسم"
msgid "Value for the column \"%s\""
msgstr "کالم کی قدریں\"%s\""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -765,7 +765,7 @@ msgid "Database server"
msgstr "کوائفیے"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "سرور"
@@ -1851,7 +1851,7 @@ msgstr ""
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr ""
@@ -3914,24 +3914,24 @@ msgstr "کوائفیہ استحقاق کی پڑتال کریں "%s"."
msgid "Check Privileges"
msgstr "استحقاق پڑتال کریں"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Configuration file"
msgid "Failed to read configuration file"
msgstr "تشکیلی مسل"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s"
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3943,38 +3943,38 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] ہدایات آپ کے تشکیل مسل میں لازمی موجود "
"ہوں!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "غلط سرور اشاریہ: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔"
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔"
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4416,7 +4416,7 @@ msgid "Character set of the file"
msgstr "مسل کے لیے حروف کی سیٹ"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "وضع"
@@ -10103,7 +10103,7 @@ msgid "Error in ZIP archive:"
msgstr ""
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11615,6 +11615,7 @@ msgid "Global value"
msgstr ""
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr ""
@@ -12036,47 +12037,33 @@ msgstr ""
msgid "View dump (schema) of table"
msgstr ""
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
#, fuzzy
#| msgid "Display servers selection"
msgid "Display GIS Visualization"
msgstr "سرور انتخاب دکھائیں"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Label column"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr ""
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total"
msgid "Spatial column"
msgstr "میزان"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "بطور مسل محفوظ کریں"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Page number:"
msgid "File name"
@@ -13515,6 +13502,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "بطور مسل محفوظ کریں"
+
#, fuzzy
#~| msgid "Total"
#~ msgid "Total count"
diff --git a/po/uz.po b/po/uz.po
index 1fa5eb934a..b092ddead8 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-17 09:10+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uzbek \n"
@@ -539,7 +539,7 @@ msgstr "Жадвалларни экспорт қилиш"
msgid "Value for the column \"%s\""
msgstr ""
-#: gis_data_editor.php:140 tbl_gis_visualization.php:173
+#: gis_data_editor.php:140 tbl_gis_visualization.php:152
msgid "Use OpenStreetMaps as Base Layer"
msgstr ""
@@ -764,7 +764,7 @@ msgid "Database server"
msgstr "Фойдаланувчи учун маълумотлар базаси"
#: index.php:230 libraries/Menu.class.php:150
-#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:653
+#: libraries/ServerStatusData.class.php:341 libraries/common.inc.php:655
#: libraries/config/messages.inc.php:506
msgid "Server"
msgstr "Сервер"
@@ -1927,7 +1927,7 @@ msgstr "%d сони тўғри қатор рақами эмас."
#: libraries/schema/User_Schema.class.php:375
#: libraries/tbl_columns_definition_form.inc.php:900 server_variables.php:132
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:246
-#: tbl_gis_visualization.php:195 tbl_indexes.php:334 tbl_relation.php:519
+#: tbl_indexes.php:334 tbl_relation.php:519
msgid "Save"
msgstr "Сақлаш"
@@ -4097,25 +4097,25 @@ msgstr "\"%s\" маълумотлар базасининг привилегия
msgid "Check Privileges"
msgstr "Привилегияларни текшириш"
-#: libraries/common.inc.php:577
+#: libraries/common.inc.php:579
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Failed to read configuration file"
msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
-#: libraries/common.inc.php:579
+#: libraries/common.inc.php:581
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:586
+#: libraries/common.inc.php:588
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади."
-#: libraries/common.inc.php:593
+#: libraries/common.inc.php:595
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4127,42 +4127,42 @@ msgstr ""
"$cfg[\"PmaAbsoluteUrl\"] директиваси конфигурацион файлда "
"созланиши ШАРТ!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Сервер рақами нотўғри: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"%1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион "
"файлида белгиланган созлашларни тўғирланг."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
"phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4642,7 +4642,7 @@ msgid "Character set of the file"
msgstr "Файл кодировкаси"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Формат"
@@ -10868,7 +10868,7 @@ msgid "Error in ZIP archive:"
msgstr "Ушбу ZIP архивда хатолик:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12578,6 +12578,7 @@ msgid "Global value"
msgstr "Глобал қиймат"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Юклаб олиш"
@@ -13111,49 +13112,35 @@ msgstr "%1$s жадвали тузилди."
msgid "View dump (schema) of table"
msgstr "Жадвал дампини (схемасини) намойиш этиш"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
#, fuzzy
#| msgid "Display servers selection"
msgid "Display GIS Visualization"
msgstr "Сервер танловини кўрсатиш"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Label column"
msgstr "CHAR майдонидаги устунлар сони"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
#, fuzzy
#| msgid "- none -"
msgid "-- None --"
msgstr "- йўқ -"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Журнал файллари сони"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Файл каби сақлаш"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -14653,6 +14640,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Максимал уланишлар сони "
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Файл каби сақлаш"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 88a01a1aa3..c735c7792d 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2012-12-13 13:07+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uzbek (latin) $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -4158,43 +4158,43 @@ msgstr ""
"$cfg[\"PmaAbsoluteUrl\"] direktivasi konfiguratsion faylda "
"sozlanishi SHART!"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Server raqami noto‘g‘ri: \"%s\""
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"%1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin "
"konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr ""
"phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli "
"belgilangan:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr ""
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr ""
@@ -4675,7 +4675,7 @@ msgid "Character set of the file"
msgstr "Fayl kodirovkasi"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "Format"
@@ -10943,7 +10943,7 @@ msgid "Error in ZIP archive:"
msgstr "Ushbu ZIP arxivda xatolik:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -12669,6 +12669,7 @@ msgid "Global value"
msgstr "Global qiymat"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "Yuklab olish"
@@ -13205,49 +13206,35 @@ msgstr "%1$s jadvali tuzildi."
msgid "View dump (schema) of table"
msgstr "Jadval dampini (sxemasini) namoyish etish"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
#, fuzzy
#| msgid "Display servers selection"
msgid "Display GIS Visualization"
msgstr "Server tanlovini ko‘rsatish"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr ""
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr ""
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Label column"
msgstr "CHAR maydonidagi ustunlar soni"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
#, fuzzy
#| msgid "- none -"
msgid "-- None --"
msgstr "- yo‘q -"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Log file count"
msgid "Spatial column"
msgstr "Jurnal fayllari soni"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr ""
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "Fayl kabi saqlash"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -14749,6 +14736,11 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Maksimal ulanishlar soni "
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "Fayl kabi saqlash"
+
#, fuzzy
#~| msgid "Log file count"
#~ msgid "Total count"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 2a99154322..56a355a823 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:42+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Chinese (China) $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3743,38 +3743,38 @@ msgid ""
"configuration file!"
msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] !"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "无效的服务器索引: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "无效的主机名 %1$s,请检查配置文件。"
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "配置文件中设置的认证方式无效:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "您应升级到 %s %s 或更高版本。"
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "企图覆盖 GLOBALS"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "可利用"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "监测到数值型键"
@@ -4205,7 +4205,7 @@ msgid "Character set of the file"
msgstr "文件字符集"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "格式"
@@ -9836,7 +9836,7 @@ msgid "Error in ZIP archive:"
msgstr "ZIP 包中有错误:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11376,6 +11376,7 @@ msgid "Global value"
msgstr "全局值"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "下载"
@@ -11805,39 +11806,27 @@ msgstr "创建数据表 %1$s 成功。"
msgid "View dump (schema) of table"
msgstr "查看数据表的转储(大纲)"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
msgid "Display GIS Visualization"
msgstr "显示可视化 GIS"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "宽"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "高"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
msgid "Label column"
msgstr "名称字段"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
msgid "-- None --"
msgstr "-- 无 --"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
msgid "Spatial column"
msgstr "空间字段"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "重绘"
-#: tbl_gis_visualization.php:178
-msgid "Save to file"
-msgstr "保存文件"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
msgid "File name"
msgstr "文件名"
@@ -13237,6 +13226,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 被设为 0"
+#~ msgid "Width"
+#~ msgstr "宽"
+
+#~ msgid "Height"
+#~ msgstr "高"
+
+#~ msgid "Save to file"
+#~ msgstr "保存文件"
+
#~ msgid "Total count"
#~ msgstr "总计"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 210610f798..24e37a379b 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-01-18 14:17+0100\n"
+"POT-Creation-Date: 2013-01-21 00:59+0100\n"
"PO-Revision-Date: 2013-01-10 13:43+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Chinese (Taiwan) $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3778,38 +3778,38 @@ msgid ""
"configuration file!"
msgstr "必須在您的設定檔案中設定 $cfg['PmaAbsoluteUri'] !"
-#: libraries/common.inc.php:626
+#: libraries/common.inc.php:628
#, php-format
msgid "Invalid server index: %s"
msgstr "無效的伺服器索引: %s"
-#: libraries/common.inc.php:637
+#: libraries/common.inc.php:639
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案."
-#: libraries/common.inc.php:846
+#: libraries/common.inc.php:848
msgid "Invalid authentication method set in configuration:"
msgstr "設定檔案中設定的認證方式無效:"
-#: libraries/common.inc.php:968
+#: libraries/common.inc.php:970
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "您應升級到 %s %s 或更高版本。"
-#: libraries/common.inc.php:1042
+#: libraries/common.inc.php:1044
msgid "Error: Token mismatch"
msgstr ""
-#: libraries/common.inc.php:1086
+#: libraries/common.inc.php:1088
msgid "GLOBALS overwrite attempt"
msgstr "嘗試覆寫 GLOBALS (全域變數)"
-#: libraries/common.inc.php:1093
+#: libraries/common.inc.php:1095
msgid "possible exploit"
msgstr "$_REQUEST 數量過多(駭客?)"
-#: libraries/common.inc.php:1102
+#: libraries/common.inc.php:1104
msgid "numeric key detected"
msgstr "$_GLOBALS 內含非法的數字鍵名"
@@ -4240,7 +4240,7 @@ msgid "Character set of the file"
msgstr "檔案字集"
#: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86
-#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:182
+#: libraries/structure.lib.php:1712 tbl_gis_visualization.php:167
#: tbl_printview.php:350
msgid "Format"
msgstr "格式"
@@ -9922,7 +9922,7 @@ msgid "Error in ZIP archive:"
msgstr "ZIP 包中有錯誤:"
#: navigation.php:23
-msgid "Fatal error: The navigation can only be accessed via ajax"
+msgid "Fatal error: The navigation can only be accessed via AJAX"
msgstr ""
#: pmd_display_field.php:60 pmd_save_pos.php:81
@@ -11488,6 +11488,7 @@ msgid "Global value"
msgstr "全域值"
#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
+#: tbl_gis_visualization.php:180
msgid "Download"
msgstr "下載"
@@ -11941,49 +11942,35 @@ msgstr "建立資料表 %1$s 成功"
msgid "View dump (schema) of table"
msgstr "查看資料表的轉存(大綱)"
-#: tbl_gis_visualization.php:109
+#: tbl_gis_visualization.php:105
#, fuzzy
#| msgid "Display servers selection"
msgid "Display GIS Visualization"
msgstr "顯示伺服器選擇"
-#: tbl_gis_visualization.php:126
-msgid "Width"
-msgstr "寬"
-
-#: tbl_gis_visualization.php:130
-msgid "Height"
-msgstr "高"
-
-#: tbl_gis_visualization.php:134
+#: tbl_gis_visualization.php:110
#, fuzzy
#| msgid "Textarea columns"
msgid "Label column"
msgstr "文本框列"
-#: tbl_gis_visualization.php:136
+#: tbl_gis_visualization.php:112
#, fuzzy
#| msgid "- none -"
msgid "-- None --"
msgstr "- 無 -"
-#: tbl_gis_visualization.php:150
+#: tbl_gis_visualization.php:126
#, fuzzy
#| msgid "Total count"
msgid "Spatial column"
msgstr "總數量"
-#: tbl_gis_visualization.php:176
+#: tbl_gis_visualization.php:141
msgid "Redraw"
msgstr "重繪"
-#: tbl_gis_visualization.php:178
-#, fuzzy
-#| msgid "Save as file"
-msgid "Save to file"
-msgstr "另存檔案"
-
-#: tbl_gis_visualization.php:179
+#: tbl_gis_visualization.php:164
#, fuzzy
#| msgid "Table name"
msgid "File name"
@@ -13479,6 +13466,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 已被設置為 0"
+#~ msgid "Width"
+#~ msgstr "寬"
+
+#~ msgid "Height"
+#~ msgstr "高"
+
+#, fuzzy
+#~| msgid "Save as file"
+#~ msgid "Save to file"
+#~ msgstr "另存檔案"
+
#~ msgid "Total count"
#~ msgstr "總數量"
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index d1158a6827..f822ff8e7e 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -312,8 +312,7 @@ Todo now:
- in doc/conf.py (if it exists) the line
" version = '2.7.1-dev' "
- 8. add a group for bug tracking this new version, at
- https://sourceforge.net/tracker/admin/index.php?group_id=23067&atid=377408&add_group=1
+ 8. add a milestone for this new version in the bugs tickets, at https://sourceforge.net/p/phpmyadmin/bugs/milestones
9. the end :-)
diff --git a/test/libraries/common/PMA_extractColumnSpec_test.php b/test/libraries/common/PMA_extractColumnSpec_test.php
index a582670614..ac26fd673a 100644
--- a/test/libraries/common/PMA_extractColumnSpec_test.php
+++ b/test/libraries/common/PMA_extractColumnSpec_test.php
@@ -57,9 +57,9 @@ class PMA_extractColumnSpec_test extends PHPUnit_Framework_TestCase
'enum_set_values' => array('a', 'b'),
'attribute' => ' ',
'can_contain_collation' => true,
- 'displayed_type' => "set('a', 'b')",
- ),
+ 'displayed_type' => "set('a', 'b')"
),
+ ),
array(
"SET('\'a','b')",
array(
@@ -72,9 +72,9 @@ class PMA_extractColumnSpec_test extends PHPUnit_Framework_TestCase
'enum_set_values' => array("'a", 'b'),
'attribute' => ' ',
'can_contain_collation' => true,
- 'displayed_type' => "set('\'a', 'b')",
- ),
+ 'displayed_type' => "set('\'a', 'b')"
),
+ ),
array(
"SET('''a','b')",
array(
@@ -87,9 +87,24 @@ class PMA_extractColumnSpec_test extends PHPUnit_Framework_TestCase
'enum_set_values' => array("'a", 'b'),
'attribute' => ' ',
'can_contain_collation' => true,
- 'displayed_type' => "set('''a', 'b')",
- ),
+ 'displayed_type' => "set('''a', 'b')"
),
+ ),
+ array(
+ "ENUM('a&b', 'b''c\\'d', 'e\\\\f')",
+ array(
+ 'type' => 'enum',
+ 'print_type' => "enum('a&b', 'b''c\\'d', 'e\\\\f')",
+ 'binary' => false,
+ 'unsigned' => false,
+ 'zerofill' => false,
+ 'spec_in_brackets' => "'a&b', 'b''c\\'d', 'e\\\\f'",
+ 'enum_set_values' => array('a&b', 'b\'c\'d', 'e\\f'),
+ 'attribute' => ' ',
+ 'can_contain_collation' => true,
+ 'displayed_type' => "enum('a&b', 'b''c\\'d', 'e\\\\f')"
+ ),
+ ),
array(
"INT UNSIGNED zerofill",
array(
@@ -102,9 +117,9 @@ class PMA_extractColumnSpec_test extends PHPUnit_Framework_TestCase
'enum_set_values' => array(),
'attribute' => 'UNSIGNED ZEROFILL',
'can_contain_collation' => false,
- 'displayed_type' => "int",
- ),
+ 'displayed_type' => "int"
),
+ ),
array(
"VARCHAR(255)",
array(
@@ -117,9 +132,9 @@ class PMA_extractColumnSpec_test extends PHPUnit_Framework_TestCase
'enum_set_values' => array(),
'attribute' => ' ',
'can_contain_collation' => true,
- 'displayed_type' => "varchar(255)",
- ),
+ 'displayed_type' => "varchar(255)"
),
+ ),
array(
"VARBINARY(255)",
array(
@@ -132,9 +147,9 @@ class PMA_extractColumnSpec_test extends PHPUnit_Framework_TestCase
'enum_set_values' => array(),
'attribute' => ' ',
'can_contain_collation' => false,
- 'displayed_type' => "varbinary(255)",
- ),
+ 'displayed_type' => "varbinary(255)"
),
- );
+ ),
+ );
}
}