diff --git a/ChangeLog b/ChangeLog
index e1e8d7553f..dc4a3f07de 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,20 @@
phpMyAdmin - ChangeLog
======================
+4.4.15.0 (2015-09-20)
+- issue #11411 Undefined "replace" function on numeric scalar
+- issue #11421 Stored-proc / routine - broken parameter parsing
+- issue Missing name for configuration read_as_multibytes
+- issue #11431 Incorrect "No row selected" message
+- issue #11447 MySQL 5.5 and the language system variable
+- issue #11452 Semantics of export and import icons are mixed up
+- issue #11451 Designer-Bug in move.js on multiple server configuration
+- issue #11458 Invalid UTF-8 sequence in argument
+- issue #11457 Request URI too large
+- issue Invalid argument supplied for foreach()
+- issue #11461 Foreign key constraints for InnoDB tables with upper-case letters disabled
+- issue #11487 Warning when entering Query page
+
4.4.14.1 (2015-09-08)
- issue [security] reCaptcha bypass
diff --git a/README b/README
index 27b722aaca..f939e7fbf3 100644
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
phpMyAdmin - Readme
===================
-Version 4.4.14.1
+Version 4.4.15
A set of PHP-scripts to manage MySQL over the web.
diff --git a/doc/conf.py b/doc/conf.py
index 6a7b22ac32..028a3ad4c6 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -51,7 +51,7 @@ copyright = u'2012 - 2014, The phpMyAdmin devel team'
# built documents.
#
# The short X.Y version.
-version = '4.4.14.1'
+version = '4.4.15'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/doc/require.rst b/doc/require.rst
index bb54a1e9ee..42854bd6ed 100644
--- a/doc/require.rst
+++ b/doc/require.rst
@@ -12,7 +12,7 @@ web server (such as Apache, :term:`IIS`) to install phpMyAdmin's files into.
PHP
---
-* You need PHP 5.3.0 or newer, with ``session`` support, the Standard PHP Library
+* You need PHP 5.3.7 or newer, with ``session`` support, the Standard PHP Library
(SPL) extension, JSON support, and the ``mbstring`` extension.
* To support uploading of ZIP files, you need the PHP ``zip`` extension.
diff --git a/js/functions.js b/js/functions.js
index f4a9fd1466..d8f5eb61d9 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -144,6 +144,7 @@ function PMA_tooltip($elements, item, myContent, additionalOptions)
function escapeHtml(unsafe) {
if (typeof(unsafe) != 'undefined') {
return unsafe
+ .toString()
.replace(/&/g, "&")
.replace(//g, ">")
diff --git a/js/pmd/move.js b/js/pmd/move.js
index 0d86fa1918..d58b0c1f83 100644
--- a/js/pmd/move.js
+++ b/js/pmd/move.js
@@ -676,6 +676,7 @@ function Save3(callback)
};
var $form = $('
')
+ .append('')
.append('')
.append('')
.append('')
@@ -718,7 +719,7 @@ function Edit_pages()
};
var $msgbox = PMA_ajaxShowMessage();
- var params = 'ajax_request=true&dialog=edit&token=' + token + '&db=' + db;
+ var params = 'ajax_request=true&dialog=edit&server=' + server + '&token=' + token + '&db=' + db;
$.get("db_designer.php", params, function (data) {
if (data.success === false) {
PMA_ajaxShowMessage(data.error, false);
@@ -798,7 +799,7 @@ function Delete_pages()
};
var $msgbox = PMA_ajaxShowMessage();
- var params = 'ajax_request=true&dialog=delete&token=' + token + '&db=' + db;
+ var params = 'ajax_request=true&dialog=delete&server=' + server + '&token=' + token + '&db=' + db;
$.get("db_designer.php", params, function (data) {
if (data.success === false) {
PMA_ajaxShowMessage(data.error, false);
@@ -897,7 +898,7 @@ function Save_as()
};
var $msgbox = PMA_ajaxShowMessage();
- var params = 'ajax_request=true&dialog=save_as&token=' + token + '&db=' + db;
+ var params = 'ajax_request=true&dialog=save_as&server=' + server + '&token=' + token + '&db=' + db;
$.get("db_designer.php", params, function (data) {
if (data.success === false) {
PMA_ajaxShowMessage(data.error, false);
@@ -974,7 +975,7 @@ function Export_pages()
$(this).dialog('close');
};
var $msgbox = PMA_ajaxShowMessage();
- var params = 'ajax_request=true&dialog=export&token=' + token + '&db=' + db + '&selected_page=' + selected_page;
+ var params = 'ajax_request=true&dialog=export&server=' + server + '&token=' + token + '&db=' + db + '&selected_page=' + selected_page;
$.get("db_designer.php", params, function (data) {
if (data.success === false) {
PMA_ajaxShowMessage(data.error, false);
@@ -1015,7 +1016,7 @@ function Load_page(page) {
if (page !== null) {
param_page = '&page=' + page;
}
- $('')
+ $('')
.appendTo($('#page_content'))
.click();
} else {
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index 392586a9dd..790f54eb10 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -114,7 +114,7 @@ class PMA_Config
*/
function checkSystem()
{
- $this->set('PMA_VERSION', '4.4.14.1');
+ $this->set('PMA_VERSION', '4.4.15');
/**
* @deprecated
*/
diff --git a/libraries/DatabaseInterface.class.php b/libraries/DatabaseInterface.class.php
index 6f1f7241b4..f564078dba 100644
--- a/libraries/DatabaseInterface.class.php
+++ b/libraries/DatabaseInterface.class.php
@@ -228,42 +228,43 @@ class PMA_DatabaseInterface
public function convertMessage($message)
{
// latin always last!
+ // @todo some values are missing,
+ // see https://mariadb.com/kb/en/mariadb/server-locale/
+
$encodings = array(
- 'japanese' => 'EUC-JP', //'ujis',
- 'japanese-sjis' => 'Shift-JIS', //'sjis',
- 'korean' => 'EUC-KR', //'euckr',
- 'russian' => 'KOI8-R', //'koi8r',
- 'ukrainian' => 'KOI8-U', //'koi8u',
- 'greek' => 'ISO-8859-7', //'greek',
- 'serbian' => 'CP1250', //'cp1250',
- 'estonian' => 'ISO-8859-13', //'latin7',
- 'slovak' => 'ISO-8859-2', //'latin2',
- 'czech' => 'ISO-8859-2', //'latin2',
- 'hungarian' => 'ISO-8859-2', //'latin2',
- 'polish' => 'ISO-8859-2', //'latin2',
- 'romanian' => 'ISO-8859-2', //'latin2',
- 'spanish' => 'CP1252', //'latin1',
- 'swedish' => 'CP1252', //'latin1',
- 'italian' => 'CP1252', //'latin1',
- 'norwegian-ny' => 'CP1252', //'latin1',
- 'norwegian' => 'CP1252', //'latin1',
- 'portuguese' => 'CP1252', //'latin1',
- 'danish' => 'CP1252', //'latin1',
- 'dutch' => 'CP1252', //'latin1',
- 'english' => 'CP1252', //'latin1',
- 'french' => 'CP1252', //'latin1',
- 'german' => 'CP1252', //'latin1',
+ 'ja' => 'EUC-JP', //'ujis',
+ 'ko' => 'EUC-KR', //'euckr',
+ 'ru' => 'KOI8-R', //'koi8r',
+ 'uk' => 'KOI8-U', //'koi8u',
+ 'sr' => 'CP1250', //'cp1250',
+ 'et' => 'ISO-8859-13', //'latin7',
+ 'sk' => 'ISO-8859-2', //'latin2',
+ 'cz' => 'ISO-8859-2', //'latin2',
+ 'hu' => 'ISO-8859-2', //'latin2',
+ 'pl' => 'ISO-8859-2', //'latin2',
+ 'ro' => 'ISO-8859-2', //'latin2',
+ 'es' => 'CP1252', //'latin1',
+ 'sv' => 'CP1252', //'latin1',
+ 'it' => 'CP1252', //'latin1',
+ 'no' => 'CP1252', //'latin1',
+ 'pt' => 'CP1252', //'latin1',
+ 'da' => 'CP1252', //'latin1',
+ 'nl' => 'CP1252', //'latin1',
+ 'en' => 'CP1252', //'latin1',
+ 'fr' => 'CP1252', //'latin1',
+ 'de' => 'CP1252', //'latin1',
);
$server_language = $this->fetchValue(
- 'SHOW VARIABLES LIKE \'language\';',
+ 'SELECT @@lc_messages;',
0,
- 1
+ 0
);
+
if ($server_language) {
$found = array();
$match = preg_match(
- '&(?:\\\|\\/)([^\\\\\/]*)(?:\\\|\\/)$&i',
+ '&([a-z][a-z])_&i',
$server_language,
$found
);
@@ -321,7 +322,8 @@ class PMA_DatabaseInterface
)
. '%\'';
} else {
- $sql_where_table = 'AND t.`TABLE_NAME` = \''
+ $sql_where_table = 'AND t.`TABLE_NAME` '
+ . PMA_Util::getCollateForIS() . ' = \''
. PMA_Util::sqlAddSlashes($table) . '\'';
}
} else {
@@ -423,7 +425,7 @@ class PMA_DatabaseInterface
`CREATE_OPTIONS` AS `Create_options`,
`TABLE_COMMENT` AS `Comment`
FROM `information_schema`.`TABLES` t
- WHERE ' . (PMA_IS_WINDOWS ? '' : 'BINARY') . ' `TABLE_SCHEMA`
+ WHERE `TABLE_SCHEMA` ' . PMA_Util::getCollateForIS() . '
IN (\'' . implode("', '", $this_databases) . '\')
' . $sql_where_table;
}
@@ -1410,8 +1412,8 @@ class PMA_DatabaseInterface
* @param boolean $full whether to return full info or only column names
* @param mixed $link mysql link resource
*
- * @return false|array array indexed by column names or,
- * if $column is given, flat array description
+ * @return array array indexed by column names or,
+ * if $column is given, flat array description
*/
public function getColumns($database, $table, $column = null, $full = false,
$link = null
@@ -1419,7 +1421,7 @@ class PMA_DatabaseInterface
$sql = $this->getColumnsSql($database, $table, $column, $full);
$fields = $this->fetchResult($sql, 'Field', null, $link);
if (! is_array($fields) || count($fields) == 0) {
- return null;
+ return array();
}
// Check if column is a part of multiple-column index and set its 'Key'.
$indexes = PMA_Index::getFromTable($table, $database);
diff --git a/libraries/Scripts.class.php b/libraries/Scripts.class.php
index 9feb02cbcb..54c688a5f8 100644
--- a/libraries/Scripts.class.php
+++ b/libraries/Scripts.class.php
@@ -82,12 +82,17 @@ class PMA_Scripts
}
}
$separator = PMA_URL_getArgSeparator();
- $url = 'js/get_scripts.js.php?' . implode($separator, $scripts);
+ $static_scripts = '';
+ // Using chunks of 20 files to avoid too long URLs
+ $script_chunks = array_chunk($scripts, 20);
+ foreach ($script_chunks as $script_chunk) {
+ $url = 'js/get_scripts.js.php?' . implode($separator, $script_chunk);
- $static_scripts = sprintf(
- '',
- htmlspecialchars($url)
- );
+ $static_scripts .= sprintf(
+ '',
+ htmlspecialchars($url)
+ );
+ }
return $first_dynamic_scripts . $static_scripts . $dynamic_scripts;
}
diff --git a/libraries/Util.class.php b/libraries/Util.class.php
index e8e4bc7d45..04e504ef9b 100644
--- a/libraries/Util.class.php
+++ b/libraries/Util.class.php
@@ -4517,7 +4517,9 @@ class PMA_Util
"SHOW VARIABLES LIKE 'lower_case_table_names'", 0, 1
);
- if ($lowerCaseTableNames === '0') {
+ if ($lowerCaseTableNames === '0' // issue #10961
+ || $lowerCaseTableNames === '2' // issue #11461
+ ) {
return "COLLATE utf8_bin";
}
return "";
diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php
index 1fac1cf293..e77e979a71 100644
--- a/libraries/config/messages.inc.php
+++ b/libraries/config/messages.inc.php
@@ -360,6 +360,7 @@ $strConfigImport_skip_queries_name = __('Partial import: skip queries');
$strConfigImport_sql_compatibility_name = __('SQL compatibility mode');
$strConfigImport_sql_no_auto_value_on_zero_name
= __('Do not use AUTO_INCREMENT for zero values');
+$strConfigImport_sql_read_as_multibytes_name = __('Read as multibytes');
$strConfigImport_xls_col_names_name = __('Column names in first row');
$strConfigImport_xlsx_col_names_name = __('Column names in first row');
$strConfigInitialSlidersState_name = __('Initial state for sliders');
diff --git a/libraries/dbi/DBIDummy.class.php b/libraries/dbi/DBIDummy.class.php
index fef75e867c..5f86921724 100644
--- a/libraries/dbi/DBIDummy.class.php
+++ b/libraries/dbi/DBIDummy.class.php
@@ -25,6 +25,10 @@ $GLOBALS['dummy_queries'] = array(
'query' => 'SELECT CURRENT_USER();',
'result' => array(array('pma_test@localhost')),
),
+ array(
+ 'query' => "SHOW VARIABLES LIKE 'lower_case_table_names'",
+ 'result' => array(array('lower_case_table_names', '1'))
+ ),
array(
'query' => 'SELECT 1 FROM mysql.user LIMIT 1',
'result' => array(array('1')),
@@ -122,7 +126,7 @@ $GLOBALS['dummy_queries'] = array(
)
),
array(
- 'query' => 'SHOW VARIABLES LIKE \'language\';',
+ 'query' => 'SELECT @@lc_messages;',
'result' => array(),
),
array(
@@ -258,7 +262,7 @@ $GLOBALS['dummy_queries'] = array(
. ' `CHECKSUM` AS `Checksum`, `CREATE_OPTIONS` AS `Create_options`,'
. ' `TABLE_COMMENT` AS `Comment`'
. ' FROM `information_schema`.`TABLES` t'
- . ' WHERE BINARY `TABLE_SCHEMA` IN (\'pma_test\')'
+ . ' WHERE `TABLE_SCHEMA` IN (\'pma_test\')'
. ' AND t.`TABLE_NAME` = \'table1\' ORDER BY Name ASC',
'columns' => array(
'TABLE_CATALOG', 'TABLE_SCHEMA', 'TABLE_NAME', 'TABLE_TYPE', 'ENGINE',
diff --git a/libraries/plugins/auth/AuthenticationCookie.class.php b/libraries/plugins/auth/AuthenticationCookie.class.php
index 2b75262e7e..3732b6c269 100644
--- a/libraries/plugins/auth/AuthenticationCookie.class.php
+++ b/libraries/plugins/auth/AuthenticationCookie.class.php
@@ -764,7 +764,7 @@ class AuthenticationCookie extends AuthenticationPlugin
if (is_null($this->_cookie_iv)) {
$this->_cookie_iv = base64_decode($_COOKIE['pma_iv-' . $GLOBALS['server']], true);
}
- if (strlen($this->_cookie_iv) < $this->getIVSize()) {
+ if (mb_strlen($this->_cookie_iv,'8bit') < $this->getIVSize()) {
$this->createIV();
}
diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php
index f9bfa2848f..70ec2a093d 100644
--- a/libraries/rte/rte_routines.lib.php
+++ b/libraries/rte/rte_routines.lib.php
@@ -105,6 +105,11 @@ function PMA_RTN_parseOneParameter($value)
4 => '');
$parsed_param = PMA_SQP_parse($value);
$pos = 0;
+ while ($pos < $parsed_param['len']
+ && $parsed_param[$pos]['type'] == 'white_newline'
+ ) {
+ $pos++;
+ }
if (in_array(
/*overload*/mb_strtoupper($parsed_param[$pos]['data']),
$param_directions
diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php
index eda069bb1e..bcf4d978f5 100644
--- a/libraries/server_privileges.lib.php
+++ b/libraries/server_privileges.lib.php
@@ -815,7 +815,7 @@ function PMA_getHtmlForRequires($row)
$html_output .= ' $one_key) {
- $html_output .= PMA_getHtmlForForeignKeyRow(
- $one_key, $odd_row, $columns, $i++, $options_array, $tbl_storage_engine,
- $db
- );
- $odd_row = ! $odd_row;
+ if (! empty($existrel_foreign)) {
+ foreach ($existrel_foreign as $key => $one_key) {
+ $html_output .= PMA_getHtmlForForeignKeyRow(
+ $one_key, $odd_row, $columns, $i++, $options_array,
+ $tbl_storage_engine, $db
+ );
+ $odd_row = ! $odd_row;
+ }
}
$html_output .= PMA_getHtmlForForeignKeyRow(
array(), $odd_row, $columns, $i++, $options_array, $tbl_storage_engine,
diff --git a/po/af.po b/po/af.po
index cc4d67b3e2..7ebf8d41dc 100644
--- a/po/af.po
+++ b/po/af.po
@@ -12002,7 +12002,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ar.po b/po/ar.po
index 73b86209bb..615f221101 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -12204,7 +12204,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/az.po b/po/az.po
index 78c101d6c1..b2a172c7ef 100644
--- a/po/az.po
+++ b/po/az.po
@@ -11387,7 +11387,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/be.po b/po/be.po
index f629d069ba..6ac2703cb8 100644
--- a/po/be.po
+++ b/po/be.po
@@ -12604,7 +12604,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/be@latin.po b/po/be@latin.po
index f30468928a..c9a2af3fd3 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -12660,7 +12660,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/bg.po b/po/bg.po
index befe3ccbd8..2ddbe6ef04 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -12150,7 +12150,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/bn.po b/po/bn.po
index 44fe3327cd..89c158f887 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -12059,7 +12059,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/br.po b/po/br.po
index b59f8344ea..0af5238069 100644
--- a/po/br.po
+++ b/po/br.po
@@ -12116,7 +12116,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/bs.po b/po/bs.po
index 06b374b3f5..50bba9cdf8 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -12239,7 +12239,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ca.po b/po/ca.po
index a390d80a57..b8dc72386e 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-20 08:07+0200\n"
-"Last-Translator: josep constanti \n"
-"Language-Team: Catalan \n"
+"PO-Revision-Date: 2015-09-16 14:31+0200\n"
+"Last-Translator: Michal Čihař \n"
+"Language-Team: Catalan "
+"\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -11876,8 +11876,8 @@ msgstr ""
"Es requereix que es presenti un certificat X509 vàlid amb aquest subjecte."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
-msgstr "Requereix un certificat X509 vàlid."
+msgid "Requires a valid X509 certificate."
+msgstr "Es requereix un certificat X509 vàlid."
#: libraries/server_privileges.lib.php:867
msgid "Resource limits"
@@ -13436,10 +13436,10 @@ msgid "Run SQL query/queries on database %s"
msgstr "Executa consulta/s SQL a la Base de Dades %s"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
-msgstr "Executa consulta/s SQL a la Base de Dades %s"
+msgstr "Executa consulta/s SQL a la taula %s"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
@@ -14626,10 +14626,9 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr "Fila: %1$s, Columna: %2$s, Error: %3$s"
#: tbl_row_action.php:65
-#, fuzzy
#| msgid "No versions selected."
msgid "No row selected."
-msgstr "No s'han triat versions."
+msgstr "No s'ha triat la fila."
#: tbl_structure.php:63
#, php-format
diff --git a/po/ckb.po b/po/ckb.po
index b3d047f36b..1cd7a12d6d 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -6,12 +6,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-06-22 11:43+0200\n"
-"Last-Translator: Zrng Abdulla \n"
-"Language-Team: Kurdish Sorani \n"
+"PO-Revision-Date: 2015-09-14 09:27+0200\n"
+"Last-Translator: muhammad \n"
+"Language-Team: Kurdish Sorani "
+"\n"
"Language: ckb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -3949,7 +3949,7 @@ msgstr ""
#: libraries/plugins/export/ExportXml.class.php:120
#: libraries/structure.lib.php:3102
msgid "Tables"
-msgstr ""
+msgstr "خشتەکان"
#: libraries/ServerStatusData.class.php:202
msgid "Transaction coordinator"
@@ -4695,7 +4695,7 @@ msgstr "ئەم نرخە هەڵبژێرە"
#: libraries/server_privileges.lib.php:1162 libraries/structure.lib.php:2353
#: libraries/tbl_printview.lib.php:308
msgid "Data"
-msgstr ""
+msgstr "دراوە"
#: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:171
#: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:185
@@ -11496,7 +11496,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/cs.po b/po/cs.po
index 3e0c843e4d..280c8770fc 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,8 +6,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-08-12 09:44+0200\n"
-"Last-Translator: Michal Čihař \n"
+"PO-Revision-Date: 2015-09-02 11:32+0200\n"
+"Last-Translator: Petr Kateřiňák \n"
"Language-Team: Czech "
"\n"
"Language: cs\n"
@@ -6396,7 +6396,6 @@ msgid "Minimum number of databases to display the database filter box"
msgstr "Minimální počet tabulek pro zobrazení filtru databází"
#: libraries/config/messages.inc.php:458
-#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
#| "below)."
@@ -11731,7 +11730,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/cy.po b/po/cy.po
index 3e14662cbe..7af4fda759 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -12297,7 +12297,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/da.po b/po/da.po
index d9593bf22d..191c2ac2a6 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-06-10 23:03+0200\n"
+"PO-Revision-Date: 2015-09-16 14:24+0200\n"
"Last-Translator: Aputsiaĸ Niels Janussen \n"
-"Language-Team: Danish \n"
+"Language-Team: Danish "
+"\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -72,7 +72,7 @@ msgstr "Tabelkommentarer:"
#: libraries/tbl_relation.lib.php:619 libraries/tracking.lib.php:877
#: libraries/tracking.lib.php:966
msgid "Column"
-msgstr "Kolonnenavn"
+msgstr "Kolonne"
#: db_datadict.php:104 db_printview.php:50 libraries/Index.class.php:648
#: libraries/TableSearch.class.php:186 libraries/central_columns.lib.php:654
@@ -584,7 +584,7 @@ msgstr "Udfør"
#: gis_data_editor.php:412
msgid "Output"
-msgstr "Output"
+msgstr "Resultat"
#: gis_data_editor.php:415
msgid ""
@@ -630,7 +630,7 @@ msgid ""
"without access to the %s directory (for temporary files)."
msgstr ""
"Den uploadede fil kan ikke flyttes, da serveren har open_basedir slået til, "
-"uden adgang til %s mappen (til midlertidige)."
+"uden adgang til %s mappen (til midlertidige filer)."
#: import.php:468 import.php:529 libraries/File.class.php:418
#: libraries/File.class.php:512
@@ -644,7 +644,7 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Du forsøgte at indlæse en fil med u-understøttet komprimering (%s). "
+"Du forsøgte at indlæse en fil med ikke understøttet komprimering (%s). "
"Understøttelse af denne funktion er ikke implementeret eller ikke slået til "
"for din konfiguration."
@@ -698,7 +698,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "Kunne ikke indlæse hvor langt importen er nået."
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -1119,7 +1119,7 @@ msgstr "De to adgangskoder er ikke ens!"
#: js/messages.php:100
msgid "Removing Selected Users"
-msgstr "Fjerner valge brugere"
+msgstr "Fjerner valgte brugere"
#: js/messages.php:101 js/messages.php:156 libraries/tracking.lib.php:457
#: libraries/tracking.lib.php:827
@@ -5310,6 +5310,9 @@ msgid ""
"MySQL server is enabled by matching the IP or hostname of the MySQL server "
"to the given regular expression."
msgstr ""
+"Begrænser de MySQL-servere som brugeren kan angive, når et login til en "
+"arbitrær MySQL-server er slået til, ved at matche IP-adressen eller "
+"værtsnavnet på MySQL-serveren til det angivne regulære udtryk."
#: libraries/config/messages.inc.php:25
msgid "Restrict login to MySQL server"
@@ -5911,7 +5914,6 @@ msgid "Page titles"
msgstr "Sidetitler"
#: libraries/config/messages.inc.php:251
-#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
#| "[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be "
@@ -5920,8 +5922,8 @@ msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-"Angiv browserens tekst i titelbaren. Se [doc@cfg_TitleTable]dokumentationen[/"
-"doc] for tekststrenge der indeholder særlige værdier."
+"Angiv browserens tekst i titelbaren. Se [doc@faq6-27]dokumentationen[/doc] "
+"for tekststrenge der indeholder særlige værdier."
#: libraries/config/messages.inc.php:255
msgid "Query window"
@@ -6149,11 +6151,11 @@ msgstr "Afbryd ikke ved fejl i INSERT"
#: libraries/config/messages.inc.php:337 libraries/config/messages.inc.php:349
msgid "Add ON DUPLICATE KEY UPDATE"
-msgstr ""
+msgstr "Tilføj ON DUPLICATE KEY UPDATE"
#: libraries/config/messages.inc.php:338 libraries/config/messages.inc.php:350
msgid "Update data when duplicate keys found on import"
-msgstr ""
+msgstr "Opdatér data når der findes duplikerede nøgler under import"
#: libraries/config/messages.inc.php:341
msgid ""
@@ -6432,7 +6434,6 @@ msgid "Minimum number of databases to display the database filter box"
msgstr "Mindste antal databaser, der skal vises i database-filterboksen"
#: libraries/config/messages.inc.php:458
-#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
#| "below)."
@@ -6440,7 +6441,8 @@ msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-"Gruppér elementer i navigationstræet (iht. separator defineret nedenfor)."
+"Gruppér elementer i navigationstræet (iht. separator defineret i databaserne "
+"og tabelfanerne ovenfor)."
#: libraries/config/messages.inc.php:460
msgid "Group items in the tree"
@@ -10179,6 +10181,8 @@ msgstr "Tabel:"
msgid ""
"Update data when duplicate keys found on import (add ON DUPLICATE KEY UPDATE)"
msgstr ""
+"Opdatér data når der findes duplikerede nøgler under import (tilføj ON "
+"DUPLICATE KEY UPDATE)"
#: libraries/plugins/import/ImportCsv.class.php:63
#: libraries/plugins/import/ImportOds.class.php:75
@@ -11494,7 +11498,7 @@ msgstr "Der er ingen hændelser at vise."
#: libraries/select_lang.lib.php:613
msgid "Ignoring unsupported language code."
-msgstr ""
+msgstr "Ignorér sprogkoder som ikke understøttes."
#: libraries/select_server.lib.php:41 libraries/select_server.lib.php:46
msgid "Current Server:"
@@ -11779,26 +11783,28 @@ msgstr "Kræver SSL-krypterede forbindelser."
#: libraries/server_privileges.lib.php:734
msgid "Require SSL"
-msgstr ""
+msgstr "Kræver SSL"
#: libraries/server_privileges.lib.php:759
#: libraries/server_privileges.lib.php:768
msgid "Requires that a specific cipher method be used for a connection."
-msgstr ""
+msgstr "Kræver at den specifikke chiffermetode anvendes for en forbindelse."
#: libraries/server_privileges.lib.php:778
#: libraries/server_privileges.lib.php:787
msgid "Requires that a valid X509 certificate issued by this CA be presented."
msgstr ""
+"Kræver at et gyldigt X509-certifikat som er udstedt af denne "
+"certifikatudsteder bliver forevist."
#: libraries/server_privileges.lib.php:797
#: libraries/server_privileges.lib.php:806
msgid "Requires that a valid X509 certificate with this subject be presented."
-msgstr ""
+msgstr "Kræver at et gyldigt X509-certifikat med dette emne bliver forevist."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
-msgstr ""
+msgid "Requires a valid X509 certificate."
+msgstr "Kræver et gyldigt X509-certifikat."
#: libraries/server_privileges.lib.php:867
msgid "Resource limits"
@@ -13349,14 +13355,14 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kør SQL-forspørgsel(er) på database %s"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
-msgstr "Kør SQL-forspørgsel(er) på database %s"
+msgstr "Kør SQL-forspørgsel/forespørgsler på tabellen %s"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
-msgstr ""
+msgstr "Hent automatisk gemt forespørgsel"
#: libraries/sql_query_form.lib.php:285
msgid "Bookmark this SQL query:"
@@ -14536,10 +14542,9 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr "Række: %1$s, kolonne: %2$s, fejl: %3$s"
#: tbl_row_action.php:65
-#, fuzzy
#| msgid "No versions selected."
msgid "No row selected."
-msgstr "Der er ikke valgt versioner."
+msgstr "Der er ikke valgt en række."
#: tbl_structure.php:63
#, php-format
@@ -14850,22 +14855,22 @@ msgid "The MySQL manual only is accurate for official MySQL binaries."
msgstr "MySQL manualen er kun korrekt for officielle MySQL binære filer."
#: libraries/advisory_rules.txt:132
-#, fuzzy
#| msgid "Percona documentation is at http://www.percona.com/docs/wiki/"
msgid ""
"Percona documentation is at http://www.percona.com/software/documentation/"
-msgstr "Percona dokumentation findes i http://www.percona.com/docs/wiki/"
+msgstr ""
+"Percona-dokumentationen fås på http://www.percona.com/software/documentation/"
#: libraries/advisory_rules.txt:133
msgid "'percona' found in version_comment"
msgstr "'percona' fundet i version_comment"
#: libraries/advisory_rules.txt:139
-#, fuzzy
#| msgid "Drizzle documentation is at http://docs.drizzle.org/"
msgid ""
"Drizzle documentation is at http://www.drizzle.org/content/documentation/"
-msgstr "Drizzle dokumentation er i http://docs.drizzle.org/"
+msgstr ""
+"Drizzle-dokumentationen fås på http://www.drizzle.org/content/documentation/"
#: libraries/advisory_rules.txt:140
#, php-format
@@ -15670,7 +15675,6 @@ msgid "Too many connections are aborted."
msgstr "For mange forbindelser er aborterede."
#: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410
-#, fuzzy
#| msgid ""
#| "Connections are usually aborted when they cannot be authorized. This article might help you track down the source."
msgstr ""
-"Forbindelser aborteres normalt, når de ikke kan blive autoriseret. Denne artikel kan måske hjælpe dig med at "
-"finde årsagen."
+"Forbindelser aborteres normalt, når de ikke kan blive autoriseret. Denne artikel kan måske hjælpe dig med at finde "
+"årsagen."
#: libraries/advisory_rules.txt:404
#, php-format
@@ -15805,7 +15809,7 @@ msgid "The InnoDB log file size is inadequately large."
msgstr "InnoDB logfilen er utilstrækkelig stor."
#: libraries/advisory_rules.txt:447
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "It is usually sufficient to set {innodb_log_file_size} to 25%% of the "
#| "size of {innodb_buffer_pool_size}. A very big {innodb_log_file_size} "
@@ -15830,11 +15834,11 @@ msgstr ""
"Det er sædvanligvis tilstrækkeligt at sætte {innodb_log_file_size} til 25%% "
"af størrelsen af {innodb_buffer_pool_size}. En meget høj "
"{innodb_log_file_size} reducerer genoprettelsestiden betydeligt efter et "
-"databasenedbrud. Se også denne artikel.Man "
-"skal lukke serveren ned, fjerne InnoDB-logfiler, sætte den nye værdi i my."
-"cnf, starte serveren og tjekke at alt gik godt i fejllogene. Se også denne artikel.Man skal lukke "
+"serveren ned, fjerne InnoDB-logfiler, sætte den nye værdi i my.cnf, starte "
+"serveren og tjekke at alt gik godt i fejllogene. Se også dette blogindlæg"
#: libraries/advisory_rules.txt:448
@@ -15851,7 +15855,7 @@ msgid "Your InnoDB buffer pool is fairly small."
msgstr "Din InnoDB buffer pool er temmelig lille."
#: libraries/advisory_rules.txt:454
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The InnoDB buffer pool has a profound impact on performance for InnoDB "
#| "tables. Assign all your remaining memory to this buffer. For database "
@@ -15877,13 +15881,13 @@ msgid ""
msgstr ""
"InnoDB buffer pool har en betydelig indvirkning på ydeevnen af InnoDB "
"tabeller. Alloker al resterende hukommelse til denne buffer. For database "
-"servere, som kun bruger InnoDB tabeller og ikke har andre services kørende "
-"(fx webserver), kan man bruge op til 80%% af tilgængelig hukommelse. Hvis "
-"der bruges non-InnoDB tabeller og/eller der kører andet på maskinen, skal "
-"man være varsom med at sætte denne parameter for højt. Det kan ellers give "
-"sig udslag i, at der opstår høj brug af swap-filen. Se også denne artikel"
+"servere, som kun bruger InnoDB tabeller og ikke har andre services kørende ("
+"fx webserver), kan man bruge op til 80%% af tilgængelig hukommelse. Hvis der "
+"bruges non-InnoDB tabeller og/eller der kører andet på maskinen, skal man "
+"være varsom med at sætte denne parameter for højt. Det kan ellers give sig "
+"udslag i, at der opstår høj brug af swap-filen. Se også "
+"denne artikel"
#: libraries/advisory_rules.txt:455
#, php-format
diff --git a/po/de.po b/po/de.po
index 8c082c910f..4bdee79df3 100644
--- a/po/de.po
+++ b/po/de.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-08-15 16:10+0200\n"
-"Last-Translator: Phillip Rohmberger \n"
+"PO-Revision-Date: 2015-09-16 14:31+0200\n"
+"Last-Translator: Michal Čihař \n"
"Language-Team: German "
"\n"
"Language: de\n"
@@ -11989,8 +11989,8 @@ msgstr ""
"präsentiert wird."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
-msgstr "Erfordert ein gültiges X509 Zertifikat."
+msgid "Requires a valid X509 certificate."
+msgstr "Erfordert ein gültiges X509-Zertifikat."
#: libraries/server_privileges.lib.php:867
msgid "Resource limits"
diff --git a/po/el.po b/po/el.po
index b1e48d91ed..3488949360 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11948,7 +11948,7 @@ msgstr ""
"Απαιτεί ότι ένα έγκυρο πιστοποιητικό X509 με αυτό το θέμα παρουσιάζεται."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Απαιτεί ότι ένα έγκυρο πιστοποιητικό X509."
#: libraries/server_privileges.lib.php:867
diff --git a/po/en_GB.po b/po/en_GB.po
index 0d31909a4f..4e708e8855 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -12038,7 +12038,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/eo.po b/po/eo.po
index c68161f641..ff27a80629 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -11058,7 +11058,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/es.po b/po/es.po
index d3ec0b5e1c..7aa94ffd82 100644
--- a/po/es.po
+++ b/po/es.po
@@ -11989,7 +11989,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr "Requiere un certificado X509 válido con el tema presentado."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Requiere un certificado X509 válido."
#: libraries/server_privileges.lib.php:867
diff --git a/po/et.po b/po/et.po
index 09a3e0ea5d..583dc12c79 100644
--- a/po/et.po
+++ b/po/et.po
@@ -11739,7 +11739,7 @@ msgstr ""
"Nõuab, et esitataks kehtiv konkreetsele isikule väljastatud sertifikaat."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Nõuab kehtivat X509 sertifikaati."
#: libraries/server_privileges.lib.php:867
diff --git a/po/eu.po b/po/eu.po
index edf55337dd..aa635b448e 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -12252,7 +12252,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/fa.po b/po/fa.po
index 7551f41d67..753e66df88 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -2,18 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2014-12-18 09:39+0200\n"
-"Last-Translator: HM \n"
-"Language-Team: Persian \n"
+"PO-Revision-Date: 2015-09-07 14:51+0200\n"
+"Last-Translator: ashkan shirian \n"
+"Language-Team: Persian "
+"\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 2.2-dev\n"
+"X-Generator: Weblate 2.4-dev\n"
#: changelog.php:36 license.php:28
#, php-format
@@ -29,15 +29,14 @@ msgid "The central list of columns for the current database is empty."
msgstr "فهرست مرکزی ستونها برای پایگاه داده در حال استفاده خالی است."
#: db_central_columns.php:113
-#, fuzzy
#| msgid "Click to sort"
msgid "Click to sort."
-msgstr "برای مرتب کردن کلیک کنید"
+msgstr "برای مرتب کردن کلیک کنید."
#: db_central_columns.php:129
-#, fuzzy, php-format
+#, php-format
msgid "Showing rows %1$s - %2$s."
-msgstr "نمایش سطرها %1$s از %2$s."
+msgstr "نمایش سطرها %1$s - %2$s."
#: db_create.php:61
#, php-format
@@ -257,7 +256,7 @@ msgid "Database %1$s has been copied to %2$s."
msgstr "رونوشت پایگاه داده %1$s در %2$s انجام شد."
#: db_operations.php:259
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
#| "why click %shere%s."
@@ -265,7 +264,7 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
"امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شدهاست . براي پيداكردن "
-"دليل آن %shere%s را بزنيد."
+"دليل آن %sFind out why%s را بزنيد."
#: db_printview.php:48 db_tracking.php:125 db_tracking.php:287
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:784
@@ -320,10 +319,9 @@ msgstr[0] "%s جدول"
msgstr[1] "%s جدولها"
#: db_qbe.php:103
-#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to choose at least one column to display!"
-msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
+msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد!"
#: db_qbe.php:120
#, php-format
@@ -338,22 +336,20 @@ msgid "Access denied!"
msgstr "دسترسي مجاز نيست!"
#: db_tracking.php:39 db_tracking.php:64
-#, fuzzy
#| msgid "Database %s has been dropped."
msgid "Tracking data deleted successfully."
-msgstr "پايگاه داده %s حذف گرديد."
+msgstr "پايگاه داده پیگیری با موفقیت حذف گرديد."
#: db_tracking.php:48
#, php-format
msgid ""
"Version %1$s was created for selected tables, tracking is active for them."
-msgstr ""
+msgstr "نسخه %1$s برای جداول انتخاب شده ساخته شده، پیگیری برای آنها فعال گردید."
#: db_tracking.php:79
-#, fuzzy
#| msgid "No databases selected."
msgid "No tables selected."
-msgstr "هیچ پایگاه داده ای انتخاب نشده است."
+msgstr "هیچ جدولی انتخاب نشده است."
#: db_tracking.php:114
msgid "Tracked tables"
@@ -653,10 +649,9 @@ msgstr ""
#: import.php:468 import.php:529 libraries/File.class.php:418
#: libraries/File.class.php:512
-#, fuzzy
#| msgid "File could not be read"
msgid "File could not be read!"
-msgstr "امکان خواندن فایل وجود ندارد"
+msgstr "امکان خواندن فایل وجود ندارد!"
#: import.php:478 import.php:489 import.php:510 import.php:521
#: libraries/File.class.php:578
@@ -12031,7 +12026,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/fi.po b/po/fi.po
index ac5b6b04b4..8eb67559cf 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -12525,7 +12525,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/fr.po b/po/fr.po
index 85dcc7a8fa..6100c68cb2 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-08-10 13:03+0200\n"
+"PO-Revision-Date: 2015-09-11 00:11+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: French "
"\n"
@@ -9642,7 +9642,7 @@ msgstr "Aller à la table copiée"
#: libraries/operations.lib.php:1042
msgid "Table maintenance"
-msgstr "Maintenance de la table"
+msgstr "Maintenance de la table"
#: libraries/operations.lib.php:1080 libraries/structure.lib.php:330
msgid "Check table"
@@ -11946,7 +11946,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr "Exige qu'un certificat X509 valide avec ce sujet soit présenté."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Nécessite un certificat X509 valide."
#: libraries/server_privileges.lib.php:867
diff --git a/po/fy.po b/po/fy.po
index b898cb9c69..27674443a0 100644
--- a/po/fy.po
+++ b/po/fy.po
@@ -11090,7 +11090,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/gl.po b/po/gl.po
index 8a441754e3..63355ceabb 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -2,18 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2014-10-10 23:59+0200\n"
+"PO-Revision-Date: 2015-09-16 19:23+0200\n"
"Last-Translator: Xosé Calvo \n"
-"Language-Team: Galician \n"
+"Language-Team: Galician "
+"\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 1.10-dev\n"
+"X-Generator: Weblate 2.4-dev\n"
#: changelog.php:36 license.php:28
#, php-format
@@ -26,17 +26,17 @@ msgstr ""
#: db_central_columns.php:89
msgid "The central list of columns for the current database is empty."
-msgstr ""
+msgstr "A lista de columnas central da base de datos actual está baleira."
#: db_central_columns.php:113
msgid "Click to sort."
msgstr "Prema para ordenar."
#: db_central_columns.php:129
-#, fuzzy, php-format
+#, php-format
#| msgid "Showing row(s) %1$s - %2$s"
msgid "Showing rows %1$s - %2$s."
-msgstr "A mostrar a(s) fileira(s) %1$s - %2$s"
+msgstr "A mostrar as filas %1$s - %2$s."
#: db_create.php:61
#, php-format
@@ -331,23 +331,23 @@ msgid "Access denied!"
msgstr "Denegouse o acceso!"
#: db_tracking.php:39 db_tracking.php:64
-#, fuzzy
#| msgid "Tracking data definition successfully deleted"
msgid "Tracking data deleted successfully."
-msgstr "A definición dos datos de seguimento foi eliminada con éxito"
+msgstr "A definición dos datos de seguimento foi eliminada con éxito."
#: db_tracking.php:48
-#, fuzzy, php-format
+#, php-format
#| msgid "Version %1$s was created, tracking for %2$s is active."
msgid ""
"Version %1$s was created for selected tables, tracking is active for them."
-msgstr "Creouse a versión %1$s; activouse o seguimento de %2$s."
+msgstr ""
+"Creouse a versión %1$s para as táboas seleccionadas; o seguimento está "
+"activo para elas."
#: db_tracking.php:79
-#, fuzzy
#| msgid "No databases selected."
msgid "No tables selected."
-msgstr "Non hai ningunha base de datos escollida."
+msgstr "Non hai ningunha base de datos seleccionada."
#: db_tracking.php:114
msgid "Tracked tables"
@@ -438,24 +438,25 @@ msgid ""
"An error has been detected and an error report has been automatically "
"submitted based on your settings."
msgstr ""
+"Detectouse un erro. Enviouse un informe de fallo baseado na configuración."
#: error_report.php:72
msgid "Thank you for submitting this report."
-msgstr ""
+msgstr "Grazas por enviar este informe."
#: error_report.php:76
msgid ""
"An error has been detected and an error report has been generated but failed "
"to be sent."
-msgstr ""
+msgstr "Produciuse un erro e xerouse un erro de fallo que foi imposíbel enviar."
#: error_report.php:81
msgid "If you experience any problems please submit a bug report manually."
-msgstr ""
+msgstr "Se percibe problemas envíe un informe de fallo manualmente."
#: error_report.php:85
msgid "You may want to refresh the page."
-msgstr ""
+msgstr "Pode ser útil cargar de novo a páxina."
#: export.php:182 schema_export.php:71
msgid "Bad type!"
@@ -603,7 +604,7 @@ msgstr "Todo foi correcto"
#: import.php:58 js/messages.php:460
msgid "Failed"
-msgstr ""
+msgstr "Fallou"
#: import.php:62
msgid "Incomplete params"
@@ -632,6 +633,8 @@ msgid ""
"Uploaded file cannot be moved, because the server has open_basedir enabled "
"without access to the %s directory (for temporary files)."
msgstr ""
+"Non foi posíbel mover o ficheiro enviado porque o servidor ten open_basedir "
+"activado sen acceso ao directorio %s (para ficheiros temporais)."
#: import.php:468 import.php:529 libraries/File.class.php:418
#: libraries/File.class.php:512
@@ -680,7 +683,7 @@ msgid "Import has been successfully finished, %d queries executed."
msgstr "A importación rematou sen problemas. Executáronse %d consultas."
#: import.php:665
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "Script timeout passed, if you want to finish import, please resubmit same "
#| "file and import will resume."
@@ -688,8 +691,8 @@ msgid ""
"Script timeout passed, if you want to finish import, please %sresubmit the "
"same file%s and import will resume."
msgstr ""
-"Excedeuse o tempo de espera do script. Se quere rematar a importación, "
-"envíe de novo o mesmo ficheiro e a importación continuará."
+"Excedeuse o tempo de espera do script. Se quere rematar a importación, %"
+"senvíe de novo o mesmo ficheiro%s e a importación continuará."
#: import.php:675
msgid ""
@@ -702,7 +705,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "Non foi posíbel cargar o progreso da importación."
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -722,6 +725,9 @@ msgid ""
"change root, debian-sys-maint and pma users. More information is available "
"at %s."
msgstr ""
+"Está a utilizar un servidor de demostración. Pode facer aquí o que queira, "
+"mais non cambie os usuarios root, debian-sys-maint ou pma. Dispón de máis "
+"información en %s."
#: index.php:158
msgid "General Settings"
@@ -787,7 +793,6 @@ msgid "PHP extension:"
msgstr "Extensión de PHP:"
#: index.php:345
-#, fuzzy
#| msgid "PHP Version:"
msgid "PHP version:"
msgstr "Versión do PHP:"
@@ -829,7 +834,6 @@ msgid "List of changes"
msgstr "Listaxe de cambios"
#: index.php:447
-#, fuzzy
#| msgid ""
#| "Your configuration file contains settings (root with no password) that "
#| "correspond to the default MySQL privileged account. Your MySQL server is "
@@ -841,11 +845,10 @@ msgid ""
"default, is open to intrusion, and you really should fix this security hole "
"by setting a password for user 'root'."
msgstr ""
-"O ficheiro de configuración contén axustes (en concreto, o usuario root non "
-"ten contrasinal) que corresponden coa conta con todos os privilexios que o "
-"MySQL fai por omisión. O servidor de MySQL estase a executar con esta "
-"configuración, está aberto a intrusións e habería que mirar de solucionar "
-"este problema de seguranza."
+"A conexión é de «root» sen contrasinal, o que corresponde coa conta con "
+"privilexios predeterminada do MySQL. O servidor de MySQL está a ser "
+"executado así por omisión, está aberto a intrusións e convén arranxar este "
+"furado de seguranza indicando un contrasinal para o usuario «root»."
#: index.php:464
msgid ""
@@ -868,7 +871,6 @@ msgstr ""
"inesperados."
#: index.php:495
-#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
@@ -880,10 +882,11 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login might "
"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 podería "
+"caducar antes do que está configurado en phpMyAdmin."
#: index.php:508
msgid ""
@@ -914,7 +917,7 @@ msgstr ""
"descargasen a configuración."
#: index.php:542
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage is not completely configured, some "
#| "extended features have been deactivated. To find out why click %shere%s."
@@ -923,13 +926,14 @@ msgid ""
"extended features have been deactivated. %sFind out why%s. "
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."
+"desactiváronse algunhas funcionalidades estendidas. %sSaiba o por que%s. "
#: index.php:549
msgid ""
"Or alternately go to 'Operations' tab of any database to set it up there."
msgstr ""
+"Tamén pode ir á lapela «Operacións» de calquera base de datos para "
+"configuralo alí."
#: index.php:597
#, php-format
@@ -955,7 +959,7 @@ msgstr "Non se permiten as ordes «DROP DATABASE»."
#: js/messages.php:42
msgid "Confirm"
-msgstr ""
+msgstr "Confirmar"
#: js/messages.php:43
#, php-format
@@ -975,34 +979,29 @@ msgid "You are about to TRUNCATE a complete table!"
msgstr "Está a piques de baleirar (TRUNCATE) unha base de datos enteira!"
#: js/messages.php:47
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this table?"
-msgstr "Eliminar os datos de seguimento desta táboa"
+msgstr "Eliminar os datos de seguimento desta táboa?"
#: js/messages.php:48
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these tables?"
-msgstr "Eliminar os datos de seguimento desta táboa"
+msgstr "Eliminar os datos de seguimento destas táboas?"
#: js/messages.php:49
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this version?"
-msgstr "Eliminar os datos de seguimento desta táboa"
+msgstr "Eliminar os datos de seguimento desta versión?"
#: js/messages.php:50
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these versions?"
-msgstr "Eliminar os datos de seguimento desta táboa"
+msgstr "Eliminar os datos de seguimento destas versións?"
#: js/messages.php:51
-#, fuzzy
#| msgid "Delete tracking data row from report"
msgid "Delete entry from tracking report?"
-msgstr "Eliminar do informe a fila de datos de seguimento"
+msgstr "Eliminar a entrada do informe de seguimento?"
#: js/messages.php:52
msgid "Deleting tracking data"
@@ -1013,10 +1012,9 @@ msgid "Dropping Primary Key/Index"
msgstr "Eliminar a chaves primaria/Índice"
#: js/messages.php:54
-#, fuzzy
#| msgid "Select Foreign Key"
msgid "Dropping Foreign key."
-msgstr "Escoller unha chave externa"
+msgstr "Abandoner unha chave externa"
#: js/messages.php:55
msgid "This operation could take a long time. Proceed anyway?"
@@ -1025,38 +1023,35 @@ msgstr ""
"maneiras?"
#: js/messages.php:56
-#, fuzzy, php-format
+#, php-format
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete user group \"%s\"?"
-msgstr "Seguro que quere executar \"%s\"?"
+msgstr "Confirma que desexa eliminar o grupo de usuarios «%s»?"
#: js/messages.php:57
-#, fuzzy, php-format
+#, php-format
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete the search \"%s\"?"
-msgstr "Seguro que quere executar \"%s\"?"
+msgstr "Confirma que desexa eliminar a busca «%s»?"
#: js/messages.php:58
-#, fuzzy
#| 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?"
msgid "You have unsaved changes; are you sure you want to leave this page?"
msgstr ""
-"Editou algúns datos que aínda non se gardaron. Ten certeza de querer saír "
-"desta páxina antes de gardar os datos?"
+"Editou algúns datos que aínda non se gardaron. Confirma que desexa saír "
+"desta páxina?"
#: js/messages.php:59
-#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to revoke the selected user(s) ?"
-msgstr "Seguro que quere executar \"%s\"?"
+msgstr "Confirma que desexa revocar o(s) usuario(s) seleccionado(s)?"
#: js/messages.php:60
-#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this central column?"
-msgstr "Seguro que quere executar \"%s\"?"
+msgstr "Confirma que desexa eliminar esta columna central?"
#: js/messages.php:63
#, fuzzy
@@ -1081,22 +1076,19 @@ msgid "Missing value in the form!"
msgstr "Falta un valor no formulario!"
#: js/messages.php:69
-#, fuzzy
#| msgid "at least one of the words"
msgid "Select at least one of the options!"
-msgstr "cando menos unha das palabras"
+msgstr "Seleccione ao menos unha das opcións!"
#: js/messages.php:70
-#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid number!"
-msgstr "Non é un número de porto válido"
+msgstr "Introduza un número aceptábel!"
#: js/messages.php:71
-#, fuzzy
#| msgid "Please enter correct captcha!"
msgid "Please enter a valid length!"
-msgstr "Introduza o captcha correcto!"
+msgstr "Introduza un tamaño aceptábel!"
#: js/messages.php:72
msgid "Add Index"
@@ -1112,28 +1104,24 @@ msgid "Add %s column(s) to index"
msgstr "Engadir %s columna(s) ao índice"
#: js/messages.php:75
-#, fuzzy
#| msgid "Create routine"
msgid "Create single-column index"
-msgstr "Crear relación"
+msgstr "Crear un índice dunha única columnar"
#: js/messages.php:76
-#, fuzzy
#| msgid "Create routine"
msgid "Create composite index"
-msgstr "Crear relación"
+msgstr "Crear un índice composto"
#: js/messages.php:77
-#, fuzzy
#| msgid "Columns enclosed with:"
msgid "Composite with:"
-msgstr "Columnas delimitadas por:"
+msgstr "Compor con:"
#: js/messages.php:78
-#, fuzzy
#| msgid "Add %s column(s) to index"
msgid "Please select column(s) for the index."
-msgstr "Engadir %s columna(s) ao índice"
+msgstr "Seleccione a(s) columna(s) do índice."
#: js/messages.php:81 libraries/structure.lib.php:1686
msgid "You have to add at least one column."
@@ -1143,19 +1131,17 @@ msgstr "Debe engadir ao menos unha columna."
#: libraries/tbl_columns_definition_form.lib.php:161
#: libraries/tbl_indexes.lib.php:472 libraries/tbl_relation.lib.php:653
msgid "Preview SQL"
-msgstr ""
+msgstr "Visualización do SQL"
#: js/messages.php:87
-#, fuzzy
#| msgid "in query"
msgid "Simulate query"
-msgstr "na consulta"
+msgstr "Simular a consulta"
#: js/messages.php:88
-#, fuzzy
#| msgid "Affected rows:"
msgid "Matched rows:"
-msgstr "Filas afectadas:"
+msgstr "Filas coincidentes:"
#: js/messages.php:89 libraries/Util.class.php:638 libraries/sql.lib.php:300
msgid "SQL query:"
@@ -1214,10 +1200,9 @@ msgid "Connections / Processes"
msgstr "Conexións/Procesos"
#: js/messages.php:113
-#, fuzzy
#| msgid "Local monitor configuration incompatible"
msgid "Local monitor configuration incompatible!"
-msgstr "A configuración local de monitorización é incompatible"
+msgstr "A configuración local de monitorización é incompatible!"
#: js/messages.php:114
msgid ""
@@ -1374,10 +1359,9 @@ msgid "Add chart to grid"
msgstr "Engadir unha gráfica á grella"
#: js/messages.php:157
-#, fuzzy
#| msgid "Please add at least one variable to the series"
msgid "Please add at least one variable to the series!"
-msgstr "Engada ao menos unha variábel á serie"
+msgstr "Engádalle ao menos unha variábel á serie!"
#: js/messages.php:158 libraries/DisplayResults.class.php:1372
#: libraries/TableSearch.class.php:876 libraries/TableSearch.class.php:1045
@@ -1405,7 +1389,7 @@ msgstr ""
#: js/messages.php:162
msgid "Stop auto refresh"
-msgstr ""
+msgstr "Deter a actualización automática"
#: js/messages.php:164
msgid "general_log and slow_query_log are enabled."
@@ -1475,10 +1459,10 @@ msgstr "Desactivar %s"
#. l10n: %d seconds
#: js/messages.php:180
-#, fuzzy, php-format
+#, php-format
#| msgid "Set long_query_time to %ds"
msgid "Set long_query_time to %d seconds."
-msgstr "Definir «long_query_time» como %ds"
+msgstr "Definir long_query_time como %ds segundos."
#: js/messages.php:182
msgid ""
@@ -1525,6 +1509,8 @@ msgstr "Do rexistro de consultas xeral"
#: js/messages.php:197
msgid "The database name is not known for this query in the server's logs."
msgstr ""
+"O nome da base de datos é descoñecido para esta consulta nos rexistros do "
+"servidor."
#: js/messages.php:199
msgid "Analysing logs"
@@ -1691,14 +1677,13 @@ msgid "Import monitor configuration"
msgstr "Importar a configuración do monitor"
#: js/messages.php:241
-#, fuzzy
#| msgid "Please select the file you want to import"
msgid "Please select the file you want to import."
-msgstr "Escolla o ficheiro que desexa importar"
+msgstr "Escolla a fila que desexa importar."
#: js/messages.php:242
msgid "No files available on server for import!"
-msgstr ""
+msgstr "Non hai ficheiros dispoñíbeis no servidor para importar!"
#: js/messages.php:244
msgid "Analyse Query"
@@ -1828,10 +1813,9 @@ msgid "(Disabled)"
msgstr "(Desactivado)"
#: js/messages.php:288
-#, fuzzy
#| msgid "Failed to fetch headers"
msgid "Failed to get real row count."
-msgstr "Produciuse un fallo ao obter as cabeceiras"
+msgstr "Non foi posíbel contar o número real de filas."
#: js/messages.php:291
msgid "Searching"
@@ -1871,7 +1855,6 @@ msgid "Values for a new column"
msgstr "Valores para a nova columna"
#: js/messages.php:304
-#, fuzzy
#| msgid "Enter each value in a separate field"
msgid "Enter each value in a separate field."
msgstr "Introduza cada valor nun campo separado"
@@ -1923,19 +1906,17 @@ msgstr ""
#: js/messages.php:319 libraries/normalization.lib.php:849
msgid "Pick"
-msgstr ""
+msgstr "Escoller"
#: js/messages.php:320
-#, fuzzy
#| msgid "No column selected."
msgid "Column selector"
-msgstr "Non seleccionou ningunha columna."
+msgstr "Selector de columnas"
#: js/messages.php:321
-#, fuzzy
#| msgid "Search in database"
msgid "Search this list"
-msgstr "Buscar na base de datos"
+msgstr "Buscar nesta lista"
#: js/messages.php:322
#, php-format
@@ -1943,28 +1924,31 @@ msgid ""
"No columns in the central list. Make sure the Central columns list for "
"database %s has columns that are not present in the current table."
msgstr ""
+"Non hai columnas na lista central. Asegúrese de que a alista de columnas "
+"central da base de datos %s ten columnas que non están presentes na táboa "
+"actual."
#: js/messages.php:323
-#, fuzzy
#| msgid "Free memory"
msgid "See more"
-msgstr "Memoria libre"
+msgstr "Ver máis"
#: js/messages.php:324
msgid "Are you sure?"
-msgstr ""
+msgstr "Confírmao?"
#: js/messages.php:325
msgid ""
"This action may change some of the columns definition. Are you sure you "
"want to continue?"
msgstr ""
+"Esta acción pode cambiar algunha definición das columnas. Confirma que "
+"desexa continuar?"
#: js/messages.php:326
-#, fuzzy
#| msgid "Contribute"
msgid "Continue"
-msgstr "Colaborar"
+msgstr "Proseguir"
#: js/messages.php:329 libraries/structure.lib.php:2188
#: libraries/structure.lib.php:2191
@@ -1972,33 +1956,30 @@ msgid "Add primary key"
msgstr "Engadir unha chave primaria"
#: js/messages.php:330
-#, fuzzy
#| msgid "A primary key has been added on %s."
msgid "Primary key added."
-msgstr "Engadiuse unha chave primaria a %s."
+msgstr "Engadiuse unha chave primaria."
#: js/messages.php:331 libraries/normalization.lib.php:174
-#, fuzzy
#| msgid "Tracking report"
msgid "Taking you to next step…"
-msgstr "Informe de seguimento"
+msgstr "Procedemos co paso seguinte…"
#: js/messages.php:332
#, php-format
msgid "The first step of normalization is complete for table '%s'."
-msgstr ""
+msgstr "O primeiro paso da normalización foi completado para a táboa «%s»."
#: js/messages.php:333 libraries/normalization.lib.php:422
#: libraries/normalization.lib.php:469 libraries/normalization.lib.php:552
#: libraries/normalization.lib.php:612
-#, fuzzy
#| msgid "End of line"
msgid "End of step"
-msgstr "Fin da liña"
+msgstr "Fin do paso"
#: js/messages.php:334
msgid "Second step of normalization (2NF)"
-msgstr ""
+msgstr "Segundo paso da normalización (2NF)"
#. l10n: Display text for calendar close link
#: js/messages.php:335 js/messages.php:581 libraries/normalization.lib.php:264
@@ -2007,31 +1988,32 @@ msgstr "Feito"
#: js/messages.php:336
msgid "Confirm partial dependencies"
-msgstr ""
+msgstr "Confirmar as dependencias parciais"
#: js/messages.php:337
msgid "Selected partial dependencies are as follows:"
-msgstr ""
+msgstr "As dependencias parciais seleccionadas son as seguintes:"
#: js/messages.php:338
msgid ""
"Note: a, b -> d,f implies values of columns a and b combined together can "
"determine values of column d and column f."
msgstr ""
+"Nota: a, b -> d,f implica que os valores das columnas a e b combinadas poden "
+"determinar os valores das columnas de e f."
#: js/messages.php:339
-#, fuzzy
#| msgid "No databases selected."
msgid "No partial dependencies selected!"
-msgstr "Non hai ningunha base de datos escollida."
+msgstr "Non se seleccionaron dependencias parciais!"
#: js/messages.php:341
msgid "Show me the possible partial dependencies based on data in the table"
-msgstr ""
+msgstr "Mostrar as dependencias parciais posíbeis a partir dos datos da táboa"
#: js/messages.php:342
msgid "Hide partial dependencies list"
-msgstr ""
+msgstr "Agochar a lista de dependencias parciais"
#: js/messages.php:343
msgid ""
@@ -2041,42 +2023,39 @@ msgstr ""
#: js/messages.php:344
msgid "Step"
-msgstr ""
+msgstr "Paso"
#: js/messages.php:345
-#, fuzzy
#| msgid "The following queries have been executed:"
msgid "The following actions will be performed:"
-msgstr "Executáronse as procuras seguintes:"
+msgstr "Hanse executar as accións seguintes:"
#: js/messages.php:346
#, php-format
msgid "DROP columns %s from the table %s"
-msgstr ""
+msgstr "ELIMINAR (DROP) as columnas %s da táboa %s"
#: js/messages.php:347
-#, fuzzy
#| msgid "Add privileges on the following table:"
msgid "Create the following table"
-msgstr "Engadir privilexios para esta táboa:"
+msgstr "Crear a táboa seguinte"
#: js/messages.php:350
msgid "Third step of normalization (3NF)"
-msgstr ""
+msgstr "Terceiro paso da normalización (3NF)"
#: js/messages.php:351
msgid "Confirm transitive dependencies"
-msgstr ""
+msgstr "Confirmar as dependencias transitivas"
#: js/messages.php:352
msgid "Selected dependencies are as follows:"
-msgstr ""
+msgstr "As dependencias seleccionadas son as seguintes:"
#: js/messages.php:353
-#, fuzzy
#| msgid "No databases selected."
msgid "No dependencies selected!"
-msgstr "Non hai ningunha base de datos escollida."
+msgstr "Non hai ningunha dependencia seleccionada!"
#: js/messages.php:356 libraries/insert_edit.lib.php:1452
#: libraries/server_variables.lib.php:155
@@ -2096,34 +2075,29 @@ msgid "Show search criteria"
msgstr "Mostrar o criterio de busca"
#: js/messages.php:361
-#, fuzzy
#| msgid "Table Search"
msgid "Range search"
-msgstr "Busca na táboa"
+msgstr "Busca de intervalo"
#: js/messages.php:362
-#, fuzzy
#| msgid "Column names: "
msgid "Column maximum:"
-msgstr "Nomes das columnas: "
+msgstr "Máximo de columnas:"
#: js/messages.php:363
-#, fuzzy
#| msgid "Column names: "
msgid "Column minimum:"
-msgstr "Nomes das columnas: "
+msgstr "Mínimo de columnas:"
#: js/messages.php:364
-#, fuzzy
#| msgid "Maximum tables"
msgid "Minimum value:"
-msgstr "Táboas máximas"
+msgstr "Valor mínimo:"
#: js/messages.php:365
-#, fuzzy
#| msgid "Maximum tables"
msgid "Maximum value:"
-msgstr "Táboas máximas"
+msgstr "Valor máximo:"
#: js/messages.php:368
msgid "Hide find and replace criteria"
@@ -2209,20 +2183,21 @@ msgid "Shift + Click on function name to apply to all rows."
msgstr ""
#: js/messages.php:407
-#, fuzzy
#| msgid "Do you want to import remaining settings?"
msgid "Do you want to copy encryption key?"
-msgstr "Quere importar o resto da configuración?"
+msgstr "Desexa copiar a clave de cifrado?"
#: js/messages.php:408
msgid "Encryption key"
-msgstr ""
+msgstr "Clave de cifrado"
#: js/messages.php:412
msgid ""
"Indicates that you have made changes to this page; you will be prompted for "
"confirmation before abandoning changes"
msgstr ""
+"Indica que vostede fixo cambios nesta páxina; háselle pedir confirmación "
+"antes de abandonar os cambios"
#: js/messages.php:417
msgid "Select referenced key"
@@ -2233,10 +2208,9 @@ msgid "Select Foreign Key"
msgstr "Escoller unha chave externa"
#: js/messages.php:419
-#, fuzzy
#| msgid "Please select the primary key or a unique key"
msgid "Please select the primary key or a unique key!"
-msgstr "Escolla a chave primaria ou unha chave única"
+msgstr "Selecciona a clave primaria ou unha clave única!"
#: js/messages.php:420 libraries/db_designer.lib.php:331
#: libraries/db_designer.lib.php:334
@@ -2256,77 +2230,69 @@ msgid "Page name"
msgstr "Nome da páxina"
#: js/messages.php:426
-#, fuzzy
#| msgid "Select page"
msgid "Save page"
-msgstr "Escoller unha páxina"
+msgstr "Gardar a páxina"
#: js/messages.php:427 libraries/db_designer.lib.php:283
#: libraries/db_designer.lib.php:286
-#, fuzzy
#| msgid "Free pages"
msgid "Open page"
-msgstr "Páxinas libres"
+msgstr "Abrir páxina"
#: js/messages.php:428
-#, fuzzy
#| msgid "Select page"
msgid "Delete page"
-msgstr "Escoller unha páxina"
+msgstr "Eliminar a páxina"
#: js/messages.php:429 libraries/db_designer.lib.php:244
-#, fuzzy
#| msgid "Unit"
msgid "Untitled"
-msgstr "Unidade"
+msgstr "Sen título"
#: js/messages.php:430
-#, fuzzy
#| msgid "Please choose a page to edit"
msgid "Please select a page to continue"
-msgstr "Escolla unha páxina para modificar"
+msgstr "Seleccione unha páxina para continuar"
#: js/messages.php:431
-#, fuzzy
#| msgid "Not a valid port number"
msgid "Please enter a valid page name"
-msgstr "Non é un número de porto válido"
+msgstr "Introduza un nome de páxina aceptábel"
#: js/messages.php:432
msgid "Do you want to save the changes to the current page?"
-msgstr ""
+msgstr "Desexa gardar os cambios desta páxina?"
#: js/messages.php:433
msgid "Successfully deleted the page"
-msgstr ""
+msgstr "A páxina foi eliminada correctamente"
#: js/messages.php:434
-#, fuzzy
#| msgid "Edit or export relational schema"
msgid "Export relational schema"
-msgstr "Editar ou exportar o esquema relacional"
+msgstr "Exportar o esquema relacional"
#: js/messages.php:435
msgid "Modifications have been saved"
msgstr "Gardáronse as modificacións"
#: js/messages.php:438
-#, fuzzy, php-format
+#, php-format
#| msgid "Add an option for column "
msgid "Add an option for column \"%s\"."
-msgstr "Engadir unha opción para a columna "
+msgstr "Engadir unha opción para a columna «%s»."
#: js/messages.php:439
-#, fuzzy, php-format
+#, php-format
#| msgid "%d object(s) created"
msgid "%d object(s) created."
-msgstr "Creáronse %d obxecto(s)"
+msgstr "Creáronse %d obxecto(s)."
#: js/messages.php:442
-#, fuzzy
#| msgid "Press escape to cancel editing"
msgid "Press escape to cancel editing."
-msgstr "Prema escape para cancelar a edición"
+msgstr "Prema escape para cancelar a edición."
#: js/messages.php:443
msgid ""
@@ -2337,14 +2303,13 @@ msgstr ""
"desta páxina antes de gardar os datos?"
#: js/messages.php:444
-#, fuzzy
#| msgid "Drag to reorder"
msgid "Drag to reorder."
-msgstr "Arrastre para reordenar"
+msgstr "Arrastre para reordenar."
#: js/messages.php:445
msgid "Click to sort results by this column."
-msgstr ""
+msgstr "Prema para ordenar os resultados por esta columna."
#: js/messages.php:446
msgid ""
@@ -2352,25 +2317,25 @@ msgid ""
">- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
"ORDER BY clause"
msgstr ""
+"Maiúsculas+Clic para engadir esta columna á cláusula ORDENAR POR ou para "
+"alternar ASC/DESC. - Ctrl+Clic ou Alt+Clic (Mac: Maiúsculas+Opción+Clic)"
+" para eliminar a columna da cláusula ORDENAR POR"
#: js/messages.php:447
-#, fuzzy
#| msgid "Click to mark/unmark"
msgid "Click to mark/unmark."
-msgstr "Prema para marcar/desmarcar"
+msgstr "Prema para marcar/desmarcar."
#: js/messages.php:448
-#, fuzzy
#| msgid "Double-click to copy column name"
msgid "Double-click to copy column name."
-msgstr "Prema duas veces para copiar o nome da columna"
+msgstr "Prema dúas veces para copiar o nome da columna."
#: js/messages.php:450
-#, fuzzy
#| msgid "Click the drop-down arrow to toggle column's visibility"
msgid "Click the drop-down arrow to toggle column's visibility."
msgstr ""
-"Prema a frecha para a baixo para conmutar a visibilidade da columna"
+"Prema a frecha para a baixo para conmutar a visibilidade da columna."
#: js/messages.php:452 libraries/DisplayResults.class.php:930
#: libraries/browse_foreigners.lib.php:257
@@ -2391,18 +2356,21 @@ msgstr ""
#: js/messages.php:454
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
msgstr ""
+"Introduza unha cadea aceptábel en hexadecimal. Os caracteres aceptábeis son "
+"0-9, A-F."
#: js/messages.php:455
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
msgstr ""
+"Confirma que desexa ver todas as filas? Se a táboa é grande o navegador "
+"podería fallar."
#: js/messages.php:458
-#, fuzzy
#| msgid "Cancel"
msgid "cancel"
-msgstr "Cancelar"
+msgstr "cancelar"
#: js/messages.php:459 libraries/server_status.lib.php:269
msgid "Aborted"
@@ -2410,25 +2378,22 @@ msgstr "Interrompido"
#: js/messages.php:461
msgid "Success"
-msgstr ""
+msgstr "Éxito"
#: js/messages.php:462
-#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
-msgstr "Opcións de importación por omisión"
+msgstr "Estado da importación"
#: js/messages.php:463 libraries/navigation/Navigation.class.php:107
-#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
-msgstr "Limiar do ficheiro de rexistro"
+msgstr "Soltar os ficheiros aquí"
#: js/messages.php:464
-#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
-msgstr "Escoller táboas"
+msgstr "Seleccione a base de datos antes"
#: js/messages.php:469
msgid "You can also edit most values by double-clicking directly on them."
@@ -2443,16 +2408,14 @@ msgstr ""
"contido."
#: js/messages.php:477
-#, fuzzy
#| msgid "Go to link"
msgid "Go to link:"
-msgstr "Ir á ligazón"
+msgstr "Ir á ligazón:"
#: js/messages.php:478
-#, fuzzy
#| msgid "Copy column name"
msgid "Copy column name."
-msgstr "Copiar nome da columna"
+msgstr "Copiar o nome da columna:"
#: js/messages.php:479
msgid "Right-click the column name to copy it to your clipboard."
@@ -2483,27 +2446,26 @@ msgid "Hide Panel"
msgstr "Agochar o panel"
#: js/messages.php:492
-#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show hidden navigation tree items."
-msgstr "Mostrar o logotipo no panel de navegación"
+msgstr "Mostrar os elementos agochados da árbore de navegación."
#: js/messages.php:493 libraries/config/messages.inc.php:431
#: libraries/navigation/NavigationTree.class.php:1335
-#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
-msgstr "Personalizar o panel principal"
+msgstr "Ligar co panel principal"
#: js/messages.php:494 libraries/navigation/NavigationTree.class.php:1338
-#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
-msgstr "Personalizar o panel principal"
+msgstr "Desligar do panel principal"
#: js/messages.php:495
msgid "To filter all databases on server, press Enter after a search term"
msgstr ""
+"Para filtrar todas as bases de datos do servidor prema Intro despois dun "
+"termo de busca"
#: js/messages.php:496
#, php-format
@@ -2511,34 +2473,29 @@ msgid "To filter all %s in database, press Enter after a search term"
msgstr ""
#: js/messages.php:497
-#, fuzzy
#| msgid "Tables"
msgid "tables"
-msgstr "Táboas"
+msgstr "táboas"
#: js/messages.php:498
-#, fuzzy
#| msgid "Views"
msgid "views"
-msgstr "Vistas"
+msgstr "vistas"
#: js/messages.php:499
-#, fuzzy
#| msgid "Procedures"
msgid "procedures"
-msgstr "Procedementos"
+msgstr "procedementos"
#: js/messages.php:500
-#, fuzzy
#| msgid "event"
msgid "events"
-msgstr "acontecemento"
+msgstr "acontecementos"
#: js/messages.php:501
-#, fuzzy
#| msgid "Functions"
msgid "functions"
-msgstr "Funcións"
+msgstr "funcións"
#: js/messages.php:504
msgid "The requested page was not found in the history, it may have expired."
@@ -2579,12 +2536,12 @@ msgid "Submit Error Report"
msgstr ""
#: js/messages.php:518
-#, fuzzy
#| msgid "An error has occured while loading the navigation tree"
msgid ""
"A fatal JavaScript error has occurred. Would you like to send an error "
"report?"
-msgstr "Produciuse un erro ao cargar a árbore de navegación"
+msgstr ""
+"Produciuse un erro global de JavaScript. Desexa enviar un informe do erro?"
#: js/messages.php:520
#, fuzzy
@@ -2603,6 +2560,8 @@ msgid ""
"Your export is incomplete, due to a low execution time limit at the PHP "
"level!"
msgstr ""
+"A exportación está incompleta debido a un límite de tempo de execución baixo "
+"no nivel de PHP!"
#: js/messages.php:528
#, php-format
@@ -2613,17 +2572,16 @@ msgstr ""
#: js/messages.php:534 js/messages.php:546
msgid "Some errors have been detected on the server!"
-msgstr ""
+msgstr "Detectáronse algúns erros no servidor!"
#: js/messages.php:536
msgid "Please look at the bottom of this window."
-msgstr ""
+msgstr "Mire na parte inferior desta xanela."
#: js/messages.php:541 libraries/Error_Handler.class.php:353
-#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
-msgstr "Ignorar"
+msgstr "Ignorar todo"
#: js/messages.php:548
msgid ""
@@ -2631,16 +2589,14 @@ msgid ""
msgstr ""
#: js/messages.php:555
-#, fuzzy
#| msgid "Show this query here again"
msgid "Execute this query again?"
-msgstr "Mostrar esta consulta aquí outra vez"
+msgstr "Executar esta consulta de novo?"
#: js/messages.php:556
-#, fuzzy
#| msgid "Do you really want to execute \"%s\"?"
msgid "Do you really want to delete this bookmark?"
-msgstr "Seguro que quere executar \"%s\"?"
+msgstr "Confirma que desexa eliminar este marcador?"
#: js/messages.php:557
msgid ""
@@ -2986,11 +2942,11 @@ msgstr "Tamaño da letra"
#: libraries/Console.class.php:85 libraries/Console.class.php:168
msgid "Collapse"
-msgstr ""
+msgstr "Contraer"
#: libraries/Console.class.php:86 libraries/Console.class.php:170
msgid "Expand"
-msgstr ""
+msgstr "Expandir"
#: libraries/Console.class.php:87 libraries/Console.class.php:171
#, fuzzy
@@ -3048,16 +3004,14 @@ msgid "%1$s, %2$s and %3$s bookmarks included"
msgstr "Eliminouse o marcador."
#: libraries/Console.class.php:122
-#, fuzzy
#| msgid "Delete relation"
msgid "No bookmarks"
-msgstr "Eliminar a relación"
+msgstr "Non hai marcadores"
#: libraries/Console.class.php:173
-#, fuzzy
#| msgid "Explain SQL"
msgid "Explain"
-msgstr "Explicar o SQL"
+msgstr "Explicar"
#: libraries/Console.class.php:174 libraries/Util.class.php:1262
#: libraries/sql.lib.php:333
@@ -3065,16 +3019,14 @@ msgid "Profiling"
msgstr "Análise do desempeño"
#: libraries/Console.class.php:176
-#, fuzzy
#| msgid "Bookmark table"
msgid "Bookmark"
-msgstr "Táboa de marcadores"
+msgstr "Marcador"
#: libraries/Console.class.php:177
-#, fuzzy
#| msgid "Query cache"
msgid "Query failed"
-msgstr "Caché de consultas"
+msgstr "Fallou a consulta"
#: libraries/Console.class.php:181
#, fuzzy
@@ -3083,10 +3035,9 @@ msgid "Queried time"
msgstr "Tempo de execución da consulta"
#: libraries/Console.class.php:188
-#, fuzzy
#| msgid "SQL Query box"
msgid "SQL Query Console"
-msgstr "Caixa de consultas de SQL"
+msgstr "Consulta de consultas de SQL"
#: libraries/Console.class.php:189
msgid "Console"
@@ -3098,10 +3049,9 @@ msgid "Clear"
msgstr "Limpar"
#: libraries/Console.class.php:195
-#, fuzzy
#| msgid "SQL history"
msgid "History"
-msgstr "Historial de SQL"
+msgstr "Historial"
#: libraries/Console.class.php:198 libraries/Console.class.php:293
#: libraries/DisplayResults.class.php:1599 libraries/TableSearch.class.php:788
@@ -3133,22 +3083,19 @@ msgid "Options"
msgstr "Opcións"
#: libraries/Console.class.php:202 libraries/Console.class.php:255
-#, fuzzy
#| msgid "Bookmark table"
msgid "Bookmarks"
-msgstr "Táboa de marcadores"
+msgstr "Marcadores"
#: libraries/Console.class.php:211
-#, fuzzy
#| msgid "Execute every"
msgid "Press Ctrl+Enter to execute query"
-msgstr "Executar cada"
+msgstr "Prema Ctrl+Intro para executar a consulta"
#: libraries/Console.class.php:232
-#, fuzzy
#| msgid "Skip current error"
msgid "During current session"
-msgstr "Omitir este erro"
+msgstr "Durante esta sesión"
#: libraries/Console.class.php:259 libraries/Util.class.php:1231
#: libraries/config/messages.inc.php:765
@@ -3158,48 +3105,42 @@ msgid "Refresh"
msgstr "Anovar"
#: libraries/Console.class.php:262
-#, fuzzy
#| msgid "And"
msgid "Add"
-msgstr "E"
+msgstr "Engadir"
#: libraries/Console.class.php:271
-#, fuzzy
#| msgid "Delete relation"
msgid "Add bookmark"
-msgstr "Eliminar a relación"
+msgstr "Engadir un marcador"
#: libraries/Console.class.php:275
-#, fuzzy
#| msgid "Label:"
msgid "Label"
-msgstr "Etiqueta:"
+msgstr "Etiqueta"
#: libraries/Console.class.php:277
msgid "Target database"
msgstr "Base de datos de destino"
#: libraries/Console.class.php:280
-#, fuzzy
#| msgid "Delete relation"
msgid "Share this bookmark"
-msgstr "Eliminar a relación"
+msgstr "Compartir este marcador"
#: libraries/Console.class.php:297
-#, fuzzy
#| msgid "Reset to default"
msgid "Set default"
-msgstr "Restabelecer o predeterminado"
+msgstr "Estabelecer o predeterminado"
#: libraries/Console.class.php:301
msgid "Always expand query messages"
msgstr ""
#: libraries/Console.class.php:303
-#, fuzzy
#| msgid "SQL query history table"
msgid "Show query history at start"
-msgstr "Táboa do historial de consultas SQL"
+msgstr "Mostrar o historial de consultas no inicio"
#: libraries/Console.class.php:305
msgid "Show current browsing query"
@@ -3303,28 +3244,24 @@ msgid "Saved bookmarked search:"
msgstr "Buscar"
#: libraries/DBQbe.class.php:1492
-#, fuzzy
#| msgid "Delete relation"
msgid "New bookmark"
-msgstr "Eliminar a relación"
+msgstr "Marcador novo"
#: libraries/DBQbe.class.php:1518
-#, fuzzy
#| msgid "Delete relation"
msgid "Create bookmark"
-msgstr "Eliminar a relación"
+msgstr "Crear un marcador"
#: libraries/DBQbe.class.php:1521
-#, fuzzy
#| msgid "Showing bookmark"
msgid "Update bookmark"
-msgstr "A mostrar o marcador"
+msgstr "Actualizar o marcador"
#: libraries/DBQbe.class.php:1523
-#, fuzzy
#| msgid "Delete relation"
msgid "Delete bookmark"
-msgstr "Eliminar a relación"
+msgstr "Eliminar o marcador"
#: libraries/DatabaseInterface.class.php:2200
msgid ""
@@ -3435,17 +3372,15 @@ msgstr "Restaurar orde das columnas"
#: libraries/DisplayResults.class.php:857
#: libraries/central_columns.lib.php:620
-#, fuzzy
#| msgid "Filters"
msgid "Filter rows"
-msgstr "Filtros"
+msgstr "Filtrar filas"
#: libraries/DisplayResults.class.php:859
#: libraries/central_columns.lib.php:622
-#, fuzzy
#| msgid "Search in database"
msgid "Search this table"
-msgstr "Buscar na base de datos"
+msgstr "Buscar nesta táboa"
#: libraries/DisplayResults.class.php:887 libraries/Util.class.php:2480
#: libraries/Util.class.php:2483
@@ -3526,10 +3461,9 @@ msgstr "Binario moi coñecido"
#: libraries/DisplayResults.class.php:3362
#: libraries/DisplayResults.class.php:3378
-#, fuzzy
#| msgid "The row has been deleted."
msgid "The row has been deleted."
-msgstr "Eliminouse a fileira"
+msgstr "A fila foi eliminada."
#: libraries/DisplayResults.class.php:3415
#: libraries/DisplayResults.class.php:4715
@@ -3538,20 +3472,18 @@ msgid "Kill"
msgstr "Matar (kill)"
#: libraries/DisplayResults.class.php:4130
-#, fuzzy
#| msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]"
msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]."
msgstr ""
-"Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]"
+"Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]."
#: libraries/DisplayResults.class.php:4187 libraries/Message.class.php:180
#: libraries/rte/rte_routines.lib.php:1466 libraries/sql_query_form.lib.php:89
#: libraries/tbl_relation.lib.php:1038 tbl_find_replace.php:51
#: tbl_operations.php:200 tbl_row_action.php:130 view_operations.php:62
-#, fuzzy
#| msgid "Your SQL query has been executed successfully."
msgid "Your SQL query has been executed successfully."
-msgstr "A consulta de SQL executouse sen problemas"
+msgstr "A consulta de SQL executouse sen problemas."
#: libraries/DisplayResults.class.php:4573 libraries/structure.lib.php:692
#, php-format
@@ -3563,10 +3495,10 @@ msgstr ""
"%s."
#: libraries/DisplayResults.class.php:4586
-#, fuzzy, php-format
+#, php-format
#| msgid "Showing rows"
msgid "Showing rows %1s - %2s"
-msgstr "A mostrar as fileiras"
+msgstr "A mostrar as filas %1s + %2s"
#: libraries/DisplayResults.class.php:4601
#, php-format
@@ -3574,16 +3506,16 @@ msgid "%1$d total, %2$d in query"
msgstr ""
#: libraries/DisplayResults.class.php:4606
-#, fuzzy, php-format
+#, php-format
#| msgid "total"
msgid "%d total"
-msgstr "total"
+msgstr "%d total"
#: libraries/DisplayResults.class.php:4618 libraries/sql.lib.php:1507
-#, fuzzy, php-format
+#, php-format
#| msgid "Query took %01.4f sec"
msgid "Query took %01.4f seconds."
-msgstr "a consulta levou %01.4f segundos"
+msgstr "A consulta levou %01.4f segundos."
#: libraries/DisplayResults.class.php:4720
#: libraries/DisplayResults.class.php:4727 libraries/Util.class.php:4590
@@ -3641,26 +3573,23 @@ msgid "Visualize GIS data"
msgstr "Ver os datos GIS"
#: libraries/DisplayResults.class.php:5293
-#, fuzzy
#| msgid "Link not found"
msgid "Link not found!"
-msgstr "Non se atopou a ligazón"
+msgstr "Non se atopou a ligazón!"
#: libraries/Error_Handler.class.php:71
msgid "Too many error messages, some are not displayed."
msgstr "Houbo demasiadas mensaxes de erro; algunhas non se mostran."
#: libraries/Error_Handler.class.php:336
-#, fuzzy
#| msgid "Import"
msgid "Report"
-msgstr "Importar"
+msgstr "Informar"
#: libraries/Error_Handler.class.php:341 libraries/error_report.lib.php:373
-#, fuzzy
#| msgid "Automatically create versions"
msgid "Automatically send report next time"
-msgstr "Crear versions automaticamente"
+msgstr "A próxima vez, enviar un informe automaticamente"
#: libraries/File.class.php:225
msgid "File was not an uploaded file."
@@ -3701,12 +3630,11 @@ msgid "Unknown error in file upload."
msgstr "Produciuse un erro descoñecido ao enviar o ficheiro."
#: libraries/File.class.php:461
-#, fuzzy
#| msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
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:479
msgid "Error while moving uploaded file."
@@ -3722,10 +3650,9 @@ msgid "Currently running Git revision %1$s from the %2$s branch."
msgstr ""
#: libraries/Footer.class.php:81
-#, fuzzy
#| msgid "Version information"
msgid "Git information missing!"
-msgstr "Información sobre a versión"
+msgstr "Falta información sobre Git!"
#: libraries/Footer.class.php:185 libraries/Footer.class.php:189
#: libraries/Footer.class.php:192
@@ -3738,10 +3665,9 @@ msgstr "Prema a barra para desprazarse até a parte superior da páxina"
#: libraries/Header.class.php:718
#: libraries/plugins/auth/AuthenticationCookie.class.php:152
-#, fuzzy
#| msgid "Javascript must be enabled past this point"
msgid "Javascript must be enabled past this point!"
-msgstr "Javascript debe estar activo a partir de aquí"
+msgstr "Javascript debe estar activo a partir de aquí!"
#: libraries/Index.class.php:619
msgid "No index defined!"
@@ -3936,10 +3862,9 @@ msgid "Designer"
msgstr "Deseñador"
#: libraries/Menu.class.php:500 libraries/Util.class.php:4177
-#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns"
-msgstr "Columnas da área de texto"
+msgstr "Columnas centrais"
#: libraries/Menu.class.php:537 libraries/Util.class.php:4149
#: libraries/config/messages.inc.php:233
@@ -4023,10 +3948,9 @@ msgid "Error while creating PDF:"
msgstr "Produciuse un erro ao crear o PDF:"
#: libraries/RecentFavoriteTable.class.php:138
-#, fuzzy
#| msgid "Could not save recent table"
msgid "Could not save recent table!"
-msgstr "Non foi posíbel gravar a táboa recente"
+msgstr "Non foi posíbel gravar a táboa recente!"
#: libraries/RecentFavoriteTable.class.php:142
#, fuzzy
@@ -4042,39 +3966,34 @@ msgid "Remove from Favorites"
msgstr "Eliminar a gráfica"
#: libraries/RecentFavoriteTable.class.php:234
-#, fuzzy
#| msgid "There are no recent tables"
msgid "There are no recent tables."
msgstr "Non hai táboas recentes"
#: libraries/RecentFavoriteTable.class.php:235
-#, fuzzy
#| msgid "There are no recent tables"
msgid "There are no favorite tables."
-msgstr "Non hai táboas recentes"
+msgstr "Non hai táboas favoritas"
#: libraries/RecentFavoriteTable.class.php:250
msgid "Recent tables"
msgstr "Táboas recentes"
#: libraries/RecentFavoriteTable.class.php:252
-#, fuzzy
#| msgid "Reset"
msgid "Recent"
-msgstr "Reiniciar"
+msgstr "Recentes"
#: libraries/RecentFavoriteTable.class.php:254
#: libraries/config/messages.inc.php:480
-#, fuzzy
#| msgid "Variables"
msgid "Favorite tables"
-msgstr "Variábeis"
+msgstr "Táboas favoritas"
#: libraries/RecentFavoriteTable.class.php:256
-#, fuzzy
#| msgid "Variables"
msgid "Favorites"
-msgstr "Variábeis"
+msgstr "Favoritos"
#: libraries/SavedSearches.class.php:246
msgid "Please provide a name for this bookmarked search."
@@ -4087,24 +4006,22 @@ msgid "Missing information to save the bookmarked search."
msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin"
#: libraries/SavedSearches.class.php:283 libraries/SavedSearches.class.php:320
-#, fuzzy
#| msgid "The user %s already exists!"
msgid "An entry with this name already exists."
-msgstr "Xa existe o usuario %s!"
+msgstr "Xa existe unha entrada con este nome."
#: libraries/SavedSearches.class.php:347
msgid "Missing information to delete the search."
-msgstr ""
+msgstr "Falta información para eliminar a busca."
#: libraries/SavedSearches.class.php:375
msgid "Missing information to load the search."
-msgstr ""
+msgstr "Falta información para cargar a busca."
#: libraries/SavedSearches.class.php:394
-#, fuzzy
#| msgid "Error while moving uploaded file."
msgid "Error while loading the search."
-msgstr "Produciuse un erro ao mover o ficheiro subido."
+msgstr "Produciuse un erro ao cargar a busca."
#: libraries/ServerStatusData.class.php:188
#: libraries/server_status_processes.lib.php:97
@@ -4250,10 +4167,9 @@ msgid "This MySQL server does not support the %s storage engine."
msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
#: libraries/Table.class.php:397
-#, fuzzy
#| msgid "unknown table status: "
msgid "Unknown table status:"
-msgstr "estado da táboa descoñecido: "
+msgstr "Estado da táboa descoñecido:"
#: libraries/Table.class.php:777
#, php-format
@@ -4850,11 +4766,10 @@ msgid "Create PHP Code"
msgstr "Crear código PHP"
#: libraries/Util.class.php:1274
-#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
-msgstr "Editar o índice"
+msgstr "Editar na liña"
#. l10n: Short week day name
#: libraries/Util.class.php:1579
@@ -4907,10 +4822,9 @@ msgid "The directory you set for upload work cannot be reached."
msgstr "Non é posíbel acceder ao directorio que designou para os envíos."
#: libraries/Util.class.php:3412
-#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no files to upload!"
-msgstr "Non hai ficheiros para subir"
+msgstr "Non hai ficheiros para subir!"
#: libraries/Util.class.php:3437 libraries/Util.class.php:3438
#: libraries/structure.lib.php:326
@@ -5001,37 +4915,39 @@ msgid ""
"The configuration storage is not ready for the central list of columns "
"feature."
msgstr ""
+"O almacenamento de configuración non está preparado para a funcionalidade de "
+"lista central de columnas."
#: libraries/central_columns.lib.php:283
#, php-format
msgid "Could not add %1$s as they already exist in central list!"
-msgstr ""
+msgstr "Non foi posíbel engadir %1$s porque xa existen na lista central!"
#: libraries/central_columns.lib.php:298
-#, fuzzy
#| msgid "Could not save configuration"
msgid "Could not add columns!"
-msgstr "Non foi posíbel gravar a configuración"
+msgstr "Non foi posíbel engadir columnas!"
#: libraries/central_columns.lib.php:373
#, php-format
msgid ""
"Couldn't remove Column(s) %1$s as they don't exist in central columns list!"
msgstr ""
+"Non foi posíbel retirar a(s) columna(s) %1$s porque non existen na lista "
+"central de columnas!"
#: libraries/central_columns.lib.php:385
-#, fuzzy
#| msgid "Could not save recent table"
msgid "Could not remove columns!"
-msgstr "Non foi posíbel gravar a táboa recente"
+msgstr "Non foi posíbel retirar as columnas!"
#: libraries/central_columns.lib.php:530
msgid "YES"
-msgstr ""
+msgstr "SI"
#: libraries/central_columns.lib.php:530
msgid "NO"
-msgstr ""
+msgstr "NON"
#: libraries/central_columns.lib.php:652
#: libraries/display_create_table.lib.php:60
@@ -5053,10 +4969,9 @@ msgid "Length/Values"
msgstr "Tamaño/Valores"
#: libraries/central_columns.lib.php:660
-#, fuzzy
#| msgid "Attributes"
msgid "Attribute"
-msgstr "Atributos"
+msgstr "Atributo"
#: libraries/central_columns.lib.php:664
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:974
@@ -5066,20 +4981,18 @@ msgid "Extra"
msgstr "Extra"
#: libraries/central_columns.lib.php:685
-#, fuzzy
#| msgid "Select Tables"
msgid "Select a table"
-msgstr "Escoller táboas"
+msgstr "Seleccionar unha táboa"
#: libraries/central_columns.lib.php:739 libraries/structure.lib.php:1697
msgid "Add column"
msgstr "Engadir unha columna"
#: libraries/central_columns.lib.php:751
-#, fuzzy
#| msgid "Select two columns"
msgid "Select a column."
-msgstr "Escoller dúas columnas"
+msgstr "Seleccionar unha columna."
#: libraries/central_columns.lib.php:842 libraries/central_columns.lib.php:989
#, fuzzy
@@ -5088,20 +5001,18 @@ msgid "auto_increment"
msgstr "Incremento de Autoextend"
#: libraries/central_columns.lib.php:955
-#, fuzzy
#| msgid "Add column"
msgid "Add new column"
-msgstr "Engadir unha columna"
+msgstr "Engadir unha columna nova"
#: libraries/central_columns.lib.php:991
msgid "on update CURRENT_TIMESTAMP"
msgstr ""
#: libraries/common.inc.php:581
-#, fuzzy
#| msgid "Failed to read configuration file"
msgid "Failed to read configuration file!"
-msgstr "Foi imposíbel ler o ficheiro de configuración"
+msgstr "Foi imposíbel ler o ficheiro de configuración!"
#: libraries/common.inc.php:583
msgid ""
@@ -5217,7 +5128,7 @@ msgstr "Desactivado"
#: libraries/config.values.php:98
msgid "key"
-msgstr ""
+msgstr "clave"
#: libraries/config.values.php:99
#, fuzzy
@@ -5235,15 +5146,15 @@ msgstr "Fechado"
#: libraries/config.values.php:127
msgid "Ask before sending error reports"
-msgstr ""
+msgstr "Preguntar antes de enviar informes de fallo"
#: libraries/config.values.php:128
msgid "Always send error reports"
-msgstr ""
+msgstr "Enviar sempre os informes de fallo"
#: libraries/config.values.php:129
msgid "Never send error reports"
-msgstr ""
+msgstr "Non enviar nunca informes de fallo"
#: libraries/config.values.php:158
#: libraries/plugins/export/ExportHtmlword.class.php:69
@@ -5305,39 +5216,35 @@ msgstr "nada do anterior"
#: libraries/config/FormDisplay.class.php:96
#: libraries/config/Validator.class.php:565
-#, fuzzy
#| msgid "Not a positive number"
msgid "Not a positive number!"
-msgstr "Non é un número positivo"
+msgstr "Non é un número positivo!"
#: libraries/config/FormDisplay.class.php:97
#: libraries/config/Validator.class.php:587
-#, fuzzy
#| msgid "Not a non-negative number"
msgid "Not a non-negative number!"
-msgstr "Non é un número negativo"
+msgstr "Non é un número negativo!"
#: libraries/config/FormDisplay.class.php:98
#: libraries/config/Validator.class.php:543
-#, fuzzy
#| msgid "Not a valid port number"
msgid "Not a valid port number!"
-msgstr "Non é un número de porto válido"
+msgstr "Non é un número de porto aceptábel!"
#: libraries/config/FormDisplay.class.php:99
#: libraries/config/FormDisplay.class.php:609
#: libraries/config/Validator.class.php:605
-#, fuzzy
#| msgid "Incorrect value"
msgid "Incorrect value!"
-msgstr "O valor é incorrecto"
+msgstr "O valor é incorrecto!"
#: libraries/config/FormDisplay.class.php:100
#: libraries/config/Validator.class.php:621
-#, fuzzy, php-format
+#, php-format
#| msgid "Value must be equal or lower than %s"
msgid "Value must be equal or lower than %s!"
-msgstr "O valor debe ser igual ou menor a %s"
+msgstr "O valor debe ser igual ou menor a %s!"
#: libraries/config/FormDisplay.class.php:571
#, php-format
@@ -5413,7 +5320,7 @@ msgstr ""
"A chave debería conter letras, números [em]e[/em] caracteres especiais."
#: libraries/config/ServerConfigChecks.class.php:371
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "This %soption%s should be disabled as it allows attackers to bruteforce "
#| "login to any MySQL server. If you feel this is necessary, use %strusted "
@@ -5429,12 +5336,12 @@ msgid ""
msgstr ""
"Esta %sopción%s debe estar desactivada porque permite que os atacantes "
"inicien unha sesión por forza bruta a calquera servidor de MySQL. Se o "
-"estima necesario, utilice unha %slistaxe de proxies de confianza%s. Porén, a "
-"protección baseada en IP podería non ser fiábel se o seu IP pertence a un "
-"ISP ao que estean conectados miles de usuarios, incluíndoo a vostede."
+"estima necesario, utilice o %sacceso restrinxido ao servidor de MySQL%s ou "
+"unha %slistaxe de proxies de confianza%s. Porén, a protección baseada en IP "
+"podería non ser fiábel se o seu IP pertence a un ISP ao que estean "
+"conectados miles de usuarios, incluíndoo a vostede."
#: libraries/config/ServerConfigChecks.class.php:381
-#, fuzzy
#| msgid ""
#| "You didn't have blowfish secret set and have enabled cookie "
#| "authentication, so a key was automatically generated for you. It is used "
@@ -5445,8 +5352,8 @@ msgid ""
"encrypt cookies; you don't need to remember it."
msgstr ""
"Non configurou o secreto de blowfish e permitiu a autenticación mediante "
-"cookies, polo que se xerou automaticamente unha chave. Emprégase para cifrar "
-"cookies; non a ten que lembrar."
+"[kbd]cookies[/kbd], polo que se xerou automaticamente unha chave. Emprégase "
+"para cifrar cookies; non a ten que lembrar."
#: libraries/config/ServerConfigChecks.class.php:382
#, php-format
@@ -5481,7 +5388,7 @@ msgstr ""
"están dispoñíbeis neste sistema."
#: libraries/config/ServerConfigChecks.class.php:402
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "%sLogin cookie validity%s greater than 1440 seconds may cause random "
#| "session invalidation if %ssession.gc_maxlifetime%s is lower than its "
@@ -5490,9 +5397,9 @@ msgid ""
"%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause "
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
-"Unha %svalidez das cookies de rexistro%s maior de 1 440 segundos pode causar "
-"invalidacións aleatorias da sesión se %session.gc_maxlifetime%s for máis "
-"pequeno que o seu valor (actualmente %d)."
+"Unha %svalidez das cookies de rexistro%s maior de %ssession.gc_maxlifetime%s "
+"pode causar invalidacións aleatorias da sesión (actualmente a "
+"session.gc_maxlifetime é %d)."
#: libraries/config/ServerConfigChecks.class.php:413
#, php-format
@@ -5505,7 +5412,7 @@ msgstr ""
"de seguranza, como a suplantación de personalidade."
#: libraries/config/ServerConfigChecks.class.php:419
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "If using cookie authentication and %sLogin cookie store%s is not 0, "
#| "%sLogin cookie validity%s must be set to a value less or equal to it."
@@ -5513,12 +5420,12 @@ msgid ""
"If using [kbd]cookie[/kbd] authentication and %sLogin cookie store%s is not "
"0, %sLogin cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Se se emprega a autenticación mediante cookies e %so almacén de cookies de "
-"entrada%s non é 0, %sa validez das cookies de entrada%s ten que ter un valor "
-"menor ou igual a el."
+"Se se emprega a autenticación mediante [kbd]cookies[/kbd] e %so almacén de "
+"cookies de entrada%s non é 0, %sa validez das cookies de entrada%s ten que "
+"ter un valor menor ou igual a el."
#: libraries/config/ServerConfigChecks.class.php:427
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "If you feel this is necessary, use additional protection settings - "
#| "%shost authentication%s settings and %strusted proxies list%s. However, "
@@ -5530,8 +5437,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."
@@ -5570,58 +5477,51 @@ msgstr ""
"neste sistema."
#: libraries/config/Validator.class.php:249
-#, fuzzy
#| msgid "Could not initialize Drizzle connection library"
msgid "Could not initialize Drizzle connection library!"
-msgstr "Non foi posíbel iniciar a biblioteca de conexión Drizzle"
+msgstr "Non foi posíbel iniciar a biblioteca de conexión Drizzle!"
#: libraries/config/Validator.class.php:258
#: libraries/config/Validator.class.php:266
#: libraries/config/Validator.class.php:277
#: libraries/config/Validator.class.php:284
-#, fuzzy
#| msgid "Could not connect to the target"
msgid "Could not connect to the database server!"
-msgstr "Non foi posíbel conectar co destino"
+msgstr "Non foi posíbel conectar co servidor de bases de datos!"
#: libraries/config/Validator.class.php:319
-#, fuzzy
#| msgid "Empty username while using config authentication method"
msgid "Empty username while using [kbd]config[/kbd] authentication method!"
msgstr ""
-"Atopouse un nome de usuario baleiro ao empregar o método de autenticación da "
-"configuración"
+"Atopouse un nome de usuario baleiro ao empregar o método de autenticación "
+"mediante [kbd]configuración[/kbd]!"
#: libraries/config/Validator.class.php:326
-#, fuzzy
#| msgid "Empty signon session name while using signon authentication method"
msgid ""
"Empty signon session name while using [kbd]signon[/kbd] authentication "
"method!"
msgstr ""
"Atopouse un nome de rexistro da sesión baleiro ao empregar o método de "
-"autenticación mediante rexistro de entrada"
+"autenticación mediante [kbd]rexistro de acceso[/kbd]!"
#: libraries/config/Validator.class.php:335
-#, fuzzy
#| msgid "Empty signon URL while using signon authentication method"
msgid "Empty signon URL while using [kbd]signon[/kbd] authentication method!"
msgstr ""
-"Atopouse un URL de rexistro baleiro ao empregar o método de autenticación "
-"mediante rexistro de entrada"
+"Atopouse un URL de acceso baleiro ao empregar o método de autenticación "
+"mediante [dbd]rexistro de acceso[/kbd]!"
#: libraries/config/Validator.class.php:384
-#, fuzzy
#| msgid ""
#| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage"
msgid ""
"Empty phpMyAdmin control user while using phpMyAdmin configuration storage!"
msgstr ""
"Atopouse un usuario de control de phpMyAdmin baleiro ao empregar phpMyAdmin "
-"configuration storage"
+"configuration storage!"
#: libraries/config/Validator.class.php:389
-#, fuzzy
#| msgid ""
#| "Empty phpMyAdmin control user password while using phpMyAdmin "
#| "configuration storage"
@@ -5630,7 +5530,7 @@ msgid ""
"storage!"
msgstr ""
"Atopouse un contrasinal de control de phpMyAdmin baleiro ao empregar "
-"phpMyAdmin configuration storage"
+"phpMyAdmin configuration storage!"
#: libraries/config/Validator.class.php:473
msgid "Incorrect value:"
@@ -5642,14 +5542,13 @@ msgid "Incorrect IP address: %s"
msgstr "O enderezo de IP é incorrecto: %s"
#: libraries/config/messages.inc.php:18
-#, fuzzy
#| msgid ""
#| "If enabled user can enter any MySQL server in login form for cookie auth"
msgid ""
"If enabled, user can enter any MySQL server in login form for cookie auth."
msgstr ""
"Se estiver activado, os usuarios poden entrar en calquera servidor de MySQL "
-"no formulario de rexistro de cookie auth"
+"no formulario de rexistro de cookie auth."
#: libraries/config/messages.inc.php:19
msgid "Allow login to any MySQL server"
@@ -5663,10 +5562,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:25
-#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Restrict login to MySQL server"
-msgstr "Non é posíbel rexistrarse no servidor de MySQL"
+msgstr "Restrinxir o acceso aoo servidor de MySQL"
#: libraries/config/messages.inc.php:27
#, fuzzy
@@ -5718,17 +5616,15 @@ msgid "Row marker"
msgstr "Marcador de fileiras"
#: libraries/config/messages.inc.php:41
-#, fuzzy
#| msgid "Highlight row pointed by the mouse cursor"
msgid "Highlight row pointed by the mouse cursor."
-msgstr "Realzar a fileira á que apunta o cursor do rato"
+msgstr "Realzar a fila á que apunta o cursor do rato."
#: libraries/config/messages.inc.php:42
msgid "Highlight pointer"
msgstr "Realzar o punteiro"
#: libraries/config/messages.inc.php:44
-#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
#| "import and export operations"
@@ -5737,7 +5633,7 @@ msgid ""
"import operations."
msgstr ""
"Activar a compresión [a@http://gl.wikipedia.org/wiki/Bzip2]bzip2[/a] nas "
-"operacións de importación e exportación"
+"operacións de importación."
#: libraries/config/messages.inc.php:47
msgid "Bzip2"
@@ -5763,7 +5659,6 @@ msgid "CHAR columns editing"
msgstr "Edición de columnas CHAR"
#: libraries/config/messages.inc.php:55
-#, fuzzy
#| msgid ""
#| "Use user-friendly editor for editing SQL queries ([a@http://codemirror."
#| "net/]CodeMirror[/a]) with syntax highlighting and line numbers"
@@ -5771,8 +5666,9 @@ 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"
+"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:59
msgid "Enable CodeMirror"
@@ -5803,20 +5699,18 @@ msgid "Maximum size for input field"
msgstr "Tamaño máximo do campo de entrada"
#: libraries/config/messages.inc.php:70
-#, fuzzy
#| msgid "Number of columns for CHAR/VARCHAR textareas"
msgid "Number of columns for CHAR/VARCHAR textareas."
-msgstr "Número de columnas das áreas de texto de CHAR/VARCHAR"
+msgstr "Número de columnas das áreas de texto de CHAR/VARCHAR."
#: libraries/config/messages.inc.php:71
msgid "CHAR textarea columns"
msgstr "Columnas de área de texto de CHAR"
#: libraries/config/messages.inc.php:72
-#, fuzzy
#| msgid "Number of rows for CHAR/VARCHAR textareas"
msgid "Number of rows for CHAR/VARCHAR textareas."
-msgstr "Número de fileiras das áreas de texto de CHAR/VARCHAR"
+msgstr "Número de fileiras das áreas de texto de CHAR/VARCHAR."
#: libraries/config/messages.inc.php:73
msgid "CHAR textarea rows"
@@ -5827,7 +5721,6 @@ msgid "Check config file permissions"
msgstr "Comprobar os permisos do ficheiro de configuración"
#: libraries/config/messages.inc.php:76
-#, fuzzy
#| msgid ""
#| "Compress gzip/bzip2 exports on the fly without the need for much memory; "
#| "if you encounter problems with created gzip/bzip2 files disable this "
@@ -5838,7 +5731,7 @@ msgid ""
msgstr ""
"Comprimir ao voo as exportacións en gzip/bzip2 que non precisen moita "
"memoria; se atopa problemas cos ficheiros gzip/bzip2 que se creen, desactive "
-"esta funcionalidade"
+"esta funcionalidade."
#: libraries/config/messages.inc.php:79
msgid "Compress on the fly"
@@ -5850,7 +5743,6 @@ msgid "Configuration file"
msgstr "Ficheiro de configuración"
#: libraries/config/messages.inc.php:82
-#, fuzzy
#| msgid ""
#| "Whether a warning (\"Are your really sure…\") should be displayed when "
#| "you're about to lose data"
@@ -5859,7 +5751,7 @@ msgid ""
"you're about to lose data."
msgstr ""
"Se se debe mostrar un aviso (\"Ten a certeza…\") cando se estea a piques de "
-"perder datos"
+"perder datos."
#: libraries/config/messages.inc.php:85
msgid "Confirm DROP queries"
@@ -5870,40 +5762,36 @@ msgid "Debug SQL"
msgstr "Depurar o SQL"
#: libraries/config/messages.inc.php:88
-#, fuzzy
#| msgid "Tab that is displayed when entering a database"
msgid "Tab that is displayed when entering a database."
-msgstr "A lapela que aparece cando se entra nunha base de datos"
+msgstr "A lapela que aparece cando se entra nunha base de datos."
#: libraries/config/messages.inc.php:89
msgid "Default database tab"
msgstr "Lapela por omisión das bases de datos"
#: libraries/config/messages.inc.php:90
-#, fuzzy
#| msgid "Tab that is displayed when entering a server"
msgid "Tab that is displayed when entering a server."
-msgstr "A lapela que aparece cando se entra nun servidor"
+msgstr "A lapela que aparece cando se entra nun servidor."
#: libraries/config/messages.inc.php:91
msgid "Default server tab"
msgstr "Lapela por omisión dos servidores"
#: libraries/config/messages.inc.php:92
-#, fuzzy
#| msgid "Tab that is displayed when entering a table"
msgid "Tab that is displayed when entering a table."
-msgstr "A lapela que aparece cando se entra nunha táboa"
+msgstr "A lapela que aparece cando se entra nunha táboa."
#: libraries/config/messages.inc.php:93
msgid "Default table tab"
msgstr "Lapela por omisión das táboas"
#: libraries/config/messages.inc.php:95
-#, fuzzy
#| msgid "Whether the table structure actions should be hidden"
msgid "Whether the table structure actions should be hidden."
-msgstr "Se se desexa agochar as accións da estrutura da táboa"
+msgstr "Se se desexa agochar as accións da estrutura da táboa."
#: libraries/config/messages.inc.php:96
msgid "Hide table structure actions"
@@ -5932,7 +5820,6 @@ msgid "Disable multi table maintenance"
msgstr "Desactivar o mantemento de múltiples táboas"
#: libraries/config/messages.inc.php:106
-#, fuzzy
#| msgid ""
#| "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
#| "limit)"
@@ -5941,7 +5828,7 @@ msgid ""
"limit)."
msgstr ""
"Indicar o número de segundos durante o que se permite que un script se "
-"execute ([kbd]0[/kbd] para non o limitar)"
+"execute ([kbd]0[/kbd] para non o limitar)."
#: libraries/config/messages.inc.php:109
msgid "Maximum execution time"
@@ -6121,10 +6008,9 @@ msgstr "Desactivar as comprobacións de chaves exteriores"
#: libraries/config/messages.inc.php:170
#: libraries/plugins/export/ExportSql.class.php:155
-#, fuzzy
#| msgid "Export views"
msgid "Export views as tables"
-msgstr "Exportar as vistas"
+msgstr "Exportar as vistas como táboas"
#: libraries/config/messages.inc.php:171 libraries/config/messages.inc.php:173
#: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:175
@@ -6136,10 +6022,9 @@ msgid "Add %s"
msgstr "Engadir %s"
#: libraries/config/messages.inc.php:178
-#, fuzzy
#| msgid "Use hexadecimal for BLOB"
msgid "Use hexadecimal for BINARY & BLOB"
-msgstr "Empregar hexadecimal para BLOB"
+msgstr "Empregar hexadecimal para BINARY e para BLOB"
#: libraries/config/messages.inc.php:180
msgid "Use ignore inserts"
@@ -6197,10 +6082,9 @@ msgid "Foreign key dropdown order"
msgstr "Ordenación das chaves alleas"
#: libraries/config/messages.inc.php:207
-#, fuzzy
#| msgid "A dropdown will be used if fewer items are present"
msgid "A dropdown will be used if fewer items are present."
-msgstr "Emprégase un menú despregábel de haber un número menor de elementos"
+msgstr "Emprégase un menú despregábel de haber un número menor de elementos."
#: libraries/config/messages.inc.php:208
msgid "Foreign key limit"
@@ -6211,18 +6095,16 @@ msgid "Browse mode"
msgstr "Modo de navegación"
#: libraries/config/messages.inc.php:210
-#, fuzzy
#| msgid "Customize browse mode"
msgid "Customize browse mode."
-msgstr "Personalizar o modo de navegación"
+msgstr "Personalizar o modo de navegación."
#: libraries/config/messages.inc.php:212 libraries/config/messages.inc.php:214
#: libraries/config/messages.inc.php:232 libraries/config/messages.inc.php:243
#: libraries/config/messages.inc.php:245 libraries/config/messages.inc.php:291
-#, fuzzy
#| msgid "Customize default options"
msgid "Customize default options."
-msgstr "Personalizar as opcións por omisión"
+msgstr "Personalizar as opcións por omisión."
#: libraries/config/messages.inc.php:213 libraries/config/setup.forms.php:251
#: libraries/config/setup.forms.php:328
@@ -6236,30 +6118,27 @@ msgid "Developer"
msgstr "Desenvolvedor"
#: libraries/config/messages.inc.php:216
-#, fuzzy
#| msgid "Settings for phpMyAdmin developers"
msgid "Settings for phpMyAdmin developers."
-msgstr "Preferencias para os desenvolvedores de phpMyAdmin"
+msgstr "Preferencias para os desenvolvedores de phpMyAdmin."
#: libraries/config/messages.inc.php:217
msgid "Edit mode"
msgstr "Modo de edición"
#: libraries/config/messages.inc.php:218
-#, fuzzy
#| msgid "Customize edit mode"
msgid "Customize edit mode."
-msgstr "Personalizar o modo de edición"
+msgstr "Personalizar o modo de edición."
#: libraries/config/messages.inc.php:220
msgid "Export defaults"
msgstr "Exportar o predeterminado"
#: libraries/config/messages.inc.php:221
-#, fuzzy
#| msgid "Customize default export options"
msgid "Customize default export options."
-msgstr "Personalizar as opcións de exportación por omisión"
+msgstr "Personalizar as opcións de exportación por omisión."
#: libraries/config/messages.inc.php:222 libraries/config/messages.inc.php:283
#: setup/frames/menu.inc.php:22
@@ -6271,52 +6150,47 @@ msgid "General"
msgstr "Xeral"
#: libraries/config/messages.inc.php:224
-#, fuzzy
#| msgid "Set some commonly used options"
msgid "Set some commonly used options."
-msgstr "Configuración de algunhas opcións frecuentes"
+msgstr "Configuración dalgunhas opcións frecuentes."
#: libraries/config/messages.inc.php:226
msgid "Import defaults"
msgstr "Opcións de importación por omisión"
#: libraries/config/messages.inc.php:227
-#, fuzzy
#| msgid "Customize default common import options"
msgid "Customize default common import options."
-msgstr "Personalizar as opcións frecuentes de importación por omisión"
+msgstr "Personalizar as opcións frecuentes de importación por omisión."
#: libraries/config/messages.inc.php:228
msgid "Import / export"
msgstr "Importación / exportación"
#: libraries/config/messages.inc.php:230
-#, fuzzy
#| msgid "Set import and export directories and compression options"
msgid "Set import and export directories and compression options."
msgstr ""
"Designar os directorios de importación e exportación e as opcións de "
-"compresión"
+"compresión."
#: libraries/config/messages.inc.php:231
msgid "LaTeX"
msgstr "LaTeX"
#: libraries/config/messages.inc.php:234
-#, fuzzy
#| msgid "Databases display options"
msgid "Databases display options."
-msgstr "Opcións de exhibición das bases de datos"
+msgstr "Opcións de exhibición das bases de datos."
#: libraries/config/messages.inc.php:235 setup/frames/menu.inc.php:24
msgid "Navigation panel"
msgstr "Panel de navegación"
#: libraries/config/messages.inc.php:236
-#, fuzzy
#| msgid "Customize appearance of the navigation panel"
msgid "Customize appearance of the navigation panel."
-msgstr "Personalizar a aparencia do panel de navegación"
+msgstr "Personalizar a aparencia do panel de navegación."
#: libraries/config/messages.inc.php:237 libraries/select_server.lib.php:44
#: setup/frames/index.inc.php:144
@@ -6324,16 +6198,14 @@ msgid "Servers"
msgstr "Servidores"
#: libraries/config/messages.inc.php:238
-#, fuzzy
#| msgid "Servers display options"
msgid "Servers display options."
-msgstr "Opcións de exhibición dos servidores"
+msgstr "Opcións de exhibición dos servidores."
#: libraries/config/messages.inc.php:240
-#, fuzzy
#| msgid "Tables display options"
msgid "Tables display options."
-msgstr "Opcións de exhibición das táboas"
+msgstr "Opcións de exhibición das táboas."
#: libraries/config/messages.inc.php:241 setup/frames/menu.inc.php:25
msgid "Main panel"
@@ -6348,10 +6220,9 @@ msgid "Other core settings"
msgstr "Outras opcións principais"
#: libraries/config/messages.inc.php:248
-#, fuzzy
#| msgid "Settings that didn't fit anywhere else"
msgid "Settings that didn't fit anywhere else."
-msgstr "Configuracións que non cadraban noutra parte"
+msgstr "Configuracións que non cadraban noutra parte."
#: libraries/config/messages.inc.php:249
msgid "Page titles"
@@ -6384,7 +6255,6 @@ msgid "Security"
msgstr "Seguranza"
#: libraries/config/messages.inc.php:259
-#, fuzzy
#| msgid ""
#| "Please note that phpMyAdmin is just a user interface and its features do "
#| "not limit MySQL"
@@ -6393,7 +6263,7 @@ msgid ""
"limit MySQL."
msgstr ""
"Lembre que o phpMyAdmin é simplemente unha interface de usuario e que as "
-"súas funcionalidades non limitan o MySQL"
+"súas funcionalidades non limitan o MySQL."
#: libraries/config/messages.inc.php:262
msgid "Basic settings"
@@ -6404,17 +6274,15 @@ msgid "Authentication"
msgstr "Autenticación"
#: libraries/config/messages.inc.php:264
-#, fuzzy
#| msgid "Authentication settings"
msgid "Authentication settings."
-msgstr "Configuración da autenticación"
+msgstr "Configuración da autenticación."
#: libraries/config/messages.inc.php:265
msgid "Server configuration"
msgstr "Configuración do servidor"
#: libraries/config/messages.inc.php:267
-#, fuzzy
#| msgid ""
#| "Advanced server configuration, do not change these options unless you "
#| "know what they are for"
@@ -6423,20 +6291,18 @@ msgid ""
"what they are for."
msgstr ""
"Configuración avanzada do servidor; non altere estas opcións a non ser que "
-"saiba o que está a facer"
+"saiba o que está a facer."
#: libraries/config/messages.inc.php:270
-#, fuzzy
#| msgid "Enter server connection parameters"
msgid "Enter server connection parameters."
-msgstr "Introduza os parámetros da conexión ao servidor"
+msgstr "Introduza os parámetros da conexión ao servidor."
#: libraries/config/messages.inc.php:271
msgid "Configuration storage"
msgstr "Almacenamento da configuración"
#: libraries/config/messages.inc.php:273
-#, fuzzy
#| msgid ""
#| "Configure phpMyAdmin configuration storage to gain access to additional "
#| "features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] "
@@ -6447,7 +6313,7 @@ msgid ""
"documentation."
msgstr ""
"Configurar o phpMyAdmin para ter acceso a funcionalidades adicionais, vexa "
-"[doc@linked-tables]infraestrutura de táboas ligadas[/doc] na documentación"
+"[doc@linked-tables]infraestrutura de táboas ligadas[/doc] na documentación."
#: libraries/config/messages.inc.php:277
msgid "Changes tracking"
@@ -6487,60 +6353,54 @@ msgid "SQL Query box"
msgstr "Caixa de consultas de SQL"
#: libraries/config/messages.inc.php:290
-#, fuzzy
#| msgid "Customize links shown in SQL Query boxes"
msgid "Customize links shown in SQL Query boxes."
-msgstr "Personalizar as ligazóns que aparecen nas caixas de consulta de SQL"
+msgstr "Personalizar as ligazóns que aparecen nas caixas de consulta de SQL."
#: libraries/config/messages.inc.php:293
-#, fuzzy
#| msgid "SQL queries settings"
msgid "SQL queries settings."
-msgstr "Preferencias das consultas de SQL"
+msgstr "Preferencias das consultas de SQL."
#: libraries/config/messages.inc.php:294
msgid "Startup"
msgstr "Inicio"
#: libraries/config/messages.inc.php:295
-#, fuzzy
#| msgid "Customize startup page"
msgid "Customize startup page."
-msgstr "Personalizar a páxina de inicio"
+msgstr "Personalizar a páxina de inicio."
#: libraries/config/messages.inc.php:296
msgid "Database structure"
msgstr "Estrutura da base de datos"
#: libraries/config/messages.inc.php:298
-#, fuzzy
#| msgid ""
#| "Choose which details to show in the database structure (list of tables)"
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)"
+"de táboas)."
#: libraries/config/messages.inc.php:299 libraries/structure.lib.php:3284
msgid "Table structure"
msgstr "Estrutura da táboa"
#: libraries/config/messages.inc.php:301
-#, fuzzy
#| msgid "Settings for the table structure (list of columns)"
msgid "Settings for the table structure (list of columns)."
-msgstr "Configuración da estrutura da táboa (lista de columnas)"
+msgstr "Configuración da estrutura da táboa (lista de columnas)."
#: libraries/config/messages.inc.php:302
msgid "Tabs"
msgstr "Lapelas"
#: libraries/config/messages.inc.php:303
-#, fuzzy
#| msgid "Choose how you want tabs to work"
msgid "Choose how you want tabs to work."
-msgstr "Escolla como quere que funcionen as lapelas"
+msgstr "Escolla como quere que funcionen as lapelas."
#: libraries/config/messages.inc.php:304
msgid "Display relational schema"
@@ -6557,10 +6417,9 @@ msgid "Text fields"
msgstr "Campos de texto"
#: libraries/config/messages.inc.php:309
-#, fuzzy
#| msgid "Customize text input fields"
msgid "Customize text input fields."
-msgstr "Personalizar os campos de entrada de texto"
+msgstr "Personalizar os campos de entrada de texto."
#: libraries/config/messages.inc.php:310
msgid "Texy! text"
@@ -6575,13 +6434,11 @@ msgid "Warnings"
msgstr "Avisos"
#: libraries/config/messages.inc.php:314
-#, fuzzy
#| msgid "Disable some of the warnings shown by phpMyAdmin"
msgid "Disable some of the warnings shown by phpMyAdmin."
-msgstr "Desactiva algúns dos avisos mostrados por phpMyAdmin"
+msgstr "Desactiva algúns dos avisos mostrados por phpMyAdmin."
#: libraries/config/messages.inc.php:316
-#, fuzzy
#| msgid ""
#| "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for "
#| "import and export operations"
@@ -6590,7 +6447,7 @@ msgid ""
"and export operations."
msgstr ""
"Activar a compresión [a@http://gl.wikipedia.org/wiki/Gzip]gzip[/a] nas "
-"operacións de importación e exportación"
+"operacións de importación e exportación."
#: libraries/config/messages.inc.php:319
msgid "GZip"
@@ -6601,7 +6458,6 @@ msgid "Extra parameters for iconv"
msgstr "Parámetros extra para iconv"
#: libraries/config/messages.inc.php:322
-#, fuzzy
#| msgid ""
#| "If enabled, phpMyAdmin continues computing multiple-statement queries "
#| "even if one of the queries failed"
@@ -6610,7 +6466,7 @@ msgid ""
"if one of the queries failed."
msgstr ""
"Se estiver activado, o phpMyAdmin continúa a calcular as consultas de "
-"afirmacións múltiplas mesmo se unha destas consultas fallase"
+"afirmacións múltiplas mesmo se unha destas consultas fallase."
#: libraries/config/messages.inc.php:325
msgid "Ignore multiple statement errors"
@@ -6645,7 +6501,6 @@ msgid "Update data when duplicate keys found on import"
msgstr ""
#: libraries/config/messages.inc.php:341
-#, fuzzy
#| msgid ""
#| "Default format; be aware that this list depends on location (database, "
#| "table) and only SQL is always available"
@@ -6654,7 +6509,7 @@ msgid ""
"table) and only SQL is always available."
msgstr ""
"Formato por omisión; lembre que esta listaxe depende da localización (base "
-"de datos, táboa) e só SQL está sempre dispoñíbel"
+"de datos, táboa) e só SQL está sempre dispoñíbel."
#: libraries/config/messages.inc.php:344
msgid "Format of imported file"
@@ -6684,10 +6539,9 @@ msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr "Importar as porcentaxes como decimais (12.00% a .12)"
#: libraries/config/messages.inc.php:358
-#, fuzzy
#| msgid "Number of queries to skip from start"
msgid "Number of queries to skip from start."
-msgstr "Número de consultas que se ignoran dende o comezo"
+msgstr "Número de consultas que se ignoran dende o comezo."
#: libraries/config/messages.inc.php:359
msgid "Partial import: skip queries"
@@ -6702,17 +6556,15 @@ msgid "Initial state for sliders"
msgstr "Estado inicial dos controis desprazábeis"
#: libraries/config/messages.inc.php:366
-#, fuzzy
#| msgid "How many rows can be inserted at one time"
msgid "How many rows can be inserted at one time."
-msgstr "Cantas fileiras se poden inserir dunha volta"
+msgstr "Cantas fileiras se poden inserir dunha volta."
#: libraries/config/messages.inc.php:367
msgid "Number of inserted rows"
msgstr "Número de fileiras inseridas"
#: libraries/config/messages.inc.php:369
-#, fuzzy
#| msgid ""
#| "Maximum number of characters shown in any non-numeric column on browse "
#| "view"
@@ -6720,7 +6572,7 @@ msgid ""
"Maximum number of characters shown in any non-numeric column on browse view."
msgstr ""
"Número máximo de caracteres mostrados nunha columna non numérica na vista de "
-"exploración"
+"exploración."
#: libraries/config/messages.inc.php:371
msgid "Limit column characters"
@@ -6742,7 +6594,6 @@ msgid "Delete all cookies on logout"
msgstr "Eliminar todas as cookies ao saír"
#: libraries/config/messages.inc.php:379
-#, fuzzy
#| msgid ""
#| "Define whether the previous login should be recalled or not in cookie "
#| "authentication mode."
@@ -6751,7 +6602,7 @@ msgid ""
"kbd] authentication mode."
msgstr ""
"Definir se se debe lembrar ou non o rexistro previo no modo de autenticación "
-"mediante cookies."
+"mediante [kbd]cookies[/kbd]."
#: libraries/config/messages.inc.php:382
msgid "Recall user name"
@@ -6774,10 +6625,9 @@ msgid "Login cookie store"
msgstr "Almacenar as cookies de rexistro"
#: libraries/config/messages.inc.php:391
-#, fuzzy
#| msgid "Define how long (in seconds) a login cookie is valid"
msgid "Define how long (in seconds) a login cookie is valid."
-msgstr "Definir por cantos segundos é válida unha cookie"
+msgstr "Definir o tempo (en segundos) durante o que é válida unha cookie"
#: libraries/config/messages.inc.php:392
msgid "Login cookie validity"
@@ -6794,11 +6644,10 @@ msgid "Bigger textarea for LONGTEXT"
msgstr "Área de texto máis grande para LONGTEXT"
#: libraries/config/messages.inc.php:397
-#, fuzzy
#| msgid "Maximum number of characters used when a SQL query is displayed"
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
-"Número máximo de caracteres empregados cando se mostre unha consulta de SQL"
+"Número máximo de caracteres empregados cando se mostre unha consulta de SQL."
#: libraries/config/messages.inc.php:398
msgid "Maximum displayed SQL length"
@@ -6810,17 +6659,15 @@ msgid "Users cannot set a higher value"
msgstr "Os usuarios non poden estabelecer un valor máis alto"
#: libraries/config/messages.inc.php:401
-#, fuzzy
#| msgid "Maximum number of databases displayed in database list"
msgid "Maximum number of databases displayed in database list."
-msgstr "Número máximo de táboas que se mostran na listaxe de bases de datos"
+msgstr "Número máximo de táboas que se mostran na listaxe de bases de datos."
#: libraries/config/messages.inc.php:402
msgid "Maximum databases"
msgstr "Bases de datos máximas"
#: libraries/config/messages.inc.php:404
-#, fuzzy
#| msgid ""
#| "The number of items that can be displayed on each page of the navigation "
#| "tree."
@@ -6828,14 +6675,13 @@ msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
msgstr ""
-"O número de elementos que desexa mostrar en cada páxina da árbore de "
-"navegación."
+"O número de elementos que desexa mostrar en cada páxina do primeiro nivel da "
+"árbore de navegación."
#: libraries/config/messages.inc.php:407
-#, fuzzy
#| msgid "Maximum items in branch"
msgid "Maximum items on first level"
-msgstr "Número máximo de elementos por galla"
+msgstr "Número máximo de elementos do primeiro nivel"
#: libraries/config/messages.inc.php:409
msgid ""
@@ -6863,10 +6709,9 @@ msgid "Maximum number of rows to display"
msgstr "Número máximo de fileiras que se mostran"
#: libraries/config/messages.inc.php:419
-#, fuzzy
#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of tables displayed in table 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 táboas."
#: libraries/config/messages.inc.php:420
msgid "Maximum tables"
@@ -6893,37 +6738,33 @@ msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
#: libraries/config/messages.inc.php:428
-#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show databases navigation as tree"
-msgstr "Mostrar o logotipo no panel de navegación"
+msgstr "Mostrar a navegación polas bases de datos como árbore"
#: libraries/config/messages.inc.php:430
msgid "Link with main panel by highlighting the current database or table."
msgstr ""
#: libraries/config/messages.inc.php:432
-#, fuzzy
#| msgid "Show logo in navigation panel"
msgid "Show logo in navigation panel."
-msgstr "Mostrar o logotipo no panel de navegación"
+msgstr "Mostrar o logotipo no panel de navegación."
#: libraries/config/messages.inc.php:433
msgid "Display logo"
msgstr "Mostrar o logotipo"
#: libraries/config/messages.inc.php:435
-#, fuzzy
#| msgid "URL where logo in the navigation panel will point to"
msgid "URL where logo in the navigation panel will point to."
-msgstr "URL ao que apunta o logotipo do panel de navegación"
+msgstr "URL ao que apunta o logotipo do panel de navegación."
#: libraries/config/messages.inc.php:436
msgid "Logo link URL"
msgstr "URL da ligazón ao logotipo"
#: libraries/config/messages.inc.php:438
-#, fuzzy
#| msgid ""
#| "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
#| "([kbd]new[/kbd])"
@@ -6932,17 +6773,16 @@ msgid ""
"([kbd]new[/kbd])."
msgstr ""
"Abrir a páxina ligada na xanela principal ([kbd]principal[/kbd]) ou nunha "
-"nova ([kbd]nova[/kbd])"
+"nova ([kbd]nova[/kbd])."
#: libraries/config/messages.inc.php:441
msgid "Logo link target"
msgstr "Destino da ligazón do logotipo"
#: libraries/config/messages.inc.php:443
-#, fuzzy
#| msgid "Display server choice at the top of the navigation panel"
msgid "Display server choice at the top of the navigation panel."
-msgstr "Mostrar a escolla de servidor na parte superior do panel de navegación"
+msgstr "Mostrar a escolla de servidor na parte superior do panel de navegación."
#: libraries/config/messages.inc.php:444
msgid "Display servers selection"
@@ -6953,10 +6793,9 @@ msgid "Target for quick access icon"
msgstr "Destino da icona de acceso rápido"
#: libraries/config/messages.inc.php:447
-#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
-msgstr "Destino da icona de acceso rápido"
+msgstr "Destino da segunda icona de acceso rápido"
#: libraries/config/messages.inc.php:450
msgid ""
@@ -6975,7 +6814,6 @@ msgid "Minimum number of databases to display the database filter box"
msgstr "Número mínimo de bases de datos para mostrar a caixa de filtro"
#: libraries/config/messages.inc.php:458
-#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
#| "below)"
@@ -6983,28 +6821,26 @@ msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
-"Agrupar os elementos na árbore de navegación (determinado polo separador "
-"indicado embaixo)"
+"Agrupar os elementos na árbore de navegación (determinado polo separador nas "
+"táboas Bases de datos e Táboas de enriba)."
#: libraries/config/messages.inc.php:460
msgid "Group items in the tree"
msgstr "Agrupar os elementos na árbore"
#: libraries/config/messages.inc.php:462
-#, fuzzy
#| msgid "String that separates databases into different tree levels"
msgid "String that separates databases into different tree levels."
-msgstr "Cadea que separa as bases de datos en tres niveis distintos"
+msgstr "Cadea que separa as bases de datos en tres niveis distintos."
#: libraries/config/messages.inc.php:463
msgid "Database tree separator"
msgstr "Separador da árbore das bases de datos"
#: libraries/config/messages.inc.php:465
-#, fuzzy
#| msgid "String that separates tables into different tree levels"
msgid "String that separates tables into different tree levels."
-msgstr "Cadea que separa as táboas en tres niveis distintos"
+msgstr "Cadea que separa as táboas en tres niveis distintos."
#: libraries/config/messages.inc.php:466
msgid "Table tree separator"
@@ -7015,10 +6851,9 @@ msgid "Maximum table tree depth"
msgstr "Profundidade máxima das táboas"
#: libraries/config/messages.inc.php:469
-#, fuzzy
#| msgid "Highlight server under the mouse cursor"
msgid "Highlight server under the mouse cursor."
-msgstr "Realzar o servidor que estea por baixo do cursor do rato"
+msgstr "Realzar o servidor que estea por baixo do cursor do rato."
#: libraries/config/messages.inc.php:470
msgid "Enable highlighting"
@@ -7030,10 +6865,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:474
-#, fuzzy
#| msgid "Table navigation bar"
msgid "Enable navigation tree expansion"
-msgstr "Barra de navegación das táboas"
+msgstr "Activar a expansión da árbore de navegación"
#: libraries/config/messages.inc.php:476
#, fuzzy
@@ -7283,30 +7117,27 @@ msgid "Grid editing: save all edited cells at once"
msgstr "Edición da grella: gravar todas as celas editadas inmediatamente"
#: libraries/config/messages.inc.php:548
-#, fuzzy
#| msgid "Directory where exports can be saved on server"
msgid "Directory where exports can be saved on server."
-msgstr "Directorio no que se poden gravar as exportacións no servidor"
+msgstr "Directorio no que se poden gravar as exportacións no servidor."
#: libraries/config/messages.inc.php:549
msgid "Save directory"
msgstr "Directorio de gardado"
#: libraries/config/messages.inc.php:550
-#, fuzzy
#| msgid "Leave blank if not used"
msgid "Leave blank if not used."
-msgstr "Déixeo en branco se non o vai empregar"
+msgstr "Déixeo en branco se non o vai empregar."
#: libraries/config/messages.inc.php:551
msgid "Host authorization order"
msgstr "Orde de autenticación do servidor"
#: libraries/config/messages.inc.php:552
-#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Leave blank for defaults."
-msgstr "Déixeo en branco para o predefinido"
+msgstr "Déixeo en branco para o predefinido."
#: libraries/config/messages.inc.php:553
msgid "Host authorization rules"
@@ -7321,10 +7152,9 @@ msgid "Allow root login"
msgstr "Permitir o rexistro de root"
#: libraries/config/messages.inc.php:556
-#, fuzzy
#| msgid "Session value"
msgid "Session timezone"
-msgstr "Valor da sesión"
+msgstr "Zona horaria da sesión"
#: libraries/config/messages.inc.php:557
msgid ""
@@ -7364,10 +7194,9 @@ msgid "SweKey config file"
msgstr "Ficheiro de configuración SweKey"
#: libraries/config/messages.inc.php:567
-#, fuzzy
#| msgid "Authentication method to use"
msgid "Authentication method to use."
-msgstr "Método de autenticación que se quere empregar"
+msgstr "Método de autenticación que se quere empregar."
#: libraries/config/messages.inc.php:568 setup/frames/index.inc.php:163
msgid "Authentication type"
@@ -7386,7 +7215,6 @@ msgid "Bookmark table"
msgstr "Táboa de marcadores"
#: libraries/config/messages.inc.php:575
-#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma__column_info[/kbd]"
@@ -7395,28 +7223,26 @@ msgid ""
"[kbd]pma__column_info[/kbd]."
msgstr ""
"Déixeo en branco se non quere comentarios/tipos mime das columnas; suxírese: "
-"[kbd]pma__column_info[/kbd]"
+"[kbd]pma__column_info[/kbd]."
#: libraries/config/messages.inc.php:578
msgid "Column information table"
msgstr "Táboa de información das columnas"
#: libraries/config/messages.inc.php:579
-#, fuzzy
#| msgid "Compress connection to MySQL server"
msgid "Compress connection to MySQL server."
-msgstr "Comprimir a conexión ao servidor de MySQL"
+msgstr "Comprimir a conexión ao servidor de MySQL."
#: libraries/config/messages.inc.php:580
msgid "Compress connection"
msgstr "Comprimir a conexión"
#: libraries/config/messages.inc.php:582
-#, fuzzy
#| msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
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"
+"Como ligar co servidor; déixeo como [kbd]tcp[/kbd] se non está segura/a."
#: libraries/config/messages.inc.php:583
msgid "Connection type"
@@ -7427,7 +7253,6 @@ msgid "Control user password"
msgstr "Contrasinal do usuario de control"
#: libraries/config/messages.inc.php:586
-#, fuzzy
#| msgid ""
#| "A special MySQL user configured with limited permissions, more "
#| "information available on [a@http://wiki.phpmyadmin.net/pma/"
@@ -7437,15 +7262,14 @@ 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:589
msgid "Control user"
msgstr "Usuario de control"
#: libraries/config/messages.inc.php:591
-#, fuzzy
#| msgid ""
#| "An alternate host to hold the configuration storage; leave blank to use "
#| "the already defined host"
@@ -7454,14 +7278,13 @@ msgid ""
"already defined host."
msgstr ""
"Un servidor alternativo que manteña o almacenamento da configuración; déixeo "
-"en branco para empregar o servidor xa indicado"
+"en branco para empregar o servidor xa indicado."
#: libraries/config/messages.inc.php:594
msgid "Control host"
msgstr "Servidor de control"
#: libraries/config/messages.inc.php:596
-#, fuzzy
#| msgid ""
#| "An alternate port to connect to the host that holds the configuration "
#| "storage; leave blank to use the default port, or the already defined "
@@ -7473,17 +7296,16 @@ msgid ""
msgstr ""
"Un porto alternativo ao que conectar o servidor que manteña o almacenamento "
"da configuración; déixeo en branco para empregar o servidor por omisión, ou "
-"o porto xa definido se controlhost for o mesmo que o servidor"
+"o porto xa definido se controlhost for o mesmo que o servidor."
#: libraries/config/messages.inc.php:600
msgid "Control port"
msgstr "Porto de control"
#: libraries/config/messages.inc.php:602
-#, fuzzy
#| msgid "Hide databases matching regular expression (PCRE)"
msgid "Hide databases matching regular expression (PCRE)."
-msgstr "Agochar as bases de datos que coincidan cunha expresión regular (PCRE)"
+msgstr "Agochar as bases de datos que coincidan cunha expresión regular (PCRE)."
#: libraries/config/messages.inc.php:603
msgid ""
@@ -7503,7 +7325,6 @@ msgid "Hide databases"
msgstr "Agochar as bases de datos"
#: libraries/config/messages.inc.php:607
-#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma__history[/kbd]"
@@ -7512,17 +7333,16 @@ 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:610
msgid "SQL query history table"
msgstr "Táboa do historial de consultas SQL"
#: libraries/config/messages.inc.php:611
-#, fuzzy
#| msgid "Hostname where MySQL server is running"
msgid "Hostname where MySQL server is running."
-msgstr "Nome da máquina na que se executa o servidor de MySQL"
+msgstr "Nome da máquina na que se executa o servidor de MySQL."
#: libraries/config/messages.inc.php:612
msgid "Server hostname"
@@ -7533,7 +7353,6 @@ msgid "Logout URL"
msgstr "URL de desconexión"
#: libraries/config/messages.inc.php:615
-#, fuzzy
#| msgid ""
#| "Limits number of table preferences which are stored in database, the "
#| "oldest records are automatically removed"
@@ -7542,7 +7361,7 @@ msgid ""
"records are automatically removed."
msgstr ""
"Limita o número de preferencias de táboas que se almacenan na base de datos; "
-"os rexistros máis antigos elimínanse automaticamente"
+"os rexistros máis antigos elimínanse automaticamente."
#: libraries/config/messages.inc.php:619
msgid "Maximal number of table preferences to store"
@@ -7555,7 +7374,6 @@ msgid "QBE saved searches table"
msgstr "Ver a táboa de estado do escravo"
#: libraries/config/messages.inc.php:622
-#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
#| "kbd]"
@@ -7563,14 +7381,13 @@ msgid ""
"Leave blank for no QBE saved searches support, suggested: "
"[kbd]pma__savedsearches[/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:625
-#, fuzzy
#| msgid "Textarea columns"
msgid "Central columns table"
-msgstr "Columnas da área de texto"
+msgstr "Táboa de columnas centrais"
#: libraries/config/messages.inc.php:627
#, fuzzy
@@ -7585,10 +7402,9 @@ msgstr ""
"[kbd]pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:630
-#, fuzzy
#| msgid "Try to connect without password"
msgid "Try to connect without password."
-msgstr "Tentar conectarse sen contrasinal"
+msgstr "Tentar conectarse sen contrasinal."
#: libraries/config/messages.inc.php:631
msgid "Connect without password"
@@ -7609,32 +7425,29 @@ msgid "Show only listed databases"
msgstr "Mostrar só as bases de datos listadas"
#: libraries/config/messages.inc.php:638 libraries/config/messages.inc.php:731
-#, fuzzy
#| msgid "Leave empty if not using config auth"
msgid "Leave empty if not using config auth."
-msgstr "Déixeo en branco se non vai empregar config auth"
+msgstr "Déixeo en branco se non vai empregar config auth."
#: libraries/config/messages.inc.php:639
msgid "Password for config auth"
msgstr "Contrasinal para config auth"
#: libraries/config/messages.inc.php:641
-#, 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:643
msgid "PDF schema: pages table"
msgstr "PDF schema: táboa de páxinas"
#: libraries/config/messages.inc.php:645
-#, fuzzy
#| msgid ""
#| "Database used for relations, bookmarks, and PDF features. See [a@http://"
#| "wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave "
@@ -7647,7 +7460,7 @@ 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]"
+"[kbd]phpmyadmin[/kbd]."
#: libraries/config/messages.inc.php:649
#: libraries/display_create_database.lib.php:31
@@ -7655,19 +7468,17 @@ msgid "Database name"
msgstr "Nome da base de datos"
#: libraries/config/messages.inc.php:651
-#, fuzzy
#| msgid "Port on which MySQL server is listening, leave empty for default"
msgid "Port on which MySQL server is listening, leave empty for default."
msgstr ""
"Porto polo que está a escoitar o servidor de MySQL server; déixeo en branco "
-"para deixar o predefinido"
+"para deixar o predefinido."
#: libraries/config/messages.inc.php:652
msgid "Server port"
msgstr "Porto do servidor"
#: libraries/config/messages.inc.php:654
-#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
#| "suggested: [kbd]pma__recent[/kbd]"
@@ -7676,14 +7487,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:657
msgid "Recently used table"
msgstr "Táboa usada recentemente"
#: libraries/config/messages.inc.php:659
-#, fuzzy
#| msgid ""
#| "Leave blank for no \"persistent\" recently used tables across sessions, "
#| "suggested: [kbd]pma__recent[/kbd]"
@@ -7692,16 +7502,14 @@ msgid ""
"suggested: [kbd]pma__favorite[/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:662
-#, fuzzy
#| msgid "Variables"
msgid "Favorites table"
-msgstr "Variábeis"
+msgstr "Táboa de favoritos"
#: libraries/config/messages.inc.php:664
-#, fuzzy
#| msgid ""
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma__relation[/kbd]"
@@ -7709,15 +7517,14 @@ 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:668
msgid "Relation table"
msgstr "Táboa de relacións"
#: libraries/config/messages.inc.php:670
-#, fuzzy
#| msgid ""
#| "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
#| "types[/a] for an example"
@@ -7726,7 +7533,7 @@ msgid ""
"types[/a] for an example."
msgstr ""
"Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
-"autenticación[/a] se quere un exemplo"
+"autenticación[/a] se quere un exemplo."
#: libraries/config/messages.inc.php:673
msgid "Signon session name"
@@ -7737,29 +7544,26 @@ msgid "Signon URL"
msgstr "URL de rexistro de entrada"
#: libraries/config/messages.inc.php:676
-#, fuzzy
#| msgid "Socket on which MySQL server is listening, leave empty for default"
msgid "Socket on which MySQL server is listening, leave empty for default."
msgstr ""
"Socket polo que está a escoitar o servidor de MySQL; déixeo en branco para "
-"deixar o predefinido"
+"deixar o predefinido."
#: libraries/config/messages.inc.php:677
msgid "Server socket"
msgstr "Socket do servidor"
#: libraries/config/messages.inc.php:678
-#, fuzzy
#| msgid "Enable SSL for connection to MySQL server"
msgid "Enable SSL for connection to MySQL server."
-msgstr "Activar a SSL para a conexión ao servidor de MySQL"
+msgstr "Activar a SSL para a conexión ao servidor de MySQL."
#: libraries/config/messages.inc.php:679
msgid "Use SSL"
msgstr "Empregar a SSL"
#: libraries/config/messages.inc.php:681
-#, fuzzy
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
#| "kbd]"
@@ -7768,7 +7572,7 @@ msgid ""
"kbd]."
msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: "
-"[kbd]pma__table_coords[/kbd]"
+"[kbd]pma__table_coords[/kbd]."
#: libraries/config/messages.inc.php:683
#, fuzzy
@@ -12835,7 +12639,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/he.po b/po/he.po
index 793e4dec34..e748a1ecd9 100644
--- a/po/he.po
+++ b/po/he.po
@@ -12166,7 +12166,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/hi.po b/po/hi.po
index 0e65184513..dd00d23354 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -2,18 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-02-04 18:16+0200\n"
-"Last-Translator: Nisarg Jhaveri \n"
-"Language-Team: Hindi \n"
+"PO-Revision-Date: 2015-09-14 00:30+0200\n"
+"Last-Translator: Atul Pratap Singh \n"
+"Language-Team: Hindi "
+"\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 2.2-dev\n"
+"X-Generator: Weblate 2.4-dev\n"
#: changelog.php:36 license.php:28
#, php-format
@@ -328,23 +328,21 @@ msgid "Access denied!"
msgstr "प्रवेश निषेध!"
#: db_tracking.php:39 db_tracking.php:64
-#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data deleted successfully."
-msgstr "डेटा परिभाषा पर नज़र रखना"
+msgstr "ट्रैकिंग डेटा को सफलतापूर्वक नष्ट कर दिया |"
#: db_tracking.php:48
-#, fuzzy, php-format
+#, php-format
#| msgid "Version %s is created, tracking for %s.%s is activated."
msgid ""
"Version %1$s was created for selected tables, tracking is active for them."
-msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय"
+msgstr "संस्करण %1$s बन चूका है, ट्रैकिंग के लिए सक्रिय हुआ |"
#: db_tracking.php:79
-#, fuzzy
#| msgid "No databases selected."
msgid "No tables selected."
-msgstr "कोइ डाटाबेस नहीं चुना गया है।"
+msgstr "कोइ टेबल नहीं चुना गया है।"
#: db_tracking.php:114
msgid "Tracked tables"
@@ -605,7 +603,6 @@ msgid "Failed"
msgstr "असफल रहा"
#: import.php:62
-#, fuzzy
#| msgid "complete inserts"
msgid "Incomplete params"
msgstr "अपूर्ण पैरामीटर"
@@ -681,7 +678,7 @@ msgid "Import has been successfully finished, %d queries executed."
msgstr "आयात सफलतापूर्वक समाप्त हो गया है,%d कुएरी चलाई गयी हैं."
#: import.php:665
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "Script timeout passed, if you want to finish import, please resubmit same "
#| "file and import will resume."
@@ -689,7 +686,8 @@ msgid ""
"Script timeout passed, if you want to finish import, please %sresubmit the "
"same file%s and import will resume."
msgstr ""
-"स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए वही फाइल फिर से जमा करें."
+"स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए %sवही फाइल फिर से "
+"जमा करें%s."
#: import.php:675
msgid ""
@@ -701,7 +699,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "आयात की प्रगति लोड नहीं कर सका."
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -782,22 +780,19 @@ msgid "Web server"
msgstr "वेब सर्वर"
#: index.php:327
-#, fuzzy
#| msgid "Use light version"
msgid "Database client version:"
-msgstr "सरल संस्करण का उपयोग"
+msgstr "डाटाबेस ग्राहक संस्करण:"
#: index.php:331
-#, fuzzy
#| msgid "PHP extension"
msgid "PHP extension:"
-msgstr "PHPविस्तार"
+msgstr "PHP एक्सटेंशन:"
#: index.php:345
-#, fuzzy
#| msgid "Version"
msgid "PHP version:"
-msgstr "संस्करण"
+msgstr "PHP संस्करण:"
#: index.php:356
msgid "Show PHP information"
@@ -12477,7 +12472,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/hr.po b/po/hr.po
index 638b605c42..cd0d75642a 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -12609,7 +12609,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/hu.po b/po/hu.po
index 2c3df8049d..7d0498cdff 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-20 09:30+0200\n"
-"Last-Translator: Balázs Úr \n"
-"Language-Team: Hungarian \n"
+"PO-Revision-Date: 2015-08-26 14:34+0200\n"
+"Last-Translator: Michal Čihař \n"
+"Language-Team: Hungarian "
+"\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -11886,7 +11886,7 @@ msgstr ""
"legyen bemutatva."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Érvényes X509 tanúsítványt igényel."
#: libraries/server_privileges.lib.php:867
@@ -13444,10 +13444,10 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
-msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
+msgstr "SQL lekérdezés(ek) futtatása a(z) %s táblán"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
diff --git a/po/hy.po b/po/hy.po
index 2f55392b9a..8cb9616896 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-08-19 16:48+0200\n"
+"PO-Revision-Date: 2015-09-18 07:09+0200\n"
"Last-Translator: Andrey Aleksanyants \n"
"Language-Team: Armenian "
"\n"
@@ -740,7 +740,7 @@ msgstr "Փոխել գաղտնաբառը"
#: index.php:202
msgid "Server connection collation"
-msgstr "Սպասարկչի կապի կոդավորումը"
+msgstr "Սպասարկչի կապի համադրումը"
#: index.php:224
msgid "Appearance Settings"
@@ -841,8 +841,8 @@ msgid ""
msgstr ""
"Դուք միացել եք որպես 'root' առանց գաղտնաբառի, ինչը համապատասխանում է MySQL-ի "
"հաշվի լռելյայն արտոնությունների կայանքներին։ Տվյալ կայանքներով մենկնարկված "
-"MySQL սպասարկիչը պաշտպանված չէ ներխուժումներից, ուստի դուք պետք է շտկեք այս "
-"անվտանգություն խոցելիությունը՝ նշանակելով գաղտնաբառ 'root' օգտվողի համար։"
+"MySQL սպասարկիչը պաշտպանված չէ ներխուժումներից, ուստի դուք պետք է շտկեք "
+"անվտանգության այս խոցելիությունը՝ 'root' օգտվողի համար գաղտնաբառ նշանակելով։"
#: index.php:464
msgid ""
@@ -910,8 +910,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. %sFind out why%s. "
msgstr ""
-"phpMyAdmin-ի կազմաձևի տարածությունը լիովին կազմաձևած չէ, որոշ հավելյալ "
-"հատկությունները կասեցվեցին %sԻմացեք, թե ինչու%s։ "
+"phpMyAdmin-ի կազմաձևի պահպանումը լիովին կազմաձևած չէ, որոշ ընդլայնված "
+"հատկությունները կասեցվել են։ %sԻմացեք, թե ինչու%s։ "
#: index.php:549
msgid ""
@@ -1299,7 +1299,7 @@ msgstr "Հարցեր"
#: js/messages.php:153 libraries/server_status.lib.php:134
msgid "Traffic"
-msgstr "Երթևեկություն"
+msgstr "Փոխանակում"
#: js/messages.php:154 libraries/Menu.class.php:579
#: libraries/Util.class.php:4155 libraries/server_status_monitor.lib.php:257
@@ -2372,7 +2372,7 @@ msgstr "Կապել հիմնական փեղկին"
#: js/messages.php:494 libraries/navigation/NavigationTree.class.php:1338
msgid "Unlink from main panel"
-msgstr "Ապակապել հիմնանակ փեղկից"
+msgstr "Ապակապել հիմնական փեղկից"
#: js/messages.php:495
msgid "To filter all databases on server, press Enter after a search term"
@@ -3114,7 +3114,7 @@ msgstr "Ջնջել՝"
#: libraries/DBQbe.class.php:1462
#, php-format
msgid "SQL query on database %s:"
-msgstr "%s տվյալների բազային SQL հարցում՝"
+msgstr "%s տվյալների բազային ուղղված SQL հարցումը՝"
#: libraries/DBQbe.class.php:1476 libraries/Util.class.php:1217
msgid "Submit Query"
@@ -3324,7 +3324,7 @@ msgstr "Ցուցադրել BLOB տվյալները"
#: libraries/DisplayResults.class.php:1654
msgid "Hide browser transformation"
-msgstr "Թաքցնել կերպարանափոխությունը"
+msgstr "Թաքցնել դիտարկչի ձևափոխումը"
#: libraries/DisplayResults.class.php:1664
msgid "Well Known Text"
@@ -3569,7 +3569,7 @@ msgstr "Բազմության հզորություն"
#: libraries/tbl_columns_definition_form.lib.php:340
#: libraries/tracking.lib.php:879 libraries/tracking.lib.php:968
msgid "Collation"
-msgstr "Համեմատումը"
+msgstr "Համադրում"
#: libraries/Index.class.php:655 libraries/rte/rte_events.lib.php:507
#: libraries/rte/rte_routines.lib.php:1089 libraries/tracking.lib.php:883
@@ -3764,7 +3764,7 @@ msgstr "Խրվակներ"
#: libraries/Menu.class.php:612 libraries/Util.class.php:4161
msgid "Engines"
-msgstr "Շարժիչներ"
+msgstr "Պահպանման տեսակներ"
#: libraries/Message.class.php:199 libraries/Util.class.php:624
#: libraries/core.lib.php:245 libraries/import.lib.php:183
@@ -3833,7 +3833,7 @@ msgstr "Վերջին աղյուսակները"
#: libraries/RecentFavoriteTable.class.php:252
msgid "Recent"
-msgstr "Վերջերս օգտագործված"
+msgstr "Վերջինները"
#: libraries/RecentFavoriteTable.class.php:254
#: libraries/config/messages.inc.php:480
@@ -3842,7 +3842,7 @@ msgstr "Ընտրյալ աղյուսակներ"
#: libraries/RecentFavoriteTable.class.php:256
msgid "Favorites"
-msgstr "Ընտրյալներ"
+msgstr "Ընտրյալները"
#: libraries/SavedSearches.class.php:246
msgid "Please provide a name for this bookmarked search."
@@ -3866,7 +3866,7 @@ msgstr "Բացակայում են տեղեկություններ՝ որոնու
#: libraries/SavedSearches.class.php:394
msgid "Error while loading the search."
-msgstr "Սխալ որոնումը բեռնելու ժամանակ։"
+msgstr "Որոնումը բեռնելու սխալ։"
#: libraries/ServerStatusData.class.php:188
#: libraries/server_status_processes.lib.php:97
@@ -3939,7 +3939,7 @@ msgstr "Ցուցադրել ենթարկվող խնամորդները"
#: libraries/ServerStatusData.class.php:236
#: libraries/replication_gui.lib.php:50
msgid "Show master status"
-msgstr "Ցուցադրել վերադաս սպասարկչի կարգավիճակը"
+msgstr "Ցուցադրել հիմնական սպասարկչի կարգավիճակը"
#: libraries/ServerStatusData.class.php:239
msgid "Show slave status"
@@ -3960,7 +3960,7 @@ msgstr "Հարցումների վիճակագրություն"
#: libraries/ServerStatusData.class.php:381
msgid "All status variables"
-msgstr "Կարգավիճակի բոբոր փոփոխականները"
+msgstr "Կարգավիճակի բոլոր փոփոխականները"
#: libraries/ServerStatusData.class.php:385
msgid "Monitor"
@@ -3988,13 +3988,15 @@ msgstr[1] "%d րոպե"
msgid ""
"There is no detailed status information available for this storage engine."
msgstr ""
-"Այս պահպանման շարժիչի համար մանրակրկիտ կարգավիճակի տեղեկությունները "
-"բացակայում են։"
+"Աղյուսակների պահպանման այս տեսակի համար մանրակրկիտ կարգավիճակի "
+"տեղեկությունները բացակայում են։"
#: libraries/StorageEngine.class.php:373 libraries/structure.lib.php:213
#, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr "%s-ը հանդիսանում է MySQL սպասարկչի լռելյայն պահպանման շարժիչը։"
+msgstr ""
+"%s-ը հանդիսանում է տվյալ MySQL սպասարկչում աղյուսակների պահպանման լռելյայն "
+"տեսակը։"
#: libraries/StorageEngine.class.php:376
#, php-format
@@ -4009,7 +4011,7 @@ msgstr "%s աղյուսակների տեսակը կասեցվել է այս MySQ
#: libraries/StorageEngine.class.php:383
#, php-format
msgid "This MySQL server does not support the %s storage engine."
-msgstr "Այս MySQL սպասարկիչը չի աջակցում %s պահպանման շարժիչը։"
+msgstr "Այս MySQL սպասարկիչը չի աջակցում աղյուսակների պահպանման %s տեսակը։"
#: libraries/Table.class.php:397
msgid "Unknown table status:"
@@ -4408,6 +4410,8 @@ msgid ""
"An enumeration, chosen from the list of up to 65,535 values or the special "
"'' error value"
msgstr ""
+"Թվարկում, որի արժեքը ընտրվում է մինչև 65,535 արժեքներ պարունակող ցանկից կամ "
+"պարունակում '' հատուկ սխալի արժեքը"
#: libraries/Types.class.php:380
msgid "A single value chosen from a set of up to 64 members"
@@ -4505,6 +4509,8 @@ msgid ""
"A variable-length (0-65,535) string, uses binary collation for all "
"comparisons"
msgstr ""
+"Փոփոխական երկարության գրվածք (0-65,535), որն օգտագործում է երկուական "
+"համարդումը բոլոր համեմատումների համար"
#: libraries/Types.class.php:798
msgid "An enumeration, chosen from the list of defined values"
@@ -4585,7 +4591,7 @@ msgstr "Կտտացրեք՝ փոխարկելու համար"
#: libraries/Util.class.php:3347 libraries/sql_query_form.lib.php:436
#: prefs_manage.php:246
msgid "Browse your computer:"
-msgstr ""
+msgstr "Զննել համակարգիչը՝"
#: libraries/Util.class.php:3372
#, php-format
@@ -4785,6 +4791,8 @@ msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
+"Սա սովորաբար նշանակում է շարահյուսության սխալների առկայություն, խնդրում ենք "
+"ստուգել ստորև ցուցադրվող սխալները։"
#: libraries/common.inc.php:590
#, php-format
@@ -4910,7 +4918,7 @@ msgstr "Փակ"
#: libraries/config.values.php:127
msgid "Ask before sending error reports"
-msgstr "Հանցնել՝ սխալների զեկույցները ուղարկելուց առաջ"
+msgstr "Հարցնել՝ սխալների զեկույցները ուղարկելուց առաջ"
#: libraries/config.values.php:128
msgid "Always send error reports"
@@ -5446,7 +5454,7 @@ msgstr ""
#: libraries/config/messages.inc.php:99
msgid "Display servers as a list"
-msgstr ""
+msgstr "Ցուցադրել սպասարկիչների ցանկի տեսքով"
#: libraries/config/messages.inc.php:101
msgid ""
@@ -5463,6 +5471,8 @@ msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)."
msgstr ""
+"Նշեք վայրկյանների քանակը, որոնց ընթացքում սցենարը կարող է աշխատել "
+"([kbd]0[/kbd] - առանց սահմանափակման)։"
#: libraries/config/messages.inc.php:109
msgid "Maximum execution time"
@@ -5541,7 +5551,7 @@ msgstr "Excel տարբերակ"
#: libraries/config/messages.inc.php:125
msgid "Database name template"
-msgstr ""
+msgstr "Տվյալների բազայի անվան ձևանմուշը"
#: libraries/config/messages.inc.php:126
msgid "Server name template"
@@ -5753,7 +5763,7 @@ msgstr "Արտահանման լռելյայն կայանքներ"
#: libraries/config/messages.inc.php:221
msgid "Customize default export options."
-msgstr ""
+msgstr "Կազմաձևել արտահանման լռելյայն կայանքները։"
#: libraries/config/messages.inc.php:222 libraries/config/messages.inc.php:283
#: setup/frames/menu.inc.php:22
@@ -5815,7 +5825,7 @@ msgstr "Աղյուսակների ցանկի ցուցադրման կայանքն
#: libraries/config/messages.inc.php:241 setup/frames/menu.inc.php:25
msgid "Main panel"
-msgstr "Հիմնական փեղկը"
+msgstr "Հիմնական փեղկ"
#: libraries/config/messages.inc.php:242
msgid "Microsoft Office"
@@ -5929,15 +5939,15 @@ msgstr "SQL հարցումներ"
#: libraries/config/messages.inc.php:289
msgid "SQL Query box"
-msgstr ""
+msgstr "SQL հարցման տուփ"
#: libraries/config/messages.inc.php:290
msgid "Customize links shown in SQL Query boxes."
-msgstr ""
+msgstr "Կազմաձևել SQL հարցման տուփերում ցուցադրվող հղումները։"
#: libraries/config/messages.inc.php:293
msgid "SQL queries settings."
-msgstr ""
+msgstr "SQL հարցումների կայանքները։"
#: libraries/config/messages.inc.php:294
msgid "Startup"
@@ -6028,7 +6038,7 @@ msgstr ""
#: libraries/config/messages.inc.php:325
msgid "Ignore multiple statement errors"
-msgstr ""
+msgstr "Անտեսել բաղկացած հարցումների սխալները"
#: libraries/config/messages.inc.php:327
msgid ""
@@ -6045,7 +6055,7 @@ msgstr "Մասնակի ներմուծում՝ թույլատրել խզումն
#: libraries/plugins/import/ImportCsv.class.php:89
#: libraries/plugins/import/ImportLdi.class.php:73
msgid "Do not abort on INSERT error"
-msgstr "Չընդհատել INSERT-ը կատարելուց առաջացած սխալների պատճառով"
+msgstr "Չընդհատել INSERT-ի ժամանակ առաջացած սխալների դեպքում"
#: libraries/config/messages.inc.php:337 libraries/config/messages.inc.php:349
msgid "Add ON DUPLICATE KEY UPDATE"
@@ -6175,6 +6185,7 @@ msgstr ""
#: libraries/config/messages.inc.php:397
msgid "Maximum number of characters used when a SQL query is displayed."
msgstr ""
+"SQL հարցումը ցուցադրելու ժամանակ օգտագործվող նշանների առավելագույն քանակը։"
#: libraries/config/messages.inc.php:398
msgid "Maximum displayed SQL length"
@@ -6197,7 +6208,7 @@ msgstr "Տվյալների բազաների առավելագույն քանակ
msgid ""
"The number of items that can be displayed on each page on the first level of "
"the navigation tree."
-msgstr ""
+msgstr "Մեկ էջում նավարկման ծառի առաջին աստիճանում ցուցադրվող տարրերի քանակը։"
#: libraries/config/messages.inc.php:407
msgid "Maximum items on first level"
@@ -6207,7 +6218,7 @@ msgstr "Առաջին աստիճանում տարրերի առավելագույ
msgid ""
"The number of items that can be displayed on each page of the navigation "
"tree."
-msgstr ""
+msgstr "Մեկ էջում նավարկման ծառում ցուցադրվող տարրերի քանակը։"
#: libraries/config/messages.inc.php:411
msgid "Maximum items in branch"
@@ -6316,6 +6327,8 @@ msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
msgstr ""
+"Խմբավորել տարրերը նավարկման ծառում (սահմանվում է վերևի տվյալների բազաների և "
+"աղյուսակների ներդիրներում նշված բաժանիչով)։"
#: libraries/config/messages.inc.php:460
msgid "Group items in the tree"
@@ -6327,7 +6340,7 @@ msgstr ""
#: libraries/config/messages.inc.php:463
msgid "Database tree separator"
-msgstr "Տվյալների բազաների ծառի սահմանիչը"
+msgstr "Տվյալների բազաների ծառի բաժանիչը"
#: libraries/config/messages.inc.php:465
msgid "String that separates tables into different tree levels."
@@ -6335,7 +6348,7 @@ msgstr ""
#: libraries/config/messages.inc.php:466
msgid "Table tree separator"
-msgstr "Աղյուսակների ծառի սահմանիչը"
+msgstr "Աղյուսակների ծառի բաժանիչը"
#: libraries/config/messages.inc.php:467
msgid "Maximum table tree depth"
@@ -6411,7 +6424,7 @@ msgstr ""
#: libraries/config/messages.inc.php:495
msgid "Default sorting order"
-msgstr ""
+msgstr "Լռելյայն դասակարգումը"
#: libraries/config/messages.inc.php:497
msgid "Use persistent connections to MySQL databases."
@@ -6494,7 +6507,7 @@ msgstr ""
#: libraries/config/messages.inc.php:534
msgid "Recoding engine"
-msgstr ""
+msgstr "Վերակոդավորման տեսակը"
#: libraries/config/messages.inc.php:536
msgid "When browsing tables, the sorting of each table is remembered."
@@ -6551,7 +6564,7 @@ msgstr "Թողեք դատարկ, թեթ չի օգտագործվում։"
#: libraries/config/messages.inc.php:551
msgid "Host authorization order"
-msgstr ""
+msgstr "Խնամորդի նունյացման հերթականությունը"
#: libraries/config/messages.inc.php:552
msgid "Leave blank for defaults."
@@ -6559,7 +6572,7 @@ msgstr "Թողեք դատարկ՝ լռելյայնը օգտագործելու հ
#: libraries/config/messages.inc.php:553
msgid "Host authorization rules"
-msgstr ""
+msgstr "Խնամորդի նունյացման կանոնները"
#: libraries/config/messages.inc.php:554
msgid "Allow logins without a password"
@@ -6703,7 +6716,7 @@ msgstr ""
#: libraries/config/messages.inc.php:610
msgid "SQL query history table"
-msgstr ""
+msgstr "SQL հարցումների պատմության աղյուսակը"
#: libraries/config/messages.inc.php:611
msgid "Hostname where MySQL server is running."
@@ -6857,7 +6870,7 @@ msgstr "Սպասարկչի բնակը"
#: libraries/config/messages.inc.php:678
msgid "Enable SSL for connection to MySQL server."
-msgstr ""
+msgstr "Օգտագործել SSL՝ MySQL սպասարկչին միանալու համար։"
#: libraries/config/messages.inc.php:679
msgid "Use SSL"
@@ -7106,6 +7119,8 @@ msgstr ""
msgid ""
"Defines whether SQL queries generated by phpMyAdmin should be displayed."
msgstr ""
+"Սահմանում է, արդյո՞ք phpMyAdmin-ի կողմից ստեղծված SQL հարցումները պետք է "
+"ցուցադրվեն։"
#: libraries/config/messages.inc.php:756
msgid "Show SQL queries"
@@ -7308,7 +7323,7 @@ msgstr "reCaptcha-ի գաղտնի բանալին"
#: libraries/config/messages.inc.php:810
msgid "Choose the default action when sending error reports."
-msgstr ""
+msgstr "Ընտրել լռելյայն գործողությունը՝ սխալների զեկույցը ուղարկելու ժամանակ։"
#: libraries/config/messages.inc.php:811
msgid "Send error reports"
@@ -7655,11 +7670,11 @@ msgstr "Արտահանման եղանակը՝"
#: libraries/display_export.lib.php:216
msgid "Quick - display only the minimal options"
-msgstr ""
+msgstr "Արագ՝ ցուցադրել նվազագույն կայանքները"
#: libraries/display_export.lib.php:228
msgid "Custom - display all possible options"
-msgstr ""
+msgstr "Ընտելական՝ ցուցադրել բոլոր առկա կայանքները"
#: libraries/display_export.lib.php:250
msgid "Database(s):"
@@ -7792,7 +7807,7 @@ msgstr "Նոր աղյուսակի անունը"
#: libraries/display_export.lib.php:836
msgid "Old column name"
-msgstr ""
+msgstr "Սյունակի նախորդ անունը"
#: libraries/display_export.lib.php:837
msgid "New column name"
@@ -7844,13 +7859,15 @@ msgstr "Ներմուծում \"%s\" աղյուսակի մեջ"
#: libraries/display_import.lib.php:153
#, php-format
msgid "File may be compressed (%s) or uncompressed."
-msgstr ""
+msgstr "Ֆայլը կարող է լինել սեղմած պահոցի տեսքով (%s), կամ առանց սեղմելու։"
#: libraries/display_import.lib.php:159
msgid ""
"A compressed file's name must end in .[format].[compression]. "
"Example: .sql.zip"
msgstr ""
+"Սեղմած ֆայլի անունը պետք է վերջանա .[ձևաչափ].[սեղմում] տեսքով։ Օրինակ՝"
+" .sql.zip"
#: libraries/display_import.lib.php:222
msgid "File to Import:"
@@ -7858,7 +7875,7 @@ msgstr "Ներմուծելու ֆայլը՝"
#: libraries/display_import.lib.php:232 libraries/display_import.lib.php:249
msgid "You may also drag and drop a file on any page."
-msgstr ""
+msgstr "Դուք կարող եք նաև քաշել և գցել ֆայլը՝ ցանկացած էջում։"
#: libraries/display_import.lib.php:252
msgid "File uploads are not allowed on this server."
@@ -7886,6 +7903,8 @@ msgid ""
"Skip this number of queries (for SQL) or lines (for other formats), starting "
"from the first one:"
msgstr ""
+"Զանցել հարցումների (SQL-ի դեպքում) կամ տողերի (այլ ձևանմուշների դեպքում) "
+"նշված քանակը, սկսած հետևյալից՝"
#: libraries/display_import.lib.php:346
msgid "Format-Specific Options:"
@@ -8093,7 +8112,7 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:28
msgid "Index cache size"
-msgstr ""
+msgstr "Ցուցակագրի շտեմի չափը"
#: libraries/engines/pbxt.lib.php:29
msgid ""
@@ -8141,6 +8160,8 @@ msgid ""
"The size of the global transaction log buffer (the engine allocates 2 "
"buffers of this size). The default is 1MB."
msgstr ""
+"Ընդհանրական գործարքների մատյանի պահնակի չափը (շարժիչը հատկացնում նշված չափի "
+"2 պահնակ)։ Լռելիությամբ՝ 1 մԲայթ։"
#: libraries/engines/pbxt.lib.php:53
msgid "Checkpoint frequency"
@@ -8327,6 +8348,8 @@ msgid ""
"Only INSERT, UPDATE, DELETE and REPLACE SQL queries containing transactional "
"engine tables can be rolled back."
msgstr ""
+"Հետարկումը հնարավոր է միայն INSERT, UPDATE, DELETE և REPLACE SQL հարցումների "
+"համար, որոնք պարունակում են շարժիչի գործարքային աղյուսակները։"
#: libraries/index.lib.php:34
#, php-format
@@ -8365,7 +8388,7 @@ msgstr "Զետեղել որպես նոր տող"
#: libraries/insert_edit.lib.php:1458
msgid "Insert as new row and ignore errors"
-msgstr ""
+msgstr "Զետեղել որպես նոր տող և անտեսել սխալներ"
#: libraries/insert_edit.lib.php:1461
msgid "Show insert query"
@@ -8489,7 +8512,7 @@ msgstr "Դանիերեն"
#: libraries/mysql_charsets.lib.php:198
msgid "English"
-msgstr ""
+msgstr "Անգլերեն"
#: libraries/mysql_charsets.lib.php:201
msgid "Esperanto"
@@ -8529,7 +8552,7 @@ msgstr "Լատվիերեն"
#: libraries/mysql_charsets.lib.php:225
msgid "Lithuanian"
-msgstr "Լիթվերեն"
+msgstr "Լիտվերեն"
#: libraries/mysql_charsets.lib.php:228 libraries/mysql_charsets.lib.php:333
msgid "Korean"
@@ -8607,7 +8630,7 @@ msgstr "Բալտիկական"
#: libraries/mysql_charsets.lib.php:321
msgid "Armenian"
-msgstr "Հայկական"
+msgstr "Հայերեն"
#: libraries/mysql_charsets.lib.php:327
msgid "Cyrillic"
@@ -8619,7 +8642,7 @@ msgstr "Արաբերեն"
#: libraries/mysql_charsets.lib.php:336
msgid "Hebrew"
-msgstr ""
+msgstr "Եբրայերեն"
#: libraries/mysql_charsets.lib.php:339
msgid "Georgian"
@@ -8631,7 +8654,7 @@ msgstr "Հունարեն"
#: libraries/mysql_charsets.lib.php:345
msgid "Czech-Slovak"
-msgstr "Չեխոսլովակական"
+msgstr "Չեխոսլովակերեն"
#: libraries/mysql_charsets.lib.php:360 libraries/mysql_charsets.lib.php:367
#: libraries/structure.lib.php:1164
@@ -8640,7 +8663,7 @@ msgstr "անհայտ"
#: libraries/navigation/Navigation.class.php:54
msgid "An error has occurred while loading the navigation display"
-msgstr ""
+msgstr "Նավարկման փեղկի բեռման ժամանակ առաջացել է սխալ"
#: libraries/navigation/Navigation.class.php:187
msgid "Events:"
@@ -8710,7 +8733,7 @@ msgstr "Զտել ըստ անվան կամ կանոնավոր արտահայտո
#: libraries/navigation/NavigationTree.class.php:1329
msgid "Collapse all"
-msgstr "Կոծկել բոբորը"
+msgstr "Կոծկել բոլորը"
#. l10n: The word "Node" must not be translated here
#: libraries/navigation/NodeFactory.class.php:41
@@ -9006,7 +9029,7 @@ msgstr ""
#: libraries/normalization.lib.php:457 libraries/normalization.lib.php:600
#: libraries/normalization.lib.php:663
msgid "Error in processing!"
-msgstr ""
+msgstr "Մշակման ժամանակ առաջացել է սխալ։"
#: libraries/normalization.lib.php:501
#, php-format
@@ -9156,7 +9179,7 @@ msgstr "Աղյուսակի մեկնաբանությունը"
#: libraries/operations.lib.php:759 libraries/server_engines.lib.php:49
msgid "Storage Engine"
-msgstr ""
+msgstr "Պահպանման տեսակը"
#: libraries/operations.lib.php:960
msgid "Copy table to (database.table):"
@@ -9176,7 +9199,7 @@ msgstr "Ստուգել աղյուսակը"
#: libraries/operations.lib.php:1093
msgid "Defragment table"
-msgstr ""
+msgstr "Ապամասնատել աղյուսակը"
#: libraries/operations.lib.php:1106 libraries/structure.lib.php:338
msgid "Analyze table"
@@ -9861,7 +9884,7 @@ msgstr "ESRI ձևի ֆայլ"
#: libraries/plugins/import/ImportShp.class.php:140
#, php-format
msgid "There was an error importing the ESRI shape file: \"%s\"."
-msgstr ""
+msgstr "ESRI ձևի ֆայլը ներմուծելու ժամանակ առաջացել է սխալ՝ \"%s\"։"
#: libraries/plugins/import/ImportShp.class.php:196
msgid ""
@@ -10126,7 +10149,7 @@ msgstr ""
#: libraries/pmd_common.php:492
msgid "Error: relation already exists."
-msgstr ""
+msgstr "Սխալ՝ կապակցումը արդեն իսկ առկա է։"
#: libraries/pmd_common.php:538
msgid "FOREIGN KEY relation has been added."
@@ -10134,15 +10157,15 @@ msgstr ""
#: libraries/pmd_common.php:543
msgid "Error: FOREIGN KEY relation could not be added!"
-msgstr ""
+msgstr "Սխալ՝ հնարավոր չէ ավելացնել արտաքին բանալիի կապակցումը։"
#: libraries/pmd_common.php:548
msgid "Error: Missing index on column(s)."
-msgstr ""
+msgstr "Սխալ՝ սյունակ(ներ)ի ցուցակագիրը բացակայում է։"
#: libraries/pmd_common.php:552
msgid "Error: Relational features are disabled!"
-msgstr ""
+msgstr "Սխալ՝ կապակցման հատկությունները կասեցված են։"
#: libraries/pmd_common.php:572
msgid "Internal relation has been added."
@@ -10158,7 +10181,7 @@ msgstr "Արտաքին բանալիի կապակցումը ջնջվեց։"
#: libraries/pmd_common.php:624
msgid "Error: FOREIGN KEY relation could not be removed!"
-msgstr ""
+msgstr "Սխալ՝ հնարավոր չէ հեռացնել արտաքին բանալիի կապակցումը։"
#: libraries/pmd_common.php:651
msgid "Error: Internal relation could not be removed!"
@@ -10203,7 +10226,7 @@ msgstr "Սյունակների մեկնաբանությունների ցուցա
#: libraries/relation.lib.php:173
msgid "Browser transformation"
-msgstr ""
+msgstr "Դիտարկչի ձևափոխումը"
#: libraries/relation.lib.php:180
msgid "Please see the documentation on how to update your column_info table. "
@@ -10239,7 +10262,7 @@ msgstr "Ձևափոխվող ընտրացանկեր"
#: libraries/relation.lib.php:287
msgid "Hide/show navigation items"
-msgstr ""
+msgstr "Ցուցադրել/թաքցնել նավարկման տարրերը"
#: libraries/relation.lib.php:298
msgid "Saving Query-By-Example searches"
@@ -10290,11 +10313,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:46 libraries/replication_gui.lib.php:333
#: libraries/server_databases.lib.php:388
msgid "Master replication"
-msgstr ""
+msgstr "Հիմնական սպասարկչի կրկնապատկում"
#: libraries/replication_gui.lib.php:47
msgid "This server is configured as master in a replication process."
msgstr ""
+"Այս սպասարկիչը կազմաձևած է որպես հիմնական կրկնապատկման գործընթացի համար։"
#: libraries/replication_gui.lib.php:55
msgid "Show connected slaves"
@@ -10302,11 +10326,11 @@ msgstr "Ցուցադրել միացրալ ենթարկվող սպասարկիչ
#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:690
msgid "Add slave replication user"
-msgstr ""
+msgstr "Ավելացնել կրկնապատկման ենթարկվող օգտվողին"
#: libraries/replication_gui.lib.php:88
msgid "Master configuration"
-msgstr ""
+msgstr "Հիմնական սպասարկչի կազմաձևում"
#: libraries/replication_gui.lib.php:90
msgid ""
@@ -10341,15 +10365,18 @@ msgid ""
"should see a message informing you, that this server is configured as "
"master."
msgstr ""
+"MySQL սպասարկչի վերամեկնարկումից անմիջապես հետո խնդրում ենք կտտացնել 'Առաջ' "
+"կոճակը, ինչից հետո դուք պետք է տեսնեք տեղեկություն՝ որ տվյալ սպասարկիչը "
+"կազմաձևած է որպես հիմնական։"
#: libraries/replication_gui.lib.php:141
#: libraries/server_databases.lib.php:390
msgid "Slave replication"
-msgstr ""
+msgstr "Ենթարկվող սպասարկչի կրկնապատկում"
#: libraries/replication_gui.lib.php:143
msgid "Master connection:"
-msgstr ""
+msgstr "Հիմնական միացում՝"
#: libraries/replication_gui.lib.php:209
msgid "Slave SQL Thread not running!"
@@ -10363,6 +10390,8 @@ msgstr ""
msgid ""
"Server is configured as slave in a replication process. Would you like to:"
msgstr ""
+"Սպասարկիչը կազմաձևած է որպես ենթարկվող՝ կրկնապատկման գործընթացի համար։ Նշեք "
+"գործողությունը՝"
#: libraries/replication_gui.lib.php:229
msgid "See slave status table"
@@ -10374,11 +10403,11 @@ msgstr ""
#: libraries/replication_gui.lib.php:240
msgid "Full start"
-msgstr ""
+msgstr "Ամբողջական մեկնարկում"
#: libraries/replication_gui.lib.php:241
msgid "Full stop"
-msgstr ""
+msgstr "Ամբողջական կանգ"
#: libraries/replication_gui.lib.php:243
msgid "Reset slave"
@@ -10402,7 +10431,7 @@ msgstr "Կանգնեցնել միայն ներածման/արտածման հոս
#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:391
msgid "Change or reconfigure master server"
-msgstr ""
+msgstr "Փոփոխել կամ վերակազմաձևել հիմնական սպասարկիչը"
#: libraries/replication_gui.lib.php:276
#, php-format
@@ -10410,10 +10439,12 @@ msgid ""
"This server is not configured as slave in a replication process. Would you "
"like to configure it?"
msgstr ""
+"Այս սպասարկիչը կազմաձևած չէ որպես ենթարկվող՝ կրկնապատկման գործընթացի համար։ "
+"Ցանկանու՞մ եք կազմաձևել այն։"
#: libraries/replication_gui.lib.php:297
msgid "Error management:"
-msgstr "Սխալների կառավարումը՝"
+msgstr "Սխալների կառավարում՝"
#: libraries/replication_gui.lib.php:300
msgid "Skipping errors might lead into unsynchronized master and slave!"
@@ -10421,12 +10452,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:304
msgid "Skip current error"
-msgstr "Զանցել ընթացիկ սխալը"
+msgstr "Անտեսել ընթացիկ սխալը"
#: libraries/replication_gui.lib.php:309
#, php-format
msgid "Skip next %s errors."
-msgstr "Զանցել հաջորդ %s սխալները։"
+msgstr "Անտեսել հաջորդ %s սխալները։"
#: libraries/replication_gui.lib.php:336
#, php-format
@@ -10434,6 +10465,8 @@ msgid ""
"This server is not configured as master in a replication process. Would you "
"like to configure it?"
msgstr ""
+"Այս սպասարկիչը կազմաձևած չէ որպես հիմնական՝ կրկնապատկման գործընթացի համար։ "
+"Ցանկանու՞մ եք կազմաձևել այն։"
#: libraries/replication_gui.lib.php:368
msgid "Uncheck All"
@@ -10476,7 +10509,7 @@ msgstr "Միացք՝"
#: libraries/replication_gui.lib.php:519
msgid "Master status"
-msgstr ""
+msgstr "Հիմնական սպասարկչի կարգավիճակը"
#: libraries/replication_gui.lib.php:522
msgid "Slave status"
@@ -10557,27 +10590,27 @@ msgstr ""
#: libraries/replication_gui.lib.php:923
msgid "Replication started successfully."
-msgstr ""
+msgstr "Կրկնապատկումը հաջողությամբ մեկնարկվեց։"
#: libraries/replication_gui.lib.php:924
msgid "Error starting replication."
-msgstr ""
+msgstr "Կարկնապատկումը մեկնարկելու սխալ։"
#: libraries/replication_gui.lib.php:927
msgid "Replication stopped successfully."
-msgstr ""
+msgstr "Կրկնապատկումը հաջողությամբ կանգնեցվեց։"
#: libraries/replication_gui.lib.php:928
msgid "Error stopping replication."
-msgstr ""
+msgstr "Կրկնապատկումը կանգնեցնելու սխալ։"
#: libraries/replication_gui.lib.php:931
msgid "Replication resetting successfully."
-msgstr ""
+msgstr "Կրկնապատկումը հաջողությամբ վերակայվեց։"
#: libraries/replication_gui.lib.php:932
msgid "Error resetting replication."
-msgstr ""
+msgstr "Կրկնապատկումը վերակայելու սխալ։"
#: libraries/replication_gui.lib.php:935
msgid "Success."
@@ -10585,7 +10618,7 @@ msgstr "Հաջողում։"
#: libraries/replication_gui.lib.php:936
msgid "Error."
-msgstr ""
+msgstr "Սխալ։"
#: libraries/replication_gui.lib.php:981
msgid "Unknown error"
@@ -10594,7 +10627,7 @@ msgstr "Անհայտ սպալ"
#: libraries/replication_gui.lib.php:991
#, php-format
msgid "Unable to connect to master %s."
-msgstr ""
+msgstr "Չհաջողվեց միանալ հիմնական սպասարկչին %s։"
#: libraries/replication_gui.lib.php:1002
msgid ""
@@ -10603,12 +10636,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:1020
msgid "Unable to change master!"
-msgstr ""
+msgstr "Հնարավոր չէ փոխել հիմնական սպասարկիչը։"
#: libraries/replication_gui.lib.php:1024
#, php-format
msgid "Master server changed successfully to %s."
-msgstr ""
+msgstr "Հիմնական սպասարկիչը հաջողությամբ փոխվեց %s-ին։"
#: libraries/rte/rte_events.lib.php:111 libraries/rte/rte_events.lib.php:120
#: libraries/rte/rte_events.lib.php:151 libraries/rte/rte_routines.lib.php:316
@@ -10638,7 +10671,7 @@ msgstr "%1$s իրադարձությունը ստեղծվեց։"
#: libraries/rte/rte_events.lib.php:172 libraries/rte/rte_routines.lib.php:379
#: libraries/rte/rte_triggers.lib.php:144
msgid "One or more errors have occurred while processing your request:"
-msgstr ""
+msgstr "Ձեր հարցումը կատարելու ժամանակ առաջացել են մեկ կամ ավել սխալներ՝"
#: libraries/rte/rte_events.lib.php:231
msgid "Edit event"
@@ -10688,13 +10721,13 @@ msgstr "Վերջացնելուց պահպանել"
#: libraries/rte/rte_routines.lib.php:1063
#: libraries/rte/rte_triggers.lib.php:383 view_create.php:210
msgid "Definer"
-msgstr ""
+msgstr "Սահմանիչ"
#: libraries/rte/rte_events.lib.php:546
#: libraries/rte/rte_routines.lib.php:1130
#: libraries/rte/rte_triggers.lib.php:422
msgid "The definer must be in the \"username@hostname\" format!"
-msgstr ""
+msgstr "Սահմանիչը պետք է համապատասխանի \"օգտանուն@խնամորդի_անուն\" ձևաչափին։"
#: libraries/rte/rte_events.lib.php:553
msgid "You must provide an event name!"
@@ -10773,7 +10806,7 @@ msgstr "%1$s գործընթացը ստեղծվել է։"
#: libraries/rte/rte_routines.lib.php:451
msgid "Edit routine"
-msgstr ""
+msgstr "Խմբագրել գործընթացը"
#: libraries/rte/rte_routines.lib.php:956
msgid "Routine name"
@@ -10862,7 +10895,7 @@ msgstr[1] "Ընթացակարգի վերջին արտահայտությունո
#: libraries/rte/rte_routines.lib.php:1532
#: libraries/rte/rte_routines.lib.php:1540
msgid "Execute routine"
-msgstr ""
+msgstr "Կատարել գործընթացը"
#: libraries/rte/rte_routines.lib.php:1619
#: libraries/rte/rte_routines.lib.php:1622
@@ -10885,7 +10918,7 @@ msgstr "%1$s ձգանը ստեղծվեց։"
#: libraries/rte/rte_triggers.lib.php:206
msgid "Edit trigger"
-msgstr ""
+msgstr "Խմբագրել ձգանը"
#: libraries/rte/rte_triggers.lib.php:326
msgid "Trigger name"
@@ -11038,7 +11071,7 @@ msgstr "Սպասարկչի փոփոխականները և կայանքները"
#: libraries/server_common.lib.php:30
msgid "Storage Engines"
-msgstr ""
+msgstr "Պահպանման տեսակներ"
#: libraries/server_common.lib.php:39
msgid "Character Sets and Collations"
@@ -11053,6 +11086,8 @@ msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
msgstr ""
+"Նշում՝ տվյալների բազաների վիճակագրության գործունացումը կարող է պատճառել "
+"մեծածավալ փոխանակում՝ վեբ սպասարկչի և MySQL սպասարկչի միջև։"
#: libraries/server_databases.lib.php:365
#: libraries/server_databases.lib.php:366
@@ -11211,7 +11246,7 @@ msgstr "Անհրաժեշտ է ենթարկվող սպասարկիչներին՝
#: libraries/server_privileges.lib.php:375
#: libraries/server_privileges.lib.php:1376 server_privileges.php:96
msgid "Allows the user to ask where the slaves / masters are."
-msgstr ""
+msgstr "Թուլյատրում է հարցնել հիմնական և ենթարկվող սպասարկիչների տեղակայումը։"
#: libraries/server_privileges.lib.php:380
#: libraries/server_privileges.lib.php:396
@@ -11276,7 +11311,7 @@ msgstr "Պահանջում է SSL ծածկագրմամբ միացումը։"
#: libraries/server_privileges.lib.php:734
msgid "Require SSL"
-msgstr ""
+msgstr "Պահանջել SSL"
#: libraries/server_privileges.lib.php:759
#: libraries/server_privileges.lib.php:768
@@ -11294,7 +11329,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
@@ -11320,16 +11355,21 @@ msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
+"Սահմանափակում է օգտվողից մեկ ժամվա ընթացքում ուղարկվող աղյուսակների կամ "
+"տվյալների բազաների փոփոխման հարցումների առավելագույն քանակը։"
#: libraries/server_privileges.lib.php:917
#: libraries/server_privileges.lib.php:926 server_privileges.php:78
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
+"Սահմանափակում է օգտվողից մեկ ժամվա ընթացքում նոր միացումների բացման "
+"առավելագույն քանակը։"
#: libraries/server_privileges.lib.php:934
#: libraries/server_privileges.lib.php:944 server_privileges.php:88
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
+"Սահմանափակում է մեկ օգտվողի մասով միաժամանակ միացումների առավելագույն քանակը։"
#: libraries/server_privileges.lib.php:997
#: libraries/server_privileges.lib.php:1190
@@ -11342,7 +11382,7 @@ msgstr ""
#: libraries/server_privileges.lib.php:1200
#: libraries/server_privileges.lib.php:3219
msgid "Note: MySQL privilege names are expressed in English."
-msgstr ""
+msgstr "Նշում՝ MySQL-ի արտոնությունների անվանումները ցուցադրվում են Անգլերենով։"
#: libraries/server_privileges.lib.php:1164
msgid "Administration"
@@ -11351,7 +11391,7 @@ msgstr "Կառավարում"
#: libraries/server_privileges.lib.php:1184
#: libraries/server_privileges.lib.php:3217
msgid "Global privileges"
-msgstr ""
+msgstr "Ընդհանրական արտոնություններ"
#: libraries/server_privileges.lib.php:1185
msgid "Global"
@@ -11553,6 +11593,8 @@ msgstr ""
#: libraries/server_privileges.lib.php:3405
msgid "Drop the databases that have the same names as the users."
msgstr ""
+"Ջնջել տվյալների բազաները, որոնց անունները համընկնում են օգտվողների անունների "
+"հետ։"
#: libraries/server_privileges.lib.php:3546
msgid "No users selected for deleting!"
@@ -11629,30 +11671,36 @@ msgstr ""
#: libraries/server_status.lib.php:53
#, php-format
msgid "Network traffic since startup: %s"
-msgstr ""
+msgstr "Ցանցի փոխանակումը մեկնարկման պահից՝ %s"
#: libraries/server_status.lib.php:66
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
-msgstr ""
+msgstr "Այս MySQL սպասարկիչը աշխատում է %1$s։ Այն մեկնարկվել է %2$s։"
#: libraries/server_status.lib.php:80
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
+"Այս MySQL սպասարկիչը կրկնապատկման ընթացքում աշխատում է որպես "
+"հիմնական և ենթարկվող։"
#: libraries/server_status.lib.php:85
msgid "This MySQL server works as master in replication process."
msgstr ""
+"Այս MySQL սպասարկիչը կրկնապատկման ընթացքում աշխատում է որպես "
+"հիմնական։"
#: libraries/server_status.lib.php:90
msgid "This MySQL server works as slave in replication process."
msgstr ""
+"Այս MySQL սպասարկիչը կրկնապատկման ընթացքում աշխատում է որպես "
+"ենթարկվող։"
#: libraries/server_status.lib.php:106
msgid "Replication status"
-msgstr ""
+msgstr "Կրկնապատկման կարգավիճակ"
#: libraries/server_status.lib.php:137
msgid ""
@@ -11733,7 +11781,7 @@ msgstr "Արդյունքները խմբավորվում են ըստ հարցու
#: libraries/server_status_monitor.lib.php:93
msgid "Query analyzer"
-msgstr ""
+msgstr "Հարցման վերլուծումը"
#: libraries/server_status_monitor.lib.php:110
msgid "Monitor Instructions"
@@ -11798,7 +11846,7 @@ msgstr "Ընտրեք շարքերը՝"
#: libraries/server_status_monitor.lib.php:187
msgid "Commonly monitored"
-msgstr ""
+msgstr "Հաճախակի վերահսկվող"
#: libraries/server_status_monitor.lib.php:203
msgid "or type variable name:"
@@ -11862,6 +11910,8 @@ msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
+"Գծապատկերի դասավորությունը պահպանվում է դիտարկչի տեղային շտեմարանում։ Բարդ "
+"կազմաձևի դեպքում դուք կարող եք արտահանել այն։"
#: libraries/server_status_monitor.lib.php:326
msgid "Reset to default"
@@ -11872,6 +11922,8 @@ msgid ""
"Note: Enabling the auto refresh here might cause heavy traffic between the "
"web server and the MySQL server."
msgstr ""
+"Նշում՝ ինքնաթարմացման գործունացումը կարող է պատճառել մեծածավալ փոխանակում՝ "
+"վեբ սպասարկչի և MySQL սպասարկչի միջև։"
#: libraries/server_status_processes.lib.php:69
msgid "ID"
@@ -11894,7 +11946,7 @@ msgstr "Ցուցադրել միայն գործունը"
#: libraries/server_status_queries.lib.php:33
#, php-format
msgid "Questions since startup: %s"
-msgstr ""
+msgstr "Հարցերի քանակը մեկնարկումից հետո՝ %s"
#: libraries/server_status_queries.lib.php:44
msgid "per hour:"
@@ -11924,7 +11976,7 @@ msgstr "Պարունակում է բառը՝"
#: libraries/server_status_variables.lib.php:52
msgid "Show only alert values"
-msgstr ""
+msgstr "Ցուցադրել միայն զգուշացնող արժեքները"
#: libraries/server_status_variables.lib.php:57
msgid "Filter by category…"
@@ -12437,6 +12489,8 @@ msgstr ""
#: libraries/server_status_variables.lib.php:708
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
+"Այն հանդիսանում է ON, եթե տվյալ սպասարկիչը ենթարկվող է, որը միացրած է "
+"հիմնականին։"
#: libraries/server_status_variables.lib.php:711
msgid ""
@@ -12673,7 +12727,7 @@ msgstr "Կատարել SQL հարցում(ներ)ը %s աղյուսակին"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
-msgstr ""
+msgstr "Ստանալ ինքնապահպանված հարցումը"
#: libraries/sql_query_form.lib.php:285
msgid "Bookmark this SQL query:"
@@ -12685,7 +12739,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:313
msgid "Delimiter"
-msgstr "Սահմանիչ"
+msgstr "Բաժանիչ"
#: libraries/sql_query_form.lib.php:321
msgid "Show this query here again"
@@ -12938,7 +12992,7 @@ msgstr ""
#: libraries/structure.lib.php:2185 libraries/structure.lib.php:2256
msgid "Distinct values"
-msgstr ""
+msgstr "Հատուկ արժեքները"
#: libraries/structure.lib.php:2194 libraries/structure.lib.php:2197
msgid "Add index"
@@ -13084,11 +13138,11 @@ msgstr "Գծապատկերի վերնագիր"
#: libraries/tbl_columns_definition_form.lib.php:73
msgid "Collation:"
-msgstr "Համադասում՝"
+msgstr "Համադրում՝"
#: libraries/tbl_columns_definition_form.lib.php:76
msgid "Storage Engine:"
-msgstr ""
+msgstr "Պահպանման տեսակը՝"
#: libraries/tbl_columns_definition_form.lib.php:81
msgid "Connection:"
@@ -13122,7 +13176,7 @@ msgstr "Տեղափոխել սյունակը"
#: libraries/tbl_columns_definition_form.lib.php:363
msgid "List of available transformations and their options"
-msgstr ""
+msgstr "Առկա ձևափոխումների և դրանց կայանքների ցանկը"
#: libraries/tbl_columns_definition_form.lib.php:368
msgid ""
@@ -13135,20 +13189,20 @@ msgstr ""
#: libraries/tbl_columns_definition_form.lib.php:376
#: transformation_overview.php:41
msgid "Browser display transformation"
-msgstr ""
+msgstr "Դիտարկչի ցուցադրման ձևափոխումը"
#: libraries/tbl_columns_definition_form.lib.php:378
msgid "Browser display transformation options"
-msgstr ""
+msgstr "Դիտարկչի ցուցադրման ձևափոխման կայանքներ"
#: libraries/tbl_columns_definition_form.lib.php:381
#: transformation_overview.php:42
msgid "Input transformation"
-msgstr ""
+msgstr "Ներածման ձևափոխումը"
#: libraries/tbl_columns_definition_form.lib.php:383
msgid "Input transformation options"
-msgstr ""
+msgstr "Ներածման ձևափոխման կայանքներ"
#: libraries/tbl_columns_definition_form.lib.php:624
#, php-format
@@ -13161,7 +13215,7 @@ msgstr "Սա՝ արտաքին բանալի է։"
#: libraries/tbl_columns_definition_form.lib.php:659
msgid "Pick from Central Columns"
-msgstr ""
+msgstr "Ընտրել կենտրոնական սյունակներից"
#: libraries/tbl_columns_definition_form.lib.php:845
msgid "first"
@@ -13243,7 +13297,7 @@ msgstr "Մեկնաբանություն՝"
#: libraries/tbl_indexes.lib.php:393 libraries/tbl_indexes.lib.php:430
msgid "Drag to reorder"
-msgstr ""
+msgstr "Քաշեք՝ վերադասակարգելու համար"
#: libraries/tbl_printview.lib.php:30
msgid "Showing tables:"
@@ -13360,7 +13414,7 @@ msgstr "Գործունացնել"
#: libraries/tracking.lib.php:207
#, php-format
msgid "Deactivate tracking for %s"
-msgstr ""
+msgstr "Անջատել հետագծումը %s-ի համար"
#: libraries/tracking.lib.php:209
msgid "Deactivate now"
@@ -13478,7 +13532,7 @@ msgstr ""
#: libraries/user_preferences.inc.php:29
msgid "Manage your settings"
-msgstr "Կառավարել ձեր կայանքները"
+msgstr "Անձնական կայանքներ"
#: libraries/user_preferences.inc.php:46 prefs_manage.php:305
msgid "Configuration has been saved."
@@ -13490,6 +13544,9 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
+"Ձեր կայանքները պահպանվելու են միայն ընթացիկ ժամանակաշրջանի համար։ Դրանց "
+"մշտական պահպանման համար անհրաժեշտ է %sphpMyAdmin-ի կազմաձևի պահպանման "
+"ընդլայնումը%s։"
#: libraries/user_preferences.lib.php:130
msgid "Could not save configuration"
@@ -13544,7 +13601,7 @@ msgstr "Ներմուծում դիտարկչի պահեստից"
#: prefs_manage.php:255
msgid "Settings will be imported from your browser's local storage."
-msgstr ""
+msgstr "Կայանքները ներմուծվելու են ձեր դիտարկչի տեղային շտեմարանից։"
#: prefs_manage.php:261
msgid "You have no saved settings!"
@@ -13564,14 +13621,16 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
+"Դուք կարող եք կարգավորել հավելյալ կայանքներ՝ config.inc.php ֆայլի խմբագրման "
+"միջոցով, օրինակ, օգտագործելով %sՏեղակայման սցենարը%s։"
#: prefs_manage.php:321
msgid "Save to browser's storage"
-msgstr ""
+msgstr "Պահպանել դիտարկչի տեղային շտեմարանում"
#: prefs_manage.php:328
msgid "Settings will be saved in your browser's local storage."
-msgstr ""
+msgstr "Կայանքները պահպանվելու են ձեր դիտարկչի տեղային շտեմարանում։"
#: prefs_manage.php:336
msgid "Existing settings will be overwritten!"
@@ -13771,7 +13830,7 @@ msgstr "Ցուցադրելու տվյալներ չկան"
#: tbl_chart.php:61 tbl_gis_visualization.php:24
msgid "No SQL query was set to fetch data."
-msgstr ""
+msgstr "Տվյալներ ստանալու համար որևէ SQL հարցում չի տրվել։"
#: tbl_chart.php:119
msgid "No numeric columns present in the table to plot."
@@ -13847,11 +13906,11 @@ msgstr "Առկա MIME-տեսակներ"
#: transformation_overview.php:37
msgid "Available browser display transformations"
-msgstr "Առկա դիտարկչի ցուցադրման կերպարանափոխումներ"
+msgstr "Դիտարկչի ցուցադրման առկա ձևափոխումները"
#: transformation_overview.php:38
msgid "Available input transformations"
-msgstr ""
+msgstr "Ներածման առկա ձևափոխումները"
#: transformation_overview.php:53
msgctxt "for MIME transformation"
@@ -13929,7 +13988,7 @@ msgstr "Հարցումների ընթացիկ քանակը՝ %s"
#: libraries/advisory_rules.txt:63
msgid "Percentage of slow queries"
-msgstr ""
+msgstr "Դանդաղ հարցումների տոկոսային հարաբերությունը"
#: libraries/advisory_rules.txt:66
msgid ""
@@ -14730,7 +14789,7 @@ msgstr "slow_launch_time նշված է %s"
#: libraries/advisory_rules.txt:392
msgid "Percentage of used connections"
-msgstr ""
+msgstr "Օգտագործված միացումների տոկոսային հարաբերությունը"
#: libraries/advisory_rules.txt:395
msgid ""
@@ -14753,7 +14812,7 @@ msgstr ""
#: libraries/advisory_rules.txt:399
msgid "Percentage of aborted connections"
-msgstr ""
+msgstr "Ընդհանտված միացումների տոկոսային հարաբերությունը"
#: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409
msgid "Too many connections are aborted."
@@ -14783,7 +14842,7 @@ msgstr ""
#: libraries/advisory_rules.txt:413
msgid "Percentage of aborted clients"
-msgstr ""
+msgstr "Ընդհատված սպասառուների տոկոսային հարաբերությունը"
#: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423
msgid "Too many clients are aborted."
@@ -14803,7 +14862,7 @@ msgstr ""
#: libraries/advisory_rules.txt:420
msgid "Rate of aborted clients"
-msgstr ""
+msgstr "Ընդհատված սպասառուների հարաբերությունը"
#: libraries/advisory_rules.txt:425
#, php-format
@@ -14820,7 +14879,7 @@ msgstr ""
#: libraries/advisory_rules.txt:433
msgid "InnoDB is usually the better choice for table engines."
-msgstr ""
+msgstr "Սովորաբար, նախընտրելի է աղյուսակների պահպանման InnoDB տեսակը։"
#: libraries/advisory_rules.txt:434
msgid "have_innodb is set to 'value'"
diff --git a/po/ia.po b/po/ia.po
index 13e589ba6d..836bc979b1 100644
--- a/po/ia.po
+++ b/po/ia.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-08-09 00:05+0200\n"
+"PO-Revision-Date: 2015-08-31 17:13+0200\n"
"Last-Translator: Giovanni Sora \n"
"Language-Team: Interlingua "
"\n"
@@ -3358,7 +3358,7 @@ msgstr "Well Known Text (Texto ben cognoscite)"
#: libraries/DisplayResults.class.php:1665
msgid "Well Known Binary"
-msgstr "Well Known Binary"
+msgstr "Well Known Binary (binari ben cognoscite)"
#: libraries/DisplayResults.class.php:3362
#: libraries/DisplayResults.class.php:3378
@@ -11814,7 +11814,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
@@ -13460,7 +13460,7 @@ msgstr "Valores distincte"
#: libraries/structure.lib.php:2194 libraries/structure.lib.php:2197
msgid "Add index"
-msgstr ""
+msgstr "Adde indice"
#: libraries/structure.lib.php:2200 libraries/structure.lib.php:2203
msgid "Add unique index"
diff --git a/po/id.po b/po/id.po
index 4c1235d120..d41108d6a0 100644
--- a/po/id.po
+++ b/po/id.po
@@ -12386,7 +12386,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/it.po b/po/it.po
index b3923fbecd..b412df4e46 100644
--- a/po/it.po
+++ b/po/it.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-08-08 22:17+0200\n"
+"PO-Revision-Date: 2015-08-25 18:59+0200\n"
"Last-Translator: Stefano Martinelli \n"
"Language-Team: Italian "
"\n"
@@ -873,10 +873,12 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
-"Il parametro [a@http://php.net/manual/en/session.configuration.php#ini."
-"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] di PHP é inferiore "
-"alla validitá del cookie configurata in phpMyAdmin; per questo motivo, il "
-"login potrebbe scadere prima di quanto configurato in phpMyAdmin."
+"Il parametro "
+"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-"
+"maxlifetime@_blank]session.gc_maxlifetime[/a] di PHP (configurato in php.ini)"
+" ha un valore inferiore al periodo di validitá del cookie di sessione "
+"configurato da phpMyAdmin; per questo motivo, questa sessione potrebbe "
+"scadere prima del periodo impostato in phpMyAdmin."
#: index.php:508
msgid ""
@@ -5216,9 +5218,10 @@ msgid ""
"%sLogin cookie validity%s greater than %ssession.gc_maxlifetime%s may cause "
"random session invalidation (currently session.gc_maxlifetime is %d)."
msgstr ""
-"%sLa validitá dei cookie%s maggiore di %ssession.gc_maxlifetime%s secondi "
-"potrebbe causare l'invalidazione casuale delle sessioni (attualmente session."
-"gc_maxlifetime è impostato a %d)."
+"%sUn periodo di validità del cookie di sessione%s maggiore di "
+"%ssession.gc_maxlifetime%s secondi potrebbe causare una scadenza anticipata ("
+"in modo casuale) della sessione di phpMyAdmin (attualmente "
+"session.gc_maxlifetime è impostato a %d secondi)."
#: libraries/config/ServerConfigChecks.class.php:413
#, php-format
@@ -11961,7 +11964,7 @@ msgstr ""
"soggetto."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Richiede un certificato X509 valido."
#: libraries/server_privileges.lib.php:867
diff --git a/po/ja.po b/po/ja.po
index ac3dcb53b2..13eb687bd7 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -12720,7 +12720,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ka.po b/po/ka.po
index 01fce9aa09..d8f9b32de2 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -12694,7 +12694,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/kk.po b/po/kk.po
index 19577f0af3..b3d42f715c 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -11530,7 +11530,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/km.po b/po/km.po
index ee6de49383..c79857abce 100644
--- a/po/km.po
+++ b/po/km.po
@@ -11193,7 +11193,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/kn.po b/po/kn.po
index 82e6547cf6..aaabd6ec78 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -11063,7 +11063,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ko.po b/po/ko.po
index 51d01252a4..b4471b3037 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-22 08:21+0200\n"
-"Last-Translator: Koo Youngmin \n"
-"Language-Team: Korean \n"
+"PO-Revision-Date: 2015-09-07 03:23+0200\n"
+"Last-Translator: Seongki Shin \n"
+"Language-Team: Korean "
+"\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +26,7 @@ msgstr ""
#: db_central_columns.php:89
msgid "The central list of columns for the current database is empty."
-msgstr "현재 데이터베이스의 컬럼의 중앙목록이 비어있습니다."
+msgstr "현재 데이터베이스 컬럼의 중앙 목록이 비어 있습니다."
#: db_central_columns.php:113
msgid "Click to sort."
@@ -336,7 +336,7 @@ msgstr "추적자료의 삭제가 완료되었습니다."
#, php-format
msgid ""
"Version %1$s was created for selected tables, tracking is active for them."
-msgstr ""
+msgstr "버전 %1$s 는 선택된 테이블들로 만들어졌고, 추적기능은 활성화되어 있습니다."
#: db_tracking.php:79
msgid "No tables selected."
@@ -822,10 +822,8 @@ msgid ""
"default, is open to intrusion, and you really should fix this security hole "
"by setting a password for user 'root'."
msgstr ""
-"비밀번호 없이 MySQL의 최고 권한을 가지고 있는 root 유저로 로그인했습니다. "
-"MySQL 서버는 외부의 해킹에 대해 취약한 기본 설정으로 돌아가고 있으며, 설정에"
-"서 root 유저의 비밀번호를 설정하는 것으로 이 취약점을 최대한 빨리 고쳐야 합니"
-"다."
+"당신은 'root' 유저에 비밀번호가 없는 상태로 로그인하여 있습니다. 이같은 기본설정상태로 MySQL 서버가 작동한다면 누구나 침입할 "
+"수 있으므로, 'root'유저에 암호를 설정하여 이 보안 취약점을 수정하시기 바랍니다."
#: index.php:464
msgid ""
@@ -893,7 +891,7 @@ msgstr ""
#: index.php:549
msgid ""
"Or alternately go to 'Operations' tab of any database to set it up there."
-msgstr ""
+msgstr "대신 데이터베이스 작업 탭을 사용하여 설정할 수도 있습니다."
#: index.php:597
#, php-format
@@ -947,22 +945,19 @@ msgid "Delete tracking data for these tables?"
msgstr "이 테이블들에 대한 추적 데이터를 제거하시겠습니까?"
#: js/messages.php:49
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this version?"
-msgstr "이 테이블에 대한 추적 데이터를 제거"
+msgstr "이 버전에 대한 추적 데이터를 제거하시겠습니까?"
#: js/messages.php:50
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these versions?"
-msgstr "이 테이블에 대한 추적 데이터를 제거"
+msgstr "이 버전에 대한 추적 데이터를 제거하시겠습니까?"
#: js/messages.php:51
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete entry from tracking report?"
-msgstr "이 테이블에 대한 추적 데이터를 제거"
+msgstr "추적 보고서에서 이 항목을 제거하시겠습니까?"
#: js/messages.php:52
msgid "Deleting tracking data"
@@ -1000,10 +995,9 @@ msgid "Do you really want to revoke the selected user(s) ?"
msgstr "선택한 사용자를 정말로 삭제하시겠습니까?"
#: js/messages.php:60
-#, fuzzy
#| msgid "Do you really want to delete this bookmark?"
msgid "Do you really want to delete this central column?"
-msgstr "정말 이 북마크를 삭제하겠습니까?"
+msgstr "이 중심 컬럼을 정말로 삭제하시겠습니까?"
#: js/messages.php:63
msgid "Save & Close"
@@ -1321,11 +1315,11 @@ msgstr "모니터링 정지"
#: js/messages.php:161 libraries/server_status_processes.lib.php:37
msgid "Start auto refresh"
-msgstr "자동 새로 고침 시작"
+msgstr "자동 새로고침 시작"
#: js/messages.php:162
msgid "Stop auto refresh"
-msgstr "자동 새로 고침 멈춤"
+msgstr "자동 새로고침 중지"
#: js/messages.php:164
msgid "general_log and slow_query_log are enabled."
@@ -2199,7 +2193,6 @@ msgid "Click to sort results by this column."
msgstr "이 열의 값에 따라 결과를 정렬하려면 누르세요."
#: js/messages.php:446
-#, fuzzy
#| msgid ""
#| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC."
#| " - Control+Click to remove column from ORDER BY clause"
@@ -2208,8 +2201,8 @@ msgid ""
">- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
"ORDER BY clause"
msgstr ""
-"Shift+Click 으로 ORDER BY 절에 이 컬럼을 추가하거나 내림차순/오름차순 토글"
-" - Control+Click 으로 ORDER BY 절로부터 이 컬럼 제거"
+"Shift+Click 으로 ORDER BY 절에 이 컬럼을 추가하거나 내림차순/오름차순 토글 - Ctrl+Click 또는 Alt+"
+"Click (맥: Shift+Option+Click) 으로 ORDER BY 절로부터 이 컬럼 제거"
#: js/messages.php:447
msgid "Click to mark/unmark."
@@ -2284,7 +2277,7 @@ msgstr "값을 클릭하여 바로 수정할 수 있습니다. (일부 제
#: js/messages.php:477
msgid "Go to link:"
-msgstr "링크로 이동합니다:"
+msgstr "다음 링크로 이동:"
#: js/messages.php:478
msgid "Copy column name."
@@ -2325,16 +2318,14 @@ msgstr "숨겨진 탐색 트리의 항목보기."
#: js/messages.php:493 libraries/config/messages.inc.php:431
#: libraries/navigation/NavigationTree.class.php:1335
-#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
-msgstr "매인 패널 사용자화"
+msgstr "매인 패널에 링크"
#: js/messages.php:494 libraries/navigation/NavigationTree.class.php:1338
-#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
-msgstr "매인 패널 사용자화"
+msgstr "매인 패널에서 링크 해제"
#: js/messages.php:495
msgid "To filter all databases on server, press Enter after a search term"
@@ -2358,7 +2349,6 @@ msgid "procedures"
msgstr "프로시저"
#: js/messages.php:500
-#, fuzzy
#| msgid "event"
msgid "events"
msgstr "이벤트"
@@ -4515,11 +4505,10 @@ msgid "Create PHP Code"
msgstr "PHP 코드 보기"
#: libraries/Util.class.php:1274
-#, fuzzy
#| msgid "Edit index"
msgctxt "Inline edit query"
msgid "Edit inline"
-msgstr "인덱스 편집"
+msgstr "인라인 편집"
#. l10n: Short week day name
#: libraries/Util.class.php:1579
@@ -4712,10 +4701,9 @@ msgid "Length/Values"
msgstr "길이/값*"
#: libraries/central_columns.lib.php:660
-#, fuzzy
#| msgid "Attributes"
msgid "Attribute"
-msgstr "보기"
+msgstr "속성"
#: libraries/central_columns.lib.php:664
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:974
@@ -4867,10 +4855,9 @@ msgid "key"
msgstr ""
#: libraries/config.values.php:99
-#, fuzzy
#| msgid "Display columns table"
msgid "display column"
-msgstr "열 목록 표시"
+msgstr "열 표시"
#: libraries/config.values.php:122
msgid "Open"
@@ -5246,10 +5233,9 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:25
-#, fuzzy
#| msgid "Cannot log in to the MySQL server"
msgid "Restrict login to MySQL server"
-msgstr "MySQL 서버에 로그인할 수 없습니다"
+msgstr "MySQL 서버로의 로그인 제한"
#: libraries/config/messages.inc.php:27
msgid ""
@@ -5402,7 +5388,7 @@ msgstr "DROP 쿼리 확인"
#: libraries/config/messages.inc.php:86
msgid "Debug SQL"
-msgstr "SQl 디버그"
+msgstr "SQL 디버그"
#: libraries/config/messages.inc.php:88
msgid "Tab that is displayed when entering a database."
@@ -5836,7 +5822,6 @@ msgid "Page titles"
msgstr "페이지 제목"
#: libraries/config/messages.inc.php:251
-#, fuzzy
#| msgid ""
#| "Specify browser's title bar text. Refer to "
#| "[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be "
@@ -5845,8 +5830,8 @@ msgid ""
"Specify browser's title bar text. Refer to [doc@faq6-27]documentation[/doc] "
"for magic strings that can be used to get special values."
msgstr ""
-"브라우저의 타이틀바 텍스트를 지정합니다. 특수한 값을 얻기 위해 사용가능한 매"
-"직 문자열들에 대한 내용은 [doc@cfg_TitleTable]문서[/doc]를 참조하십시오."
+"브라우저의 타이틀바 텍스트를 지정합니다. 특수한 값을 얻기 위해 사용가능한 매직 문자열들에 대한 내용은 "
+"[doc@faq6-27]문서[/doc]를 참조하십시오."
#: libraries/config/messages.inc.php:255
msgid "Query window"
@@ -6274,10 +6259,9 @@ msgid "In the navigation panel, replaces the database tree with a selector"
msgstr ""
#: libraries/config/messages.inc.php:428
-#, fuzzy
#| msgid "Show hidden navigation tree items."
msgid "Show databases navigation as tree"
-msgstr "숨겨진 탐색 트리의 항목보기."
+msgstr "데이터베이스 내비게이션을 트리로 보기"
#: libraries/config/messages.inc.php:430
msgid "Link with main panel by highlighting the current database or table."
@@ -6324,10 +6308,9 @@ msgid "Target for quick access icon"
msgstr "빠른 접근 아이콘 대상"
#: libraries/config/messages.inc.php:447
-#, fuzzy
#| msgid "Target for quick access icon"
msgid "Target for second quick access icon"
-msgstr "빠른 접근 아이콘 대상"
+msgstr "두 번째 빠른 접근 아이콘 대상"
#: libraries/config/messages.inc.php:450
msgid ""
@@ -6345,14 +6328,13 @@ msgid "Minimum number of databases to display the database filter box"
msgstr "데이터베이스 필터 박스에 표시할 최소 데이터베이스 수"
#: libraries/config/messages.inc.php:458
-#, fuzzy
#| msgid ""
#| "Group items in the navigation tree (determined by the separator defined "
#| "below)."
msgid ""
"Group items in the navigation tree (determined by the separator defined in "
"the Databases and Tables tabs above)."
-msgstr "네비게이션 트리의 그룹 아이템 (아래 정의된 구분자로 구분)."
+msgstr "내비게이션 트리의 그룹 아이템 (위쪽 '데이터베이스와 테이블' 탭에서 정의한 구분자로 구분)."
#: libraries/config/messages.inc.php:460
msgid "Group items in the tree"
@@ -10585,9 +10567,8 @@ msgid "Master replication"
msgstr "마스터 리플리케이션"
#: libraries/replication_gui.lib.php:47
-#, fuzzy
msgid "This server is configured as master in a replication process."
-msgstr "이 서버는 이중화 환경 내의 마스터 서버로 구성되지 않았습니다."
+msgstr "이 서버는 이중화 환경을 위한 마스터 서버로 구성되었습니다."
#: libraries/replication_gui.lib.php:55
msgid "Show connected slaves"
@@ -10598,10 +10579,9 @@ msgid "Add slave replication user"
msgstr "슬레이브 리플리케이션 사용자 추가"
#: libraries/replication_gui.lib.php:88
-#, fuzzy
#| msgid "Import monitor configuration"
msgid "Master configuration"
-msgstr "모니터 설정 가져오기"
+msgstr "마스터 환경 구성"
#: libraries/replication_gui.lib.php:90
msgid ""
@@ -11625,7 +11605,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ksh.po b/po/ksh.po
index eaf595407a..f7f5e006c0 100644
--- a/po/ksh.po
+++ b/po/ksh.po
@@ -11103,7 +11103,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ky.po b/po/ky.po
index 99ff0487cb..7d43ab5246 100644
--- a/po/ky.po
+++ b/po/ky.po
@@ -11143,7 +11143,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/li.po b/po/li.po
index 565d87e059..e7e2e87dee 100644
--- a/po/li.po
+++ b/po/li.po
@@ -11054,7 +11054,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/lt.po b/po/lt.po
index 26b7bcf90c..40fcd042c7 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -12705,7 +12705,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/lv.po b/po/lv.po
index d84a1f825d..b1436f9ff6 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -12192,7 +12192,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/mk.po b/po/mk.po
index 88c63d475b..c760672b52 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -12382,7 +12382,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ml.po b/po/ml.po
index 44f89c00b3..fb33550a69 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -11259,7 +11259,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/mn.po b/po/mn.po
index d41a4d0e57..67e8fbd505 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -12439,7 +12439,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ms.po b/po/ms.po
index 14b40ca538..238a3d1e2d 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -2,18 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2014-11-05 10:35+0200\n"
+"PO-Revision-Date: 2015-09-17 15:33+0200\n"
"Last-Translator: Michal Čihař \n"
-"Language-Team: Malay \n"
+"Language-Team: Malay "
+"\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 2.0-dev\n"
+"X-Generator: Weblate 2.4-dev\n"
#: changelog.php:36 license.php:28
#, php-format
@@ -26,22 +26,22 @@ msgstr ""
#: db_central_columns.php:89
msgid "The central list of columns for the current database is empty."
-msgstr ""
+msgstr "Senarai utama lajur untuk pangkalan data semasa adalah kosong."
#: db_central_columns.php:113
msgid "Click to sort."
-msgstr ""
+msgstr "Klik untuk susun"
#: db_central_columns.php:129
-#, fuzzy, php-format
+#, php-format
#| msgid "Showing rows"
msgid "Showing rows %1$s - %2$s."
-msgstr "Papar baris"
+msgstr "Papar baris %1$s - %2$s."
#: db_create.php:61
#, php-format
msgid "Database %1$s has been created."
-msgstr "Pengkalan data %1$s telah dijana."
+msgstr "Pangkalan data %1$s telah dijana."
#: db_datadict.php:48 libraries/operations.lib.php:32
msgid "Database comment:"
@@ -51,10 +51,9 @@ msgstr "Komen pangkalan data:"
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:943
#: libraries/tbl_columns_definition_form.lib.php:71
#: libraries/tbl_printview.lib.php:581
-#, fuzzy
#| msgid "Table comments"
msgid "Table comments:"
-msgstr "Komen jadual"
+msgstr "Jadual Komen:"
#: db_datadict.php:103 libraries/Index.class.php:651
#: libraries/TableSearch.class.php:185 libraries/TableSearch.class.php:1292
@@ -75,9 +74,8 @@ msgstr "Komen jadual"
#: libraries/tbl_relation.lib.php:373 libraries/tbl_relation.lib.php:609
#: libraries/tbl_relation.lib.php:619 libraries/tracking.lib.php:877
#: libraries/tracking.lib.php:966
-#, fuzzy
msgid "Column"
-msgstr "Pangkalan data %1$s telah dijana."
+msgstr "Lajur"
#: db_datadict.php:104 db_printview.php:50 libraries/Index.class.php:648
#: libraries/TableSearch.class.php:186 libraries/central_columns.lib.php:654
@@ -248,27 +246,27 @@ msgid "The database name is empty!"
msgstr "Tiada nama pangkalan data!"
#: db_operations.php:132
-#, fuzzy, php-format
+#, php-format
#| msgid "Database %1$s has been renamed to %2$s."
msgid "Database %1$s has been renamed to %2$s."
-msgstr "Pangkalan data %1$s telah ditukarnama ke %2$s"
+msgstr "Pangkalan data %1$s telah ditukarnama ke %2$s."
#: db_operations.php:138
-#, fuzzy, php-format
+#, php-format
#| msgid "Database %1$s has been copied to %2$s."
msgid "Database %1$s has been copied to %2$s."
-msgstr "Pengkalan data %1$s telah disalin ke %2$s"
+msgstr "Pangkalan data %1$s telah di salin ke %2$s."
#: db_operations.php:259
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
#| "why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage has been deactivated. %sFind out why%s."
msgstr ""
-"Kunfigurasi simpanan phpMyAdmin telah dinyahaktifkan. Untuk mengetahuinya "
-"klik %shere%s."
+"Konfigurasi simpanan phpMyAdmin telah dinyah-aktifkan. Untuk mengetahuinya "
+"klik %sKenal pasti Kenapa%s."
#: db_printview.php:48 db_tracking.php:125 db_tracking.php:287
#: libraries/Menu.class.php:241 libraries/config/messages.inc.php:784
@@ -328,10 +326,9 @@ msgid_plural "%s tables"
msgstr[0] "%s jadual"
#: db_qbe.php:103
-#, fuzzy
#| msgid "You have to choose at least one column to display"
msgid "You have to choose at least one column to display!"
-msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar"
+msgstr "Anda mesti pilih sekurang-kurangnya satu lajur untuk dipapar!"
#: db_qbe.php:120
#, php-format
@@ -346,22 +343,22 @@ msgid "Access denied!"
msgstr "Akses dinafikan!"
#: db_tracking.php:39 db_tracking.php:64
-#, fuzzy
#| msgid "Chart generated successfully."
msgid "Tracking data deleted successfully."
-msgstr "Bebenang %s telah berjaya dimatikan."
+msgstr "Penjejak data telah berjaya dihapuskan."
#: db_tracking.php:48
#, php-format
msgid ""
"Version %1$s was created for selected tables, tracking is active for them."
msgstr ""
+"Versi %1$s telah dicipta untuk jadual-jadual terpilih, penjejak telah "
+"diaktifkan."
#: db_tracking.php:79
-#, fuzzy
#| msgid "With selected:"
msgid "No tables selected."
-msgstr "Dengan pilihan:"
+msgstr "Tiada jadual dipilih."
#: db_tracking.php:114
#, fuzzy
@@ -12072,7 +12069,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
@@ -16743,10 +16740,6 @@ msgstr ""
#~ msgid "None"
#~ msgstr "Tiada"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Tiada"
-
#~ msgid "The %s table doesn"
#~ msgstr "Jadual \"%s\" tidak wujud!"
diff --git a/po/nb.po b/po/nb.po
index afc631f70a..3964c8ed0b 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-06-22 03:54+0200\n"
-"Last-Translator: Sebastian \n"
-"Language-Team: Norwegian Bokmål \n"
+"PO-Revision-Date: 2015-08-26 14:34+0200\n"
+"Last-Translator: Michal Čihař \n"
+"Language-Team: Norwegian Bokmål "
+"\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -695,7 +695,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "Kan ikke laste importprogresjon."
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -12570,7 +12570,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ne.po b/po/ne.po
index 71bf931f79..cd67ac5626 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -11086,7 +11086,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/nl.po b/po/nl.po
index ff5e93332e..f82a6fcc43 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -11935,7 +11935,7 @@ msgstr ""
"Vereist dat een geldig X509 certificaat met dit onderwerp wordt aangeboden."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Vereist een geldig X509 certificaat."
#: libraries/server_privileges.lib.php:867
diff --git a/po/pa.po b/po/pa.po
index c2c97e24f6..7d570fa60b 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -11099,7 +11099,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/pl.po b/po/pl.po
index 67942fafc9..a3eee15cde 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -12265,7 +12265,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/pt.po b/po/pt.po
index 0f4ba65c48..e9d86a7d2c 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -12098,7 +12098,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/pt_BR.po b/po/pt_BR.po
index dc70819bad..05fe7974f8 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -11908,7 +11908,7 @@ msgstr ""
"Requer que um certificado X509 válido com este assunto seja apresentado."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Requer um certificado X509 válido."
#: libraries/server_privileges.lib.php:867
diff --git a/po/ro.po b/po/ro.po
index 4bd97f2bc8..a149fd0a2d 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -12572,7 +12572,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ru.po b/po/ru.po
index 31f39979f1..9b26a0ead6 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -2,18 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-25 20:45+0200\n"
-"Last-Translator: Andrey Aleksanyants \n"
-"Language-Team: Russian \n"
+"PO-Revision-Date: 2015-09-06 06:49+0200\n"
+"Last-Translator: Egorov Artyom \n"
+"Language-Team: Russian "
+"\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"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 2.4-dev\n"
#: changelog.php:36 license.php:28
@@ -694,7 +694,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "Не удалось загрузить прогресс (ход) импорта."
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -7812,7 +7812,7 @@ msgstr "Переместить меню"
#: libraries/db_designer.lib.php:419 libraries/db_designer.lib.php:422
msgid "Pin text"
-msgstr ""
+msgstr "Прикрепить текст"
#: libraries/db_designer.lib.php:461
msgid "Hide/Show all"
@@ -10651,7 +10651,7 @@ msgstr "Ошибка: связь внешнего ключа невозможн
#: libraries/pmd_common.php:548
msgid "Error: Missing index on column(s)."
-msgstr ""
+msgstr "Ошибка: отсутствует индекс в столбце."
#: libraries/pmd_common.php:552
msgid "Error: Relational features are disabled!"
@@ -11855,7 +11855,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
@@ -13416,14 +13416,14 @@ msgid "Run SQL query/queries on database %s"
msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
-msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
+msgstr "Выполнить SQL-запрос(ы) к таблице %s"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
-msgstr ""
+msgstr "Получить автосохранённый запрос"
#: libraries/sql_query_form.lib.php:285
msgid "Bookmark this SQL query:"
@@ -13756,7 +13756,6 @@ msgid "Showing create queries"
msgstr "Показываются запросы создания"
#: libraries/structure.lib.php:3289
-#, fuzzy
#| msgid "Relation view"
msgid "Relation view"
msgstr "Связи"
@@ -14004,7 +14003,7 @@ msgstr "Выбор индекса:"
#: libraries/tbl_indexes.lib.php:321
msgid "Key block size:"
-msgstr ""
+msgstr "Размер блока ключа:"
#: libraries/tbl_indexes.lib.php:334
msgid "Index type:"
@@ -14615,10 +14614,9 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr "Строка: %1$s, Столбец: %2$s, Ошибка: %3$s"
#: tbl_row_action.php:65
-#, fuzzy
#| msgid "No versions selected."
msgid "No row selected."
-msgstr "Версии не выбраны."
+msgstr "Строка не выбрана."
#: tbl_structure.php:63
#, php-format
diff --git a/po/si.po b/po/si.po
index 4b8835f6f1..35278dce7d 100644
--- a/po/si.po
+++ b/po/si.po
@@ -12099,7 +12099,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/sk.po b/po/sk.po
index 7d5a7e01dc..9783a6f3c8 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-26 08:27+0200\n"
+"PO-Revision-Date: 2015-09-13 09:51+0200\n"
"Last-Translator: Martin Lacina \n"
-"Language-Team: Slovak \n"
+"Language-Team: Slovak "
+"\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -11590,7 +11590,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Vyžaduje platný X509 certifikát."
#: libraries/server_privileges.lib.php:867
@@ -13093,10 +13093,10 @@ msgid "Run SQL query/queries on database %s"
msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
-msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
+msgstr "Spustiť SQL dopyt/dopyty na tabuľke %s"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
@@ -14259,10 +14259,9 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr ""
#: tbl_row_action.php:65
-#, fuzzy
#| msgid "No versions selected."
msgid "No row selected."
-msgstr "Nie je vybraná verzia."
+msgstr "Nie je vybraný žiadny riadok."
#: tbl_structure.php:63
#, php-format
diff --git a/po/sl.po b/po/sl.po
index e9df65fb8f..55b9a69e5d 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -11829,7 +11829,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr "Zahteva prisotnost veljavnega certifikata X509 s to zadevo."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Zahteva veljaven certifikat X509."
#: libraries/server_privileges.lib.php:867
diff --git a/po/sq.po b/po/sq.po
index abb6ba3194..55bb44db47 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-06-29 00:58+0200\n"
+"PO-Revision-Date: 2015-09-05 16:09+0200\n"
"Last-Translator: Arben Çokaj \n"
-"Language-Team: Albanian \n"
+"Language-Team: Albanian "
+"\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -702,7 +702,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "Nuk mund të ngarkojë progresin e importit."
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -6194,11 +6194,11 @@ msgstr "Mos aborto në INSERT gabim"
#: libraries/config/messages.inc.php:337 libraries/config/messages.inc.php:349
msgid "Add ON DUPLICATE KEY UPDATE"
-msgstr ""
+msgstr "Shto ON DUPLICATE KEY UPDATE (në çelësin e dyfishtë aktualizo)"
#: libraries/config/messages.inc.php:338 libraries/config/messages.inc.php:350
msgid "Update data when duplicate keys found on import"
-msgstr ""
+msgstr "Aktualizo të dhënat kur dyfishon çelësat e gjetur në import"
#: libraries/config/messages.inc.php:341
msgid ""
@@ -10263,6 +10263,8 @@ msgstr "Tabela:"
msgid ""
"Update data when duplicate keys found on import (add ON DUPLICATE KEY UPDATE)"
msgstr ""
+"Aktualizo të dhëna kur çelësat e dyfishtë gjenden në import (shto ON "
+"DUPLICATE KEY UPDATE)"
#: libraries/plugins/import/ImportCsv.class.php:63
#: libraries/plugins/import/ImportOds.class.php:75
@@ -11894,7 +11896,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr "Kërkon të paraqitet një çertifikatë e vlefshme X509 me këtë temë."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Kërkon një çertifikatë të vlefshme X509."
#: libraries/server_privileges.lib.php:867
@@ -13457,10 +13459,10 @@ msgid "Run SQL query/queries on database %s"
msgstr "Ekzekuto pyetsorin/rët SQL në databazën %s"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
-msgstr "Ekzekuto pyetsorin/rët SQL në databazën %s"
+msgstr "Ekzekuto pyetsorin/rët SQL në tabelën %s"
#: libraries/sql_query_form.lib.php:241
msgid "Get auto-saved query"
@@ -14654,10 +14656,9 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr "Radhë: %1$s, Kolonë: %2$s, Gabim: %3$s"
#: tbl_row_action.php:65
-#, fuzzy
#| msgid "No versions selected."
msgid "No row selected."
-msgstr "Nuk janë zgjedhur versione."
+msgstr "Nuk është zgjedhur radha."
#: tbl_structure.php:63
#, php-format
diff --git a/po/sr.po b/po/sr.po
index b45fcddb3b..b5e8425d9f 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -12524,7 +12524,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 24a2630e90..03b4de8fd9 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -12342,7 +12342,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/sv.po b/po/sv.po
index f80719488a..d4fb8d681a 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -12064,7 +12064,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ta.po b/po/ta.po
index fc9ed2815f..1204409a26 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -11272,7 +11272,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/te.po b/po/te.po
index 8f2c82e0d3..a134183640 100644
--- a/po/te.po
+++ b/po/te.po
@@ -11930,7 +11930,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/th.po b/po/th.po
index 02ad723d1d..ad5224f31c 100644
--- a/po/th.po
+++ b/po/th.po
@@ -12151,7 +12151,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/tk.po b/po/tk.po
index 7a820ee62d..0d4d5f3aec 100644
--- a/po/tk.po
+++ b/po/tk.po
@@ -11123,7 +11123,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/tr.po b/po/tr.po
index 346f9f08be..86e966b1dd 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -11842,7 +11842,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr "Bu konu ile geçerli bir X509 sertifikası sunulmasını gerektirir."
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr "Geçerli bir X509 sertifikası gerektirir."
#: libraries/server_privileges.lib.php:867
diff --git a/po/tt.po b/po/tt.po
index e128ee5cd1..4670698601 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -12391,7 +12391,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ug.po b/po/ug.po
index 74416c450a..415ec4534a 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -12053,7 +12053,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/uk.po b/po/uk.po
index d4bd349217..66d8c67d7e 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-01-02 17:07+0200\n"
-"Last-Translator: Сергій Педько \n"
-"Language-Team: Ukrainian \n"
+"PO-Revision-Date: 2015-08-26 15:10+0200\n"
+"Last-Translator: Michal Čihař \n"
+"Language-Team: Ukrainian "
+"\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 2.2-dev\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 2.4-dev\n"
#: changelog.php:36 license.php:28
#, php-format
@@ -684,7 +684,7 @@ msgid "Import has been successfully finished, %d queries executed."
msgstr "Імпорт завершився вдало, %d запитів виконано."
#: import.php:665
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "Script timeout passed, if you want to finish import, please resubmit same "
#| "file and import will resume."
@@ -692,8 +692,8 @@ msgid ""
"Script timeout passed, if you want to finish import, please %sresubmit the "
"same file%s and import will resume."
msgstr ""
-"Досягнуто часове обмеження виконання скрипту, якщо Ви бажаєте закінчити "
-"імпорт, необхідно повторно відправити той самий файл."
+"Виконання скрипту перевищило допустимий час, якщо Ви бажаєте закінчити "
+"імпорт, необхідно %sповторно відправити той самий файл%s."
#: import.php:675
msgid ""
@@ -11871,7 +11871,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/ur.po b/po/ur.po
index 181b5f08a1..8ac0e08bf4 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -12454,7 +12454,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/uz.po b/po/uz.po
index 7063b53541..5e611e15d8 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -13352,7 +13352,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/uz@latin.po b/po/uz@latin.po
index a49c286238..c854b496d5 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -13420,7 +13420,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/vi.po b/po/vi.po
index 572bc53d63..dfdb44bb38 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -11061,7 +11061,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/vls.po b/po/vls.po
index 0baed5d1fb..05f0a7a1b6 100644
--- a/po/vls.po
+++ b/po/vls.po
@@ -11058,7 +11058,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 612d199ab9..d4aacfddda 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-26 09:31+0200\n"
-"Last-Translator: popcorner \n"
-"Language-Team: Chinese (China) \n"
+"PO-Revision-Date: 2015-09-03 04:02+0200\n"
+"Last-Translator: Vincent Lau <3092849@qq.com>\n"
+"Language-Team: Chinese (China) "
+"\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -31,10 +31,10 @@ msgid "Click to sort."
msgstr "点击以排序。"
#: db_central_columns.php:129
-#, fuzzy, php-format
+#, php-format
#| msgid "Showing row(s) %1$s - %2$s"
msgid "Showing rows %1$s - %2$s."
-msgstr "正在显示第 %1$s - %2$s 行"
+msgstr "正在显示第 %1$s - %2$s 行。"
#: db_create.php:61
#, php-format
@@ -326,10 +326,9 @@ msgid "Access denied!"
msgstr "访问被拒绝!"
#: db_tracking.php:39 db_tracking.php:64
-#, fuzzy
#| msgid "Tracking data definition successfully deleted"
msgid "Tracking data deleted successfully."
-msgstr "追踪数据定义删除成功"
+msgstr "追踪数据删除成功。"
#: db_tracking.php:48
#, php-format
@@ -665,14 +664,14 @@ msgid "Import has been successfully finished, %d queries executed."
msgstr "导入成功,执行了 %d 个查询。"
#: import.php:665
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "Script timeout passed, if you want to finish import, please resubmit same "
#| "file and import will resume."
msgid ""
"Script timeout passed, if you want to finish import, please %sresubmit the "
"same file%s and import will resume."
-msgstr "脚本超时,如果您要完成导入,请重新提交相同的文件,导入将会继续进行。"
+msgstr "脚本超时,如果您要完成导入,请%s重新提交相同的文件%s,导入将会继续进行。"
#: import.php:675
msgid ""
@@ -684,7 +683,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "无法加载导入进度。"
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -771,10 +770,9 @@ msgid "PHP extension:"
msgstr "PHP 扩展:"
#: index.php:345
-#, fuzzy
#| msgid "PHP Version"
msgid "PHP version:"
-msgstr "PHP 版本"
+msgstr "PHP 版本:"
#: index.php:356
msgid "Show PHP information"
@@ -813,7 +811,6 @@ msgid "List of changes"
msgstr "更新列表"
#: index.php:447
-#, fuzzy
#| msgid ""
#| "Your configuration file contains settings (root with no password) that "
#| "correspond to the default MySQL privileged account. Your MySQL server is "
@@ -825,9 +822,8 @@ msgid ""
"default, is open to intrusion, and you really should fix this security hole "
"by setting a password for user 'root'."
msgstr ""
-"您配置文件中的设置(空密码的 root)是 MySQL 的默认管理员帐号。您的 MySQL 服务"
-"器正在使用这个默认设置运行,这样容易被入侵,我们强烈建议您立即给‘root’用户设"
-"置一个密码来修复这个安全漏洞。"
+"您使用空密码登录了“root”账户,这是 MySQL 的默认管理员帐号。您的 MySQL "
+"服务器正在使用这个默认设置运行,这样容易被入侵,我们强烈建议您立即给“root”用户设置一个密码来修复这个安全漏洞。"
#: index.php:464
msgid ""
@@ -848,7 +844,6 @@ msgstr ""
"展的 phpMyAdmin 不能正确分割字符串并可能产生意料之外的结果。"
#: index.php:495
-#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
#| "php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower "
@@ -860,10 +855,9 @@ msgid ""
"cookie validity configured in phpMyAdmin, because of this, your login might "
"expire sooner than configured in phpMyAdmin."
msgstr ""
-"您的 PHP 参数 [a@http://php.net/manual/zh/session.configuration.php#ini."
-"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] 短于您在 phpMyAdmin "
-"中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 phpMyAdmin 中设置的"
-"时间要更短。"
+"您的 PHP 参数 [a@http://php.net/manual/zh/session.configuration.php#ini.session"
+".gc-maxlifetime@_blank]session.gc_maxlifetime[/a] 短于您在 phpMyAdmin 中设置的 "
+"Cookies 有效期,因此您的登录会话有效期可能会比您在 phpMyAdmin 中设置的时间要更短。"
#: index.php:508
msgid ""
@@ -889,20 +883,19 @@ msgstr ""
"而使服务器陷入危险。"
#: index.php:542
-#, fuzzy, php-format
+#, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage is not completely configured, some "
#| "extended features have been deactivated. To find out why click %shere%s."
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. %sFind out why%s. "
-msgstr ""
-"phpMyAdmin 高级功能尚未完全设置,部分功能未激活。请点击%s这里%s查看原因。"
+msgstr "phpMyAdmin 高级功能尚未完全设置,部分功能未激活。%s查找原因%s。 "
#: index.php:549
msgid ""
"Or alternately go to 'Operations' tab of any database to set it up there."
-msgstr ""
+msgstr "或者也可以去某个数据库的“操作”选项卡那里进行设置。"
#: index.php:597
#, php-format
@@ -946,34 +939,29 @@ msgid "You are about to TRUNCATE a complete table!"
msgstr "您将要完全清空一个表!"
#: js/messages.php:47
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this table?"
-msgstr "删除该表的追踪数据"
+msgstr "删除该表的追踪数据?"
#: js/messages.php:48
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these tables?"
-msgstr "删除该表的追踪数据"
+msgstr "删除这些表的追踪数据?"
#: js/messages.php:49
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for this version?"
-msgstr "删除该表的追踪数据"
+msgstr "删除该版本的追踪数据?"
#: js/messages.php:50
-#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete tracking data for these versions?"
-msgstr "删除该表的追踪数据"
+msgstr "删除这些版本的追踪数据?"
#: js/messages.php:51
-#, fuzzy
#| msgid "Delete tracking data row from report"
msgid "Delete entry from tracking report?"
-msgstr "从报告中删除追踪数据"
+msgstr "从追踪报告中删除条目?"
#: js/messages.php:52
msgid "Deleting tracking data"
@@ -984,10 +972,9 @@ msgid "Dropping Primary Key/Index"
msgstr "正在删除主键"
#: js/messages.php:54
-#, fuzzy
#| msgid "Select Foreign Key"
msgid "Dropping Foreign key."
-msgstr "选择外键"
+msgstr "删除外键。"
#: js/messages.php:55
msgid "This operation could take a long time. Proceed anyway?"
@@ -1008,16 +995,14 @@ msgid "You have unsaved changes; are you sure you want to leave this page?"
msgstr "您已修改了一些数据但尚未保存。您真的要放弃保存并离开吗?"
#: js/messages.php:59
-#, fuzzy
#| msgid "Do you really want to delete the search \"%s\"?"
msgid "Do you really want to revoke the selected user(s) ?"
-msgstr "您真的要删除搜索“%s”吗?"
+msgstr "您真的要删除选择的用户吗?"
#: js/messages.php:60
-#, fuzzy
#| msgid "Do you really want to delete the search \"%s\"?"
msgid "Do you really want to delete this central column?"
-msgstr "您真的要删除搜索“%s”吗?"
+msgstr "您真的要删除此中心列吗?"
#: js/messages.php:63
msgid "Save & Close"
@@ -1063,28 +1048,24 @@ msgid "Add %s column(s) to index"
msgstr "添加 %s 个字段至索引"
#: js/messages.php:75
-#, fuzzy
#| msgid "Create routine"
msgid "Create single-column index"
-msgstr "创建关系"
+msgstr "创建单列索引"
#: js/messages.php:76
-#, fuzzy
#| msgid "Create routine"
msgid "Create composite index"
-msgstr "创建关系"
+msgstr "创建复合索引"
#: js/messages.php:77
-#, fuzzy
#| msgid "Columns enclosed with:"
msgid "Composite with:"
-msgstr "内容分隔符:"
+msgstr "复合对象:"
#: js/messages.php:78
-#, fuzzy
#| msgid "Add %s column(s) to index"
msgid "Please select column(s) for the index."
-msgstr "添加 %s 个字段至索引"
+msgstr "请为索引选择列。"
#: js/messages.php:81 libraries/structure.lib.php:1686
msgid "You have to add at least one column."
@@ -1661,7 +1642,7 @@ msgstr "检验"
#: js/messages.php:258
msgid "Formatting SQL..."
-msgstr ""
+msgstr "正在格式化SQL……"
#: js/messages.php:262 libraries/db_designer.lib.php:833
#: libraries/db_designer.lib.php:882 libraries/db_designer.lib.php:1026
@@ -1835,13 +1816,12 @@ msgstr "%d 不是有效行数。"
#: js/messages.php:315 libraries/TableSearch.class.php:927
#: libraries/TableSearch.class.php:1259 libraries/sql.lib.php:243
#: tbl_change.php:153
-#, fuzzy
msgid "Browse foreign values"
msgstr "浏览不相关的值"
#: js/messages.php:316
msgid "No auto-saved query"
-msgstr ""
+msgstr "不自动保存查询"
#: js/messages.php:319 libraries/normalization.lib.php:849
msgid "Pick"
@@ -1860,7 +1840,7 @@ msgstr "在该列表中搜索"
msgid ""
"No columns in the central list. Make sure the Central columns list for "
"database %s has columns that are not present in the current table."
-msgstr ""
+msgstr "中心列表中没有列。请确保数据库 %s 的中心列表存在没有显示在当前表中的列。"
#: js/messages.php:323
msgid "See more"
@@ -1896,7 +1876,7 @@ msgstr "等待进入下一步…"
#: js/messages.php:332
#, php-format
msgid "The first step of normalization is complete for table '%s'."
-msgstr ""
+msgstr "表“%s”标准化过程的第一步已经完成。"
#: js/messages.php:333 libraries/normalization.lib.php:422
#: libraries/normalization.lib.php:469 libraries/normalization.lib.php:552
@@ -1906,7 +1886,7 @@ msgstr "完成"
#: js/messages.php:334
msgid "Second step of normalization (2NF)"
-msgstr ""
+msgstr "标准化第二步(2NF)"
#. l10n: Display text for calendar close link
#: js/messages.php:335 js/messages.php:581 libraries/normalization.lib.php:264
@@ -1915,76 +1895,72 @@ msgstr "完成"
#: js/messages.php:336
msgid "Confirm partial dependencies"
-msgstr ""
+msgstr "确认局部依赖"
#: js/messages.php:337
msgid "Selected partial dependencies are as follows:"
-msgstr ""
+msgstr "下面是已经选择的局部依赖:"
#: js/messages.php:338
msgid ""
"Note: a, b -> d,f implies values of columns a and b combined together can "
"determine values of column d and column f."
-msgstr ""
+msgstr "注意: a, b -> d,f 表示a和b两列结合起来决定d和f两列的值。"
#: js/messages.php:339
-#, fuzzy
#| msgid "No databases selected."
msgid "No partial dependencies selected!"
-msgstr "没有已选择的数据库。"
+msgstr "没有已选择的局部依赖!"
#: js/messages.php:341
msgid "Show me the possible partial dependencies based on data in the table"
-msgstr ""
+msgstr "显示基于表中数据可能的局部依赖"
#: js/messages.php:342
msgid "Hide partial dependencies list"
-msgstr ""
+msgstr "隐藏局部依赖列表"
#: js/messages.php:343
msgid ""
"Sit tight! It may take few seconds depending on data size and column count "
"of the table."
-msgstr ""
+msgstr "坐好啦!取决于数据大小和表的列数,这可能需要几秒钟。"
#: js/messages.php:344
msgid "Step"
-msgstr ""
+msgstr "步骤"
#: js/messages.php:345
-#, fuzzy
#| msgid "The following queries have been executed:"
msgid "The following actions will be performed:"
-msgstr "下列查询被执行:"
+msgstr "下列操作将被执行:"
#: js/messages.php:346
#, php-format
msgid "DROP columns %s from the table %s"
-msgstr ""
+msgstr "将列 %s 从表 %s 中删除"
#: js/messages.php:347
-#, fuzzy
#| msgid "Add privileges on the following table"
msgid "Create the following table"
-msgstr "在下列数据表添加权限"
+msgstr "创建下列表"
#: js/messages.php:350
msgid "Third step of normalization (3NF)"
-msgstr ""
+msgstr "标准化第三步(3NF)"
#: js/messages.php:351
msgid "Confirm transitive dependencies"
-msgstr ""
+msgstr "确认传递依赖"
#: js/messages.php:352
msgid "Selected dependencies are as follows:"
-msgstr ""
+msgstr "下面是已经选择的依赖:"
#: js/messages.php:353
-#, fuzzy
#| msgid "No databases selected."
msgid "No dependencies selected!"
-msgstr "没有已选择的数据库。"
+msgstr "没有已选择的依赖!"
#: js/messages.php:356 libraries/insert_edit.lib.php:1452
#: libraries/server_variables.lib.php:155
@@ -2117,7 +2093,7 @@ msgstr "加密密匙"
msgid ""
"Indicates that you have made changes to this page; you will be prompted for "
"confirmation before abandoning changes"
-msgstr ""
+msgstr "检测到您已经对页面做出了修改。因此在您放弃改动时会提示您确认"
#: js/messages.php:417
msgid "Select referenced key"
@@ -2160,10 +2136,9 @@ msgid "Delete page"
msgstr "删除页面"
#: js/messages.php:429 libraries/db_designer.lib.php:244
-#, fuzzy
#| msgid "Unit"
msgid "Untitled"
-msgstr "单位"
+msgstr "未命名"
#: js/messages.php:430
msgid "Please select a page to continue"
@@ -2223,6 +2198,8 @@ msgid ""
">- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from "
"ORDER BY clause"
msgstr ""
+"点击的同时按下 Shift 键即可将此列添加到 ORDER BY 语句中或是切换升序和降序。 使用 Ctrl+Click 或者 Alt+"
+"Click (Mac:Shift+Option+Click )即可将列从 ORDER BY 语句中移除"
#: js/messages.php:447
msgid "Click to mark/unmark."
@@ -2253,16 +2230,15 @@ msgstr ""
#: js/messages.php:454
msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F."
-msgstr ""
+msgstr "请输入一个有效的十六进制字符串。只有0-9和A-F为有效字符。"
#: js/messages.php:455
msgid ""
"Do you really want to see all of the rows? For a big table this could crash "
"the browser."
-msgstr ""
+msgstr "您真的想要查看所有的行吗?若表过大可能会导致浏览器崩溃。"
#: js/messages.php:458
-#, fuzzy
#| msgid "Cancel"
msgid "cancel"
msgstr "取消"
@@ -2273,25 +2249,22 @@ msgstr "已取消"
#: js/messages.php:461
msgid "Success"
-msgstr ""
+msgstr "成功"
#: js/messages.php:462
-#, fuzzy
#| msgid "Import defaults"
msgid "Import status"
-msgstr "导入选项"
+msgstr "导入状态"
#: js/messages.php:463 libraries/navigation/Navigation.class.php:107
-#, fuzzy
#| msgid "Log file threshold"
msgid "Drop files here"
-msgstr "日志文件阈值"
+msgstr "将文件拖动至此"
#: js/messages.php:464
-#, fuzzy
#| msgid "Select Tables"
msgid "Select database first"
-msgstr "选择表"
+msgstr "先选择数据库"
#: js/messages.php:469
msgid "You can also edit most values by double-clicking directly on them."
@@ -2343,52 +2316,45 @@ msgstr "显示隐藏的导航树节点。"
#: js/messages.php:493 libraries/config/messages.inc.php:431
#: libraries/navigation/NavigationTree.class.php:1335
-#, fuzzy
#| msgid "Customize main panel"
msgid "Link with main panel"
-msgstr "自定义主面板"
+msgstr "与主面板链接"
#: js/messages.php:494 libraries/navigation/NavigationTree.class.php:1338
-#, fuzzy
#| msgid "Customize main panel"
msgid "Unlink from main panel"
-msgstr "自定义主面板"
+msgstr "从主面板取消链接"
#: js/messages.php:495
msgid "To filter all databases on server, press Enter after a search term"
-msgstr ""
+msgstr "在搜索项目后回车即可在服务器上所有的数据库中进行过滤"
#: js/messages.php:496
#, php-format
msgid "To filter all %s in database, press Enter after a search term"
-msgstr ""
+msgstr "在搜索项目后回车以过滤在数据库中所有的 %s"
#: js/messages.php:497
-#, fuzzy
#| msgid "Tables"
msgid "tables"
msgstr "表"
#: js/messages.php:498
-#, fuzzy
#| msgid "Views"
msgid "views"
msgstr "视图"
#: js/messages.php:499
-#, fuzzy
#| msgid "Procedures"
msgid "procedures"
msgstr "存储过程"
#: js/messages.php:500
-#, fuzzy
#| msgid "event"
msgid "events"
msgstr "事件"
#: js/messages.php:501
-#, fuzzy
#| msgid "Functions"
msgid "functions"
msgstr "函数"
@@ -2457,17 +2423,16 @@ msgstr ""
#: js/messages.php:534 js/messages.php:546
msgid "Some errors have been detected on the server!"
-msgstr ""
+msgstr "在服务上检测到错误!"
#: js/messages.php:536
msgid "Please look at the bottom of this window."
-msgstr ""
+msgstr "请查看此窗口的底部。"
#: js/messages.php:541 libraries/Error_Handler.class.php:353
-#, fuzzy
#| msgid "Ignore"
msgid "Ignore All"
-msgstr "忽略"
+msgstr "忽略全部"
#: js/messages.php:548
msgid ""
@@ -12087,7 +12052,7 @@ msgid "Requires that a valid X509 certificate with this subject be presented."
msgstr ""
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
diff --git a/po/zh_TW.po b/po/zh_TW.po
index d3afaa1312..8ae6c7fac6 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -2,12 +2,12 @@
msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.4.14-dev\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
+"Report-Msgid-Bugs-To: translators@phpmyadmin.net\n"
"POT-Creation-Date: 2015-08-08 13:51-0400\n"
-"PO-Revision-Date: 2015-07-08 05:25+0200\n"
+"PO-Revision-Date: 2015-09-16 05:33+0200\n"
"Last-Translator: Chien Wei Lin \n"
-"Language-Team: Chinese (Taiwan) \n"
+"Language-Team: Chinese (Taiwan) "
+"\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -681,7 +681,7 @@ msgstr ""
#: import_status.php:103
msgid "Could not load the progress of the import."
-msgstr ""
+msgstr "無法讀取匯入的進度。"
#: import_status.php:112 js/messages.php:340 libraries/Util.class.php:735
#: libraries/export.lib.php:464
@@ -5150,7 +5150,7 @@ msgid ""
"Restricts the MySQL servers the user can enter when a login to an arbitrary "
"MySQL server is enabled by matching the IP or hostname of the MySQL server "
"to the given regular expression."
-msgstr ""
+msgstr "限制使用者登入任意 MySQL 伺服器時,該 MySQL 伺服器的 IP 或主機名稱需要符合指定的正規表示法。"
#: libraries/config/messages.inc.php:25
msgid "Restrict login to MySQL server"
@@ -5957,11 +5957,11 @@ msgstr "新增錯誤時不中斷程式"
#: libraries/config/messages.inc.php:337 libraries/config/messages.inc.php:349
msgid "Add ON DUPLICATE KEY UPDATE"
-msgstr ""
+msgstr "加入 ON DUPLICATE KEY UPDATE"
#: libraries/config/messages.inc.php:338 libraries/config/messages.inc.php:350
msgid "Update data when duplicate keys found on import"
-msgstr ""
+msgstr "匯入發現重複鍵值時更新資料"
#: libraries/config/messages.inc.php:341
msgid ""
@@ -6656,10 +6656,9 @@ msgid "Maximal number of table preferences to store"
msgstr "資料表偏好設定的儲存最大值"
#: libraries/config/messages.inc.php:620
-#, fuzzy
#| msgid "See slave status table"
msgid "QBE saved searches table"
-msgstr "使用範例查詢(QBE)已儲存的搜尋資料表"
+msgstr "使用範例查詢(QBE)已儲存搜尋的資料表"
#: libraries/config/messages.inc.php:622
msgid ""
@@ -8681,7 +8680,7 @@ msgstr "重新讀取導覽面板"
msgid ""
"There are large item groups in navigation panel which may affect the "
"performance. Consider disabling item grouping in the navigation panel."
-msgstr ""
+msgstr "導覽面板有群組含有大量項目可能會影響效能,請考慮關閉導覽面板的項目群組功能。"
#: libraries/navigation/NavigationTree.class.php:871
#, php-format
@@ -8876,6 +8875,7 @@ msgid ""
"There is no primary key; please add one. Hint: A primary key is a column "
"(or combination of columns) that uniquely identify all rows."
msgstr ""
+"目前沒有主鍵(Primary Key),請新增一個。 提示:主鍵是一個欄位 (或多個欄位組合而成),它獨一無二、可以用來辨識所有資料列。"
#: libraries/normalization.lib.php:185
msgid "Add a primary key on existing column(s)"
@@ -8958,7 +8958,7 @@ msgstr "尋找部份相依"
msgid ""
"No partial dependencies possible as no non-primary column exists since "
"primary key ( %1$s ) is composed of all the columns in the table."
-msgstr ""
+msgstr "當主鍵 ( %1$s ) 由所有資料表的欄位組成時,由於沒有非主要欄位存在,因此不會有部份相依。"
#: libraries/normalization.lib.php:318 libraries/normalization.lib.php:360
msgid "Table is already in second normal form."
@@ -8969,7 +8969,7 @@ msgstr "資料表己完成第二正規化。"
msgid ""
"The primary key ( %1$s ) consists of more than one column so we need to find "
"the partial dependencies."
-msgstr ""
+msgstr "由於主鍵 ( %1$s ) 由多個欄位組成,所以我們需要尋找部分相依。"
#: libraries/normalization.lib.php:327 libraries/normalization.lib.php:692
msgid ""
@@ -8986,7 +8986,7 @@ msgid ""
"For each column below, please select the minimal set of columns among "
"given set whose values combined together are sufficient to determine the "
"value of the column."
-msgstr ""
+msgstr "以下欄位,請選擇可足夠用來辨識欄位值的最少欄位值組合。"
#: libraries/normalization.lib.php:345 libraries/normalization.lib.php:730
#, php-format
@@ -8998,14 +8998,14 @@ msgstr "'%1$s' 相依於:"
msgid ""
"No partial dependencies possible as the primary key ( %1$s ) has just one "
"column."
-msgstr ""
+msgstr "當主鍵 ( %1$s ) 只使用一個欄位時不會有部份相依。"
#: libraries/normalization.lib.php:381
#, php-format
msgid ""
"In order to put the original table '%1$s' into Second normal form we need to "
"create the following tables:"
-msgstr ""
+msgstr "為了要將原始資料 '%1$s' 轉換至第二階正規化需要建立以下資料表:"
#: libraries/normalization.lib.php:417
#, php-format
@@ -9022,7 +9022,7 @@ msgstr "處理時發生錯誤!"
msgid ""
"In order to put the original table '%1$s' into Third normal form we need to "
"create the following tables:"
-msgstr ""
+msgstr "為了要將原始資料 '%1$s' 轉換至第三階正規化需要建立以下資料表:"
#: libraries/normalization.lib.php:548
msgid "The third step of normalization is complete."
@@ -9047,13 +9047,13 @@ msgid ""
"given set whose values combined together are sufficient to determine the "
"value of the column. Note: A column may have no transitive dependency, "
"in that case you don't have to select any."
-msgstr ""
+msgstr "以下欄位,請選擇可足夠用來辨識欄位值的最少欄位值組合。 注意:欄位可能沒有遞移相依,因此您可能不用做任何選擇。"
#: libraries/normalization.lib.php:743
msgid ""
"No Transitive dependencies possible as the table doesn't have any non "
"primary key columns"
-msgstr ""
+msgstr "當資料表沒有任何非主鍵的欄位時不會有遞移相依"
#: libraries/normalization.lib.php:747
msgid "Table is already in Third normal form!"
@@ -9085,7 +9085,7 @@ msgstr "提示:請謹心慎依照程序以完成正確的正規化"
msgid ""
"This list is based on a subset of the table's data and is not necessarily "
"accurate. "
-msgstr ""
+msgstr "此清單依據資料表資料的子集合組成,不需要準確。 "
#: libraries/normalization.lib.php:859
msgid "No partial dependencies found!"
@@ -9799,7 +9799,7 @@ msgstr "資料表:"
#: libraries/plugins/import/AbstractImportCsv.class.php:55
msgid ""
"Update data when duplicate keys found on import (add ON DUPLICATE KEY UPDATE)"
-msgstr ""
+msgstr "當匯入重複鍵值時更新資料 (加入 ON DUPLICATE KEY UPDATE)"
#: libraries/plugins/import/ImportCsv.class.php:63
#: libraries/plugins/import/ImportOds.class.php:75
@@ -10177,7 +10177,7 @@ msgstr "SQL 使用語法明顯標示的 CodeMirror 編輯器。"
#: libraries/plugins/transformations/input/Text_Plain_XmlEditor.class.php:33
msgid "Syntax highlighted CodeMirror editor for XML (and HTML)."
-msgstr ""
+msgstr "支援 XML (與 HTML) 的語法強調 CodeMirror 編輯器。"
#: libraries/plugins/transformations/output/Text_Plain_Json.class.php:44
msgid "Formats text as JSON with syntax highlighting."
@@ -10201,7 +10201,7 @@ msgstr "錯誤: FOREIGN KEY 關聯無法新增!"
#: libraries/pmd_common.php:548
msgid "Error: Missing index on column(s)."
-msgstr ""
+msgstr "錯誤:缺少欄位索引。"
#: libraries/pmd_common.php:552
msgid "Error: Relational features are disabled!"
@@ -11366,20 +11366,20 @@ msgstr "需要 SSL"
#: libraries/server_privileges.lib.php:759
#: libraries/server_privileges.lib.php:768
msgid "Requires that a specific cipher method be used for a connection."
-msgstr ""
+msgstr "需要使用指定的加密方式連線。"
#: libraries/server_privileges.lib.php:778
#: libraries/server_privileges.lib.php:787
msgid "Requires that a valid X509 certificate issued by this CA be presented."
-msgstr ""
+msgstr "需要由此 CA 發行且有效的 X509 憑証存在。"
#: libraries/server_privileges.lib.php:797
#: libraries/server_privileges.lib.php:806
msgid "Requires that a valid X509 certificate with this subject be presented."
-msgstr ""
+msgstr "需要使用此主旨且有效的 X509 憑証存在。"
#: libraries/server_privileges.lib.php:818
-msgid "Requires a valid X509 cetrificate."
+msgid "Requires a valid X509 certificate."
msgstr ""
#: libraries/server_privileges.lib.php:867
@@ -12829,7 +12829,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "在資料庫 %s 執行 SQL 查詢"
#: libraries/sql_query_form.lib.php:192
-#, fuzzy, php-format
+#, php-format
#| msgid "Run SQL query/queries on database %s"
msgid "Run SQL query/queries on table %s"
msgstr "在資料庫 %s 執行 SQL 查詢"
@@ -13989,10 +13989,9 @@ msgid "Row: %1$s, Column: %2$s, Error: %3$s"
msgstr "列:%1$s,欄:%2$s,錯誤:%3$s"
#: tbl_row_action.php:65
-#, fuzzy
#| msgid "No versions selected."
msgid "No row selected."
-msgstr "尚未選擇任何版本。"
+msgstr "尚未選擇列。"
#: tbl_structure.php:63
#, php-format
diff --git a/scripts/update-po b/scripts/update-po
index 7e8d1de077..61f7a0e806 100755
--- a/scripts/update-po
+++ b/scripts/update-po
@@ -9,7 +9,7 @@ set -e
LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'`
xgettext \
-d phpmyadmin \
- --msgid-bugs-address=phpmyadmin-devel@lists.sourceforge.net \
+ --msgid-bugs-address=translators@phpmyadmin.net \
-o po/phpmyadmin.pot \
--language=PHP \
--add-comments=l10n \
diff --git a/tbl_replace.php b/tbl_replace.php
index 874991724b..a1238ab279 100644
--- a/tbl_replace.php
+++ b/tbl_replace.php
@@ -153,7 +153,7 @@ foreach ($loop_array as $rownumber => $where_clause) {
$multi_edit_columns_name
= isset($_REQUEST['fields_name']['multi_edit'][$rownumber])
? $_REQUEST['fields_name']['multi_edit'][$rownumber]
- : null;
+ : array();
$multi_edit_columns_prev
= isset($_REQUEST['fields_prev']['multi_edit'][$rownumber])
? $_REQUEST['fields_prev']['multi_edit'][$rownumber]
diff --git a/tbl_row_action.php b/tbl_row_action.php
index ba542126fd..bc582caa22 100644
--- a/tbl_row_action.php
+++ b/tbl_row_action.php
@@ -57,8 +57,9 @@ case 'edit':
if (!empty($submit_mult)) {
- if (! isset($_REQUEST['rows_to_delete'])
- || ! is_array($_REQUEST['rows_to_delete'])
+ if (isset($_REQUEST['goto'])
+ && (! isset($_REQUEST['rows_to_delete'])
+ || ! is_array($_REQUEST['rows_to_delete']))
) {
$response = PMA_Response::getInstance();
$response->isSuccess(false);
diff --git a/test/install-runkit b/test/install-runkit
index 76663a6855..78d5deaa05 100755
--- a/test/install-runkit
+++ b/test/install-runkit
@@ -7,9 +7,10 @@ fi
set -e
-git clone --depth=1 git://github.com/zenovich/runkit.git
+git clone --depth=100 git://github.com/zenovich/runkit.git
pushd runkit
+git checkout c337393762d54cf6df305cf8e92dac3a162157f4
phpize
./configure
diff --git a/themes/original/img/sprites.png b/themes/original/img/sprites.png
index 7fb883a51a..19f8098a60 100644
Binary files a/themes/original/img/sprites.png and b/themes/original/img/sprites.png differ
diff --git a/themes/original/sprites.lib.php b/themes/original/sprites.lib.php
index c671693060..d52bada30e 100644
--- a/themes/original/sprites.lib.php
+++ b/themes/original/sprites.lib.php
@@ -220,498 +220,513 @@ function PMA_sprites()
'width' => '16',
'height' => '16'
),
- 'b_routine_add' => array(
+ 'b_report' => array(
'position' => '42',
'width' => '16',
'height' => '16'
),
- 'b_routines' => array(
+ 'b_routine_add' => array(
'position' => '43',
'width' => '16',
'height' => '16'
),
- 'b_save' => array(
+ 'b_routines' => array(
'position' => '44',
'width' => '16',
'height' => '16'
),
- 'b_saveimage' => array(
+ 'b_save' => array(
'position' => '45',
'width' => '16',
'height' => '16'
),
- 'b_sbrowse' => array(
+ 'b_saveimage' => array(
'position' => '46',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 'b_sbrowse' => array(
+ 'position' => '47',
'width' => '10',
'height' => '10'
),
'b_search' => array(
- 'position' => '47',
- 'width' => '16',
- 'height' => '16'
- ),
- 'b_selboard' => array(
'position' => '48',
'width' => '16',
'height' => '16'
),
- 'b_select' => array(
+ 'b_selboard' => array(
'position' => '49',
'width' => '16',
'height' => '16'
),
- 'b_snewtbl' => array(
+ 'b_select' => array(
'position' => '50',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 'b_snewtbl' => array(
+ 'position' => '51',
'width' => '10',
'height' => '10'
),
'b_spatial' => array(
- 'position' => '51',
- 'width' => '16',
- 'height' => '16'
- ),
- 'b_sql' => array(
'position' => '52',
'width' => '16',
'height' => '16'
),
- 'b_sqlhelp' => array(
+ 'b_sql' => array(
'position' => '53',
'width' => '16',
'height' => '16'
),
- 'b_table_add' => array(
+ 'b_sqlhelp' => array(
'position' => '54',
'width' => '16',
'height' => '16'
),
- 'b_tblanalyse' => array(
+ 'b_table_add' => array(
'position' => '55',
'width' => '16',
'height' => '16'
),
- 'b_tblexport' => array(
+ 'b_tblanalyse' => array(
'position' => '56',
'width' => '16',
'height' => '16'
),
- 'b_tblimport' => array(
+ 'b_tblexport' => array(
'position' => '57',
'width' => '16',
'height' => '16'
),
- 'b_tblops' => array(
+ 'b_tblimport' => array(
'position' => '58',
'width' => '16',
'height' => '16'
),
- 'b_tbloptimize' => array(
+ 'b_tblops' => array(
'position' => '59',
'width' => '16',
'height' => '16'
),
- 'b_tipp' => array(
+ 'b_tbloptimize' => array(
'position' => '60',
'width' => '16',
'height' => '16'
),
- 'b_trigger_add' => array(
+ 'b_tipp' => array(
'position' => '61',
'width' => '16',
'height' => '16'
),
- 'b_triggers' => array(
+ 'b_trigger_add' => array(
'position' => '62',
'width' => '16',
'height' => '16'
),
- 'b_undo' => array(
+ 'b_triggers' => array(
'position' => '63',
'width' => '16',
'height' => '16'
),
- 'b_unique' => array(
+ 'b_undo' => array(
'position' => '64',
'width' => '16',
'height' => '16'
),
- 'b_usradd' => array(
+ 'b_unique' => array(
'position' => '65',
'width' => '16',
'height' => '16'
),
- 'b_usrcheck' => array(
+ 'b_usradd' => array(
'position' => '66',
'width' => '16',
'height' => '16'
),
- 'b_usrdrop' => array(
+ 'b_usrcheck' => array(
'position' => '67',
'width' => '16',
'height' => '16'
),
- 'b_usredit' => array(
+ 'b_usrdrop' => array(
'position' => '68',
'width' => '16',
'height' => '16'
),
- 'b_usrlist' => array(
+ 'b_usredit' => array(
'position' => '69',
'width' => '16',
'height' => '16'
),
- 'b_view' => array(
+ 'b_usrlist' => array(
'position' => '70',
'width' => '16',
'height' => '16'
),
- 'b_view_add' => array(
+ 'b_versions' => array(
'position' => '71',
'width' => '16',
'height' => '16'
),
- 'b_views' => array(
+ 'b_view' => array(
'position' => '72',
'width' => '16',
'height' => '16'
),
- 'bd_browse' => array(
+ 'b_view_add' => array(
'position' => '73',
'width' => '16',
'height' => '16'
),
- 'bd_deltbl' => array(
+ 'b_views' => array(
'position' => '74',
'width' => '16',
'height' => '16'
),
- 'bd_drop' => array(
+ 'bd_browse' => array(
'position' => '75',
'width' => '16',
'height' => '16'
),
- 'bd_edit' => array(
+ 'bd_deltbl' => array(
'position' => '76',
'width' => '16',
'height' => '16'
),
- 'bd_empty' => array(
+ 'bd_drop' => array(
'position' => '77',
'width' => '16',
'height' => '16'
),
- 'bd_export' => array(
+ 'bd_edit' => array(
'position' => '78',
'width' => '16',
'height' => '16'
),
- 'bd_ftext' => array(
+ 'bd_empty' => array(
'position' => '79',
'width' => '16',
'height' => '16'
),
- 'bd_index' => array(
+ 'bd_export' => array(
'position' => '80',
'width' => '16',
'height' => '16'
),
- 'bd_insrow' => array(
+ 'bd_ftext' => array(
'position' => '81',
'width' => '16',
'height' => '16'
),
- 'bd_nextpage' => array(
+ 'bd_index' => array(
'position' => '82',
- 'width' => '8',
- 'height' => '13'
+ 'width' => '16',
+ 'height' => '16'
),
- 'bd_primary' => array(
+ 'bd_insrow' => array(
'position' => '83',
'width' => '16',
'height' => '16'
),
- 'bd_sbrowse' => array(
+ 'bd_nextpage' => array(
'position' => '84',
- 'width' => '10',
- 'height' => '10'
+ 'width' => '8',
+ 'height' => '13'
),
- 'bd_select' => array(
+ 'bd_primary' => array(
'position' => '85',
'width' => '16',
'height' => '16'
),
- 'bd_spatial' => array(
+ 'bd_routine_add' => array(
'position' => '86',
'width' => '16',
'height' => '16'
),
- 'bd_unique' => array(
+ 'bd_sbrowse' => array(
'position' => '87',
- 'width' => '16',
- 'height' => '16'
+ 'width' => '10',
+ 'height' => '10'
),
- 'centralColumns' => array(
+ 'bd_select' => array(
'position' => '88',
'width' => '16',
'height' => '16'
),
- 'centralColumns_add' => array(
+ 'bd_spatial' => array(
'position' => '89',
'width' => '16',
'height' => '16'
),
- 'centralColumns_delete' => array(
+ 'bd_unique' => array(
'position' => '90',
'width' => '16',
'height' => '16'
),
- 'col_drop' => array(
+ 'centralColumns' => array(
'position' => '91',
'width' => '16',
'height' => '16'
),
- 'console' => array(
+ 'centralColumns_add' => array(
'position' => '92',
'width' => '16',
'height' => '16'
),
- 'eye' => array(
+ 'centralColumns_delete' => array(
'position' => '93',
'width' => '16',
'height' => '16'
),
- 'eye_grey' => array(
+ 'col_drop' => array(
'position' => '94',
'width' => '16',
'height' => '16'
),
- 'lightbulb' => array(
+ 'console' => array(
'position' => '95',
'width' => '16',
'height' => '16'
),
- 'lightbulb_off' => array(
+ 'eye' => array(
'position' => '96',
'width' => '16',
'height' => '16'
),
- 'more' => array(
+ 'eye_grey' => array(
'position' => '97',
- 'width' => '13',
+ 'width' => '16',
'height' => '16'
),
- 'new_data' => array(
+ 'lightbulb' => array(
'position' => '98',
'width' => '16',
'height' => '16'
),
- 'new_data_hovered' => array(
+ 'lightbulb_off' => array(
'position' => '99',
'width' => '16',
'height' => '16'
),
- 'new_data_selected' => array(
+ 'more' => array(
'position' => '100',
- 'width' => '16',
+ 'width' => '13',
'height' => '16'
),
- 'new_data_selected_hovered' => array(
+ 'new_data' => array(
'position' => '101',
'width' => '16',
'height' => '16'
),
- 'new_struct' => array(
+ 'new_data_hovered' => array(
'position' => '102',
'width' => '16',
'height' => '16'
),
- 'new_struct_hovered' => array(
+ 'new_data_selected' => array(
'position' => '103',
'width' => '16',
'height' => '16'
),
- 'new_struct_selected' => array(
+ 'new_data_selected_hovered' => array(
'position' => '104',
'width' => '16',
'height' => '16'
),
- 'new_struct_selected_hovered' => array(
+ 'new_struct' => array(
'position' => '105',
'width' => '16',
'height' => '16'
),
- 'normalize' => array(
+ 'new_struct_hovered' => array(
'position' => '106',
'width' => '16',
'height' => '16'
),
- 'pause' => array(
+ 'new_struct_selected' => array(
'position' => '107',
'width' => '16',
'height' => '16'
),
- 'play' => array(
+ 'new_struct_selected_hovered' => array(
'position' => '108',
'width' => '16',
'height' => '16'
),
- 's_asc' => array(
+ 'normalize' => array(
'position' => '109',
- 'width' => '11',
- 'height' => '9'
+ 'width' => '16',
+ 'height' => '16'
),
- 's_asci' => array(
+ 'pause' => array(
'position' => '110',
'width' => '16',
'height' => '16'
),
- 's_attention' => array(
+ 'play' => array(
'position' => '111',
'width' => '16',
'height' => '16'
),
- 's_cancel' => array(
+ 's_asc' => array(
'position' => '112',
- 'width' => '16',
- 'height' => '16'
+ 'width' => '11',
+ 'height' => '9'
),
- 's_cog' => array(
+ 's_asci' => array(
'position' => '113',
'width' => '16',
'height' => '16'
),
- 's_db' => array(
+ 's_attention' => array(
'position' => '114',
'width' => '16',
'height' => '16'
),
- 's_desc' => array(
+ 's_cancel' => array(
'position' => '115',
- 'width' => '11',
- 'height' => '9'
+ 'width' => '16',
+ 'height' => '16'
),
- 's_error' => array(
+ 's_cog' => array(
'position' => '116',
'width' => '16',
'height' => '16'
),
- 's_error2' => array(
+ 's_db' => array(
'position' => '117',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 's_desc' => array(
+ 'position' => '118',
+ 'width' => '11',
+ 'height' => '9'
+ ),
+ 's_error' => array(
+ 'position' => '119',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 's_error2' => array(
+ 'position' => '120',
'width' => '11',
'height' => '11'
),
's_host' => array(
- 'position' => '118',
- 'width' => '16',
- 'height' => '16'
- ),
- 's_info' => array(
- 'position' => '119',
- 'width' => '11',
- 'height' => '11'
- ),
- 's_lang' => array(
- 'position' => '120',
- 'width' => '16',
- 'height' => '16'
- ),
- 's_link' => array(
'position' => '121',
'width' => '16',
'height' => '16'
),
- 's_lock' => array(
+ 's_info' => array(
'position' => '122',
- 'width' => '16',
- 'height' => '16'
+ 'width' => '11',
+ 'height' => '11'
),
- 's_loggoff' => array(
+ 's_lang' => array(
'position' => '123',
'width' => '16',
'height' => '16'
),
- 's_notice' => array(
+ 's_link' => array(
'position' => '124',
'width' => '16',
'height' => '16'
),
- 's_passwd' => array(
+ 's_lock' => array(
'position' => '125',
'width' => '16',
'height' => '16'
),
- 's_really' => array(
+ 's_loggoff' => array(
'position' => '126',
- 'width' => '11',
- 'height' => '11'
+ 'width' => '16',
+ 'height' => '16'
),
- 's_reload' => array(
+ 's_notice' => array(
'position' => '127',
'width' => '16',
'height' => '16'
),
- 's_replication' => array(
+ 's_passwd' => array(
'position' => '128',
'width' => '16',
'height' => '16'
),
- 's_rights' => array(
+ 's_really' => array(
'position' => '129',
+ 'width' => '11',
+ 'height' => '11'
+ ),
+ 's_reload' => array(
+ 'position' => '130',
'width' => '16',
'height' => '16'
),
- 's_sortable' => array(
- 'position' => '130',
- 'width' => '11',
- 'height' => '15'
- ),
- 's_status' => array(
+ 's_replication' => array(
'position' => '131',
'width' => '16',
'height' => '16'
),
- 's_success' => array(
+ 's_rights' => array(
'position' => '132',
'width' => '16',
'height' => '16'
),
- 's_sync' => array(
+ 's_sortable' => array(
'position' => '133',
- 'width' => '16',
- 'height' => '16'
+ 'width' => '11',
+ 'height' => '15'
),
- 's_tbl' => array(
+ 's_status' => array(
'position' => '134',
'width' => '16',
'height' => '16'
),
- 's_theme' => array(
+ 's_success' => array(
'position' => '135',
'width' => '16',
'height' => '16'
),
- 's_top' => array(
+ 's_sync' => array(
'position' => '136',
'width' => '16',
'height' => '16'
),
- 's_unlink' => array(
+ 's_tbl' => array(
'position' => '137',
'width' => '16',
'height' => '16'
),
- 's_vars' => array(
+ 's_theme' => array(
'position' => '138',
'width' => '16',
'height' => '16'
),
- 's_views' => array(
+ 's_top' => array(
'position' => '139',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 's_unlink' => array(
+ 'position' => '140',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 's_vars' => array(
+ 'position' => '141',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 's_views' => array(
+ 'position' => '142',
'width' => '10',
'height' => '10'
),
'window-new' => array(
- 'position' => '140',
+ 'position' => '143',
'width' => '16',
'height' => '16'
),
diff --git a/themes/pmahomme/img/b_export.png b/themes/pmahomme/img/b_export.png
index be8193ad6c..367c11562f 100644
Binary files a/themes/pmahomme/img/b_export.png and b/themes/pmahomme/img/b_export.png differ
diff --git a/themes/pmahomme/img/b_import.png b/themes/pmahomme/img/b_import.png
index 7b6e77934b..4e115ab65a 100644
Binary files a/themes/pmahomme/img/b_import.png and b/themes/pmahomme/img/b_import.png differ
diff --git a/themes/pmahomme/img/b_tblexport.png b/themes/pmahomme/img/b_tblexport.png
index be8193ad6c..367c11562f 100644
Binary files a/themes/pmahomme/img/b_tblexport.png and b/themes/pmahomme/img/b_tblexport.png differ
diff --git a/themes/pmahomme/img/b_tblimport.png b/themes/pmahomme/img/b_tblimport.png
index 7b6e77934b..4e115ab65a 100644
Binary files a/themes/pmahomme/img/b_tblimport.png and b/themes/pmahomme/img/b_tblimport.png differ
diff --git a/themes/pmahomme/img/bd_export.png b/themes/pmahomme/img/bd_export.png
index a02db90721..a41b953ebb 100644
Binary files a/themes/pmahomme/img/bd_export.png and b/themes/pmahomme/img/bd_export.png differ
diff --git a/themes/pmahomme/img/sprites.png b/themes/pmahomme/img/sprites.png
index 77ba9bdfbb..b0e187f886 100644
Binary files a/themes/pmahomme/img/sprites.png and b/themes/pmahomme/img/sprites.png differ
diff --git a/themes/pmahomme/sprites.lib.php b/themes/pmahomme/sprites.lib.php
index 9220a9ecfa..1e02829d98 100644
--- a/themes/pmahomme/sprites.lib.php
+++ b/themes/pmahomme/sprites.lib.php
@@ -250,556 +250,571 @@ function PMA_sprites()
'width' => '16',
'height' => '16'
),
- 'b_routine_add' => array(
+ 'b_report' => array(
'position' => '48',
'width' => '16',
'height' => '16'
),
- 'b_routines' => array(
+ 'b_routine_add' => array(
'position' => '49',
'width' => '16',
'height' => '16'
),
- 'b_save' => array(
+ 'b_routines' => array(
'position' => '50',
'width' => '16',
'height' => '16'
),
- 'b_saveimage' => array(
+ 'b_save' => array(
'position' => '51',
'width' => '16',
'height' => '16'
),
- 'b_sbrowse' => array(
+ 'b_saveimage' => array(
'position' => '52',
'width' => '16',
'height' => '16'
),
- 'b_sdb' => array(
+ 'b_sbrowse' => array(
'position' => '53',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 'b_sdb' => array(
+ 'position' => '54',
'width' => '10',
'height' => '10'
),
'b_search' => array(
- 'position' => '54',
- 'width' => '16',
- 'height' => '16'
- ),
- 'b_selboard' => array(
'position' => '55',
'width' => '16',
'height' => '16'
),
- 'b_select' => array(
+ 'b_selboard' => array(
'position' => '56',
'width' => '16',
'height' => '16'
),
- 'b_snewtbl' => array(
+ 'b_select' => array(
'position' => '57',
'width' => '16',
'height' => '16'
),
- 'b_spatial' => array(
+ 'b_snewtbl' => array(
'position' => '58',
'width' => '16',
'height' => '16'
),
- 'b_sql' => array(
+ 'b_spatial' => array(
'position' => '59',
'width' => '16',
'height' => '16'
),
- 'b_sqldoc' => array(
+ 'b_sql' => array(
'position' => '60',
'width' => '16',
'height' => '16'
),
- 'b_sqlhelp' => array(
+ 'b_sqldoc' => array(
'position' => '61',
'width' => '16',
'height' => '16'
),
- 'b_table_add' => array(
+ 'b_sqlhelp' => array(
'position' => '62',
'width' => '16',
'height' => '16'
),
- 'b_tblanalyse' => array(
+ 'b_table_add' => array(
'position' => '63',
'width' => '16',
'height' => '16'
),
- 'b_tblexport' => array(
+ 'b_tblanalyse' => array(
'position' => '64',
'width' => '16',
'height' => '16'
),
- 'b_tblimport' => array(
+ 'b_tblexport' => array(
'position' => '65',
'width' => '16',
'height' => '16'
),
- 'b_tblops' => array(
+ 'b_tblimport' => array(
'position' => '66',
'width' => '16',
'height' => '16'
),
- 'b_tbloptimize' => array(
+ 'b_tblops' => array(
'position' => '67',
'width' => '16',
'height' => '16'
),
- 'b_tipp' => array(
+ 'b_tbloptimize' => array(
'position' => '68',
'width' => '16',
'height' => '16'
),
- 'b_trigger_add' => array(
+ 'b_tipp' => array(
'position' => '69',
'width' => '16',
'height' => '16'
),
- 'b_triggers' => array(
+ 'b_trigger_add' => array(
'position' => '70',
'width' => '16',
'height' => '16'
),
- 'b_undo' => array(
+ 'b_triggers' => array(
'position' => '71',
'width' => '16',
'height' => '16'
),
- 'b_unique' => array(
+ 'b_undo' => array(
'position' => '72',
'width' => '16',
'height' => '16'
),
- 'b_usradd' => array(
+ 'b_unique' => array(
'position' => '73',
'width' => '16',
'height' => '16'
),
- 'b_usrcheck' => array(
+ 'b_usradd' => array(
'position' => '74',
'width' => '16',
'height' => '16'
),
- 'b_usrdrop' => array(
+ 'b_usrcheck' => array(
'position' => '75',
'width' => '16',
'height' => '16'
),
- 'b_usredit' => array(
+ 'b_usrdrop' => array(
'position' => '76',
'width' => '16',
'height' => '16'
),
- 'b_usrlist' => array(
+ 'b_usredit' => array(
'position' => '77',
'width' => '16',
'height' => '16'
),
- 'b_view' => array(
+ 'b_usrlist' => array(
'position' => '78',
'width' => '16',
'height' => '16'
),
- 'b_view_add' => array(
+ 'b_versions' => array(
'position' => '79',
'width' => '16',
'height' => '16'
),
- 'b_views' => array(
+ 'b_view' => array(
'position' => '80',
'width' => '16',
'height' => '16'
),
- 'bd_browse' => array(
+ 'b_view_add' => array(
'position' => '81',
'width' => '16',
'height' => '16'
),
- 'bd_deltbl' => array(
+ 'b_views' => array(
'position' => '82',
'width' => '16',
'height' => '16'
),
- 'bd_drop' => array(
+ 'bd_browse' => array(
'position' => '83',
'width' => '16',
'height' => '16'
),
- 'bd_edit' => array(
+ 'bd_deltbl' => array(
'position' => '84',
'width' => '16',
'height' => '16'
),
- 'bd_empty' => array(
+ 'bd_drop' => array(
'position' => '85',
'width' => '16',
'height' => '16'
),
- 'bd_export' => array(
+ 'bd_edit' => array(
'position' => '86',
'width' => '16',
'height' => '16'
),
- 'bd_firstpage' => array(
+ 'bd_empty' => array(
'position' => '87',
'width' => '16',
'height' => '16'
),
- 'bd_ftext' => array(
+ 'bd_export' => array(
'position' => '88',
'width' => '16',
'height' => '16'
),
- 'bd_index' => array(
+ 'bd_firstpage' => array(
'position' => '89',
'width' => '16',
'height' => '16'
),
- 'bd_insrow' => array(
+ 'bd_ftext' => array(
'position' => '90',
'width' => '16',
'height' => '16'
),
- 'bd_lastpage' => array(
+ 'bd_index' => array(
'position' => '91',
'width' => '16',
'height' => '16'
),
- 'bd_nextpage' => array(
+ 'bd_insrow' => array(
'position' => '92',
'width' => '16',
'height' => '16'
),
- 'bd_prevpage' => array(
+ 'bd_lastpage' => array(
'position' => '93',
'width' => '16',
'height' => '16'
),
- 'bd_primary' => array(
+ 'bd_nextpage' => array(
'position' => '94',
'width' => '16',
'height' => '16'
),
- 'bd_sbrowse' => array(
+ 'bd_prevpage' => array(
'position' => '95',
'width' => '16',
'height' => '16'
),
- 'bd_select' => array(
+ 'bd_primary' => array(
'position' => '96',
'width' => '16',
'height' => '16'
),
- 'bd_spatial' => array(
+ 'bd_routine_add' => array(
'position' => '97',
'width' => '16',
'height' => '16'
),
- 'bd_unique' => array(
+ 'bd_sbrowse' => array(
'position' => '98',
'width' => '16',
'height' => '16'
),
- 'centralColumns' => array(
+ 'bd_select' => array(
'position' => '99',
'width' => '16',
'height' => '16'
),
- 'centralColumns_add' => array(
+ 'bd_spatial' => array(
'position' => '100',
'width' => '16',
'height' => '16'
),
- 'centralColumns_delete' => array(
+ 'bd_unique' => array(
'position' => '101',
'width' => '16',
'height' => '16'
),
- 'col_drop' => array(
+ 'centralColumns' => array(
'position' => '102',
'width' => '16',
'height' => '16'
),
- 'console' => array(
+ 'centralColumns_add' => array(
'position' => '103',
'width' => '16',
'height' => '16'
),
- 'database' => array(
+ 'centralColumns_delete' => array(
'position' => '104',
'width' => '16',
'height' => '16'
),
- 'eye' => array(
+ 'col_drop' => array(
'position' => '105',
'width' => '16',
'height' => '16'
),
- 'eye_grey' => array(
+ 'console' => array(
'position' => '106',
'width' => '16',
'height' => '16'
),
- 'item' => array(
+ 'database' => array(
'position' => '107',
- 'width' => '9',
- 'height' => '9'
+ 'width' => '16',
+ 'height' => '16'
),
- 'lightbulb' => array(
+ 'eye' => array(
'position' => '108',
'width' => '16',
'height' => '16'
),
- 'lightbulb_off' => array(
+ 'eye_grey' => array(
'position' => '109',
'width' => '16',
'height' => '16'
),
- 'more' => array(
+ 'item' => array(
'position' => '110',
- 'width' => '13',
- 'height' => '16'
+ 'width' => '9',
+ 'height' => '9'
),
- 'new_data' => array(
+ 'lightbulb' => array(
'position' => '111',
'width' => '16',
'height' => '16'
),
- 'new_data_hovered' => array(
+ 'lightbulb_off' => array(
'position' => '112',
'width' => '16',
'height' => '16'
),
- 'new_data_selected' => array(
+ 'more' => array(
'position' => '113',
- 'width' => '16',
+ 'width' => '13',
'height' => '16'
),
- 'new_data_selected_hovered' => array(
+ 'new_data' => array(
'position' => '114',
'width' => '16',
'height' => '16'
),
- 'new_struct' => array(
+ 'new_data_hovered' => array(
'position' => '115',
'width' => '16',
'height' => '16'
),
- 'new_struct_hovered' => array(
+ 'new_data_selected' => array(
'position' => '116',
'width' => '16',
'height' => '16'
),
- 'new_struct_selected' => array(
+ 'new_data_selected_hovered' => array(
'position' => '117',
'width' => '16',
'height' => '16'
),
- 'new_struct_selected_hovered' => array(
+ 'new_struct' => array(
'position' => '118',
'width' => '16',
'height' => '16'
),
- 'normalize' => array(
+ 'new_struct_hovered' => array(
'position' => '119',
'width' => '16',
'height' => '16'
),
- 'pause' => array(
+ 'new_struct_selected' => array(
'position' => '120',
'width' => '16',
'height' => '16'
),
- 'php_sym' => array(
+ 'new_struct_selected_hovered' => array(
'position' => '121',
'width' => '16',
'height' => '16'
),
- 'play' => array(
+ 'normalize' => array(
'position' => '122',
'width' => '16',
'height' => '16'
),
- 's_asc' => array(
+ 'pause' => array(
'position' => '123',
'width' => '16',
'height' => '16'
),
- 's_asci' => array(
+ 'php_sym' => array(
'position' => '124',
'width' => '16',
'height' => '16'
),
- 's_attention' => array(
+ 'play' => array(
'position' => '125',
'width' => '16',
'height' => '16'
),
- 's_cancel' => array(
+ 's_asc' => array(
'position' => '126',
'width' => '16',
'height' => '16'
),
- 's_cancel2' => array(
+ 's_asci' => array(
'position' => '127',
'width' => '16',
'height' => '16'
),
- 's_cog' => array(
+ 's_attention' => array(
'position' => '128',
'width' => '16',
'height' => '16'
),
- 's_db' => array(
+ 's_cancel' => array(
'position' => '129',
'width' => '16',
'height' => '16'
),
- 's_desc' => array(
+ 's_cancel2' => array(
'position' => '130',
'width' => '16',
'height' => '16'
),
- 's_error' => array(
+ 's_cog' => array(
'position' => '131',
'width' => '16',
'height' => '16'
),
- 's_error2' => array(
+ 's_db' => array(
'position' => '132',
- 'width' => '11',
- 'height' => '11'
+ 'width' => '16',
+ 'height' => '16'
),
- 's_host' => array(
+ 's_desc' => array(
'position' => '133',
'width' => '16',
'height' => '16'
),
- 's_info' => array(
+ 's_error' => array(
'position' => '134',
'width' => '16',
'height' => '16'
),
- 's_lang' => array(
+ 's_error2' => array(
'position' => '135',
- 'width' => '16',
- 'height' => '16'
+ 'width' => '11',
+ 'height' => '11'
),
- 's_link' => array(
+ 's_host' => array(
'position' => '136',
'width' => '16',
'height' => '16'
),
- 's_lock' => array(
+ 's_info' => array(
'position' => '137',
'width' => '16',
'height' => '16'
),
- 's_loggoff' => array(
+ 's_lang' => array(
'position' => '138',
'width' => '16',
'height' => '16'
),
- 's_notice' => array(
+ 's_link' => array(
'position' => '139',
'width' => '16',
'height' => '16'
),
- 's_okay' => array(
+ 's_lock' => array(
'position' => '140',
'width' => '16',
'height' => '16'
),
- 's_passwd' => array(
+ 's_loggoff' => array(
'position' => '141',
'width' => '16',
'height' => '16'
),
- 's_process' => array(
+ 's_notice' => array(
'position' => '142',
'width' => '16',
'height' => '16'
),
- 's_really' => array(
+ 's_okay' => array(
'position' => '143',
- 'width' => '11',
- 'height' => '11'
+ 'width' => '16',
+ 'height' => '16'
),
- 's_reload' => array(
+ 's_passwd' => array(
'position' => '144',
'width' => '16',
'height' => '16'
),
- 's_replication' => array(
+ 's_process' => array(
'position' => '145',
'width' => '16',
'height' => '16'
),
- 's_rights' => array(
+ 's_really' => array(
'position' => '146',
- 'width' => '16',
- 'height' => '16'
+ 'width' => '11',
+ 'height' => '11'
),
- 's_sortable' => array(
+ 's_reload' => array(
'position' => '147',
'width' => '16',
'height' => '16'
),
- 's_status' => array(
+ 's_replication' => array(
'position' => '148',
'width' => '16',
'height' => '16'
),
- 's_success' => array(
+ 's_rights' => array(
'position' => '149',
'width' => '16',
'height' => '16'
),
- 's_sync' => array(
+ 's_sortable' => array(
'position' => '150',
'width' => '16',
'height' => '16'
),
- 's_tbl' => array(
+ 's_status' => array(
'position' => '151',
'width' => '16',
'height' => '16'
),
- 's_theme' => array(
+ 's_success' => array(
'position' => '152',
'width' => '16',
'height' => '16'
),
- 's_top' => array(
+ 's_sync' => array(
'position' => '153',
'width' => '16',
'height' => '16'
),
- 's_unlink' => array(
+ 's_tbl' => array(
'position' => '154',
'width' => '16',
'height' => '16'
),
- 's_vars' => array(
+ 's_theme' => array(
'position' => '155',
'width' => '16',
'height' => '16'
),
- 's_views' => array(
+ 's_top' => array(
'position' => '156',
'width' => '16',
'height' => '16'
),
- 'window-new' => array(
+ 's_unlink' => array(
'position' => '157',
'width' => '16',
'height' => '16'
),
+ 's_vars' => array(
+ 'position' => '158',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 's_views' => array(
+ 'position' => '159',
+ 'width' => '16',
+ 'height' => '16'
+ ),
+ 'window-new' => array(
+ 'position' => '160',
+ 'width' => '16',
+ 'height' => '16'
+ ),
);
}
?>