Merge branch 'MAINT_4_4_15' into STABLE
This commit is contained in:
commit
cd01327f24
14
ChangeLog
14
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
|
||||
|
||||
|
||||
2
README
2
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.
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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, "<")
|
||||
.replace(/>/g, ">")
|
||||
|
||||
@ -676,6 +676,7 @@ function Save3(callback)
|
||||
};
|
||||
|
||||
var $form = $('<form action="db_designer.php" method="post" name="save_page" id="save_page" class="ajax"></form>')
|
||||
.append('<input type="hidden" name="server" value="' + server + '" />')
|
||||
.append('<input type="hidden" name="db" value="' + db + '" />')
|
||||
.append('<input type="hidden" name="token" value="' + token + '" />')
|
||||
.append('<input type="hidden" name="operation" value="savePage" />')
|
||||
@ -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;
|
||||
}
|
||||
$('<a href="db_designer.php?db=' + db + '&token=' + token + param_page + '"></a>')
|
||||
$('<a href="db_designer.php?server=' + server + '&db=' + db + '&token=' + token + param_page + '"></a>')
|
||||
.appendTo($('#page_content'))
|
||||
.click();
|
||||
} else {
|
||||
|
||||
@ -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
|
||||
*/
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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(
|
||||
'<script data-cfasync="false" type="text/javascript" src="%s"></script>',
|
||||
htmlspecialchars($url)
|
||||
);
|
||||
$static_scripts .= sprintf(
|
||||
'<script data-cfasync="false" type="text/javascript" src="%s"></script>',
|
||||
htmlspecialchars($url)
|
||||
);
|
||||
}
|
||||
return $first_dynamic_scripts . $static_scripts . $dynamic_scripts;
|
||||
}
|
||||
|
||||
|
||||
@ -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 "";
|
||||
|
||||
@ -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');
|
||||
|
||||
@ -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',
|
||||
|
||||
@ -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();
|
||||
}
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -815,7 +815,7 @@ function PMA_getHtmlForRequires($row)
|
||||
$html_output .= '<input type="radio" name="ssl_type" id="ssl_type_X509"'
|
||||
. ' value="X509" title="'
|
||||
. __(
|
||||
'Requires a valid X509 cetrificate.'
|
||||
'Requires a valid X509 certificate.'
|
||||
)
|
||||
. '"'
|
||||
. ((isset($row['ssl_type']) && $row['ssl_type'] == 'X509')
|
||||
|
||||
@ -384,12 +384,14 @@ function PMA_getHtmlForForeignKeyForm($columns, $existrel_foreign, $db,
|
||||
|
||||
$odd_row = true;
|
||||
$i = 0;
|
||||
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;
|
||||
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,
|
||||
|
||||
2
po/af.po
2
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
|
||||
|
||||
2
po/ar.po
2
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
|
||||
|
||||
2
po/az.po
2
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
|
||||
|
||||
2
po/be.po
2
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
|
||||
|
||||
@ -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
|
||||
|
||||
2
po/bg.po
2
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
|
||||
|
||||
2
po/bn.po
2
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
|
||||
|
||||
2
po/br.po
2
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
|
||||
|
||||
2
po/bs.po
2
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
|
||||
|
||||
21
po/ca.po
21
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 <jconstanti@yahoo.es>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/phpmyadmin/4-4/"
|
||||
"ca/>\n"
|
||||
"PO-Revision-Date: 2015-09-16 14:31+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Catalan "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/ca/>\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
|
||||
|
||||
16
po/ckb.po
16
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 <zhyarabdulla94@gmail.com>\n"
|
||||
"Language-Team: Kurdish Sorani <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/4-4/ckb/>\n"
|
||||
"PO-Revision-Date: 2015-09-14 09:27+0200\n"
|
||||
"Last-Translator: muhammad <esy_vb@yahoo.com>\n"
|
||||
"Language-Team: Kurdish Sorani "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/ckb/>\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
|
||||
|
||||
7
po/cs.po
7
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ř <michal@cihar.com>\n"
|
||||
"PO-Revision-Date: 2015-09-02 11:32+0200\n"
|
||||
"Last-Translator: Petr Kateřiňák <petr.katerinak@gmail.com>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/phpmyadmin/4-4/cs/>"
|
||||
"\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
|
||||
|
||||
2
po/cy.po
2
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
|
||||
|
||||
106
po/da.po
106
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 <aj@isit.gl>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/phpmyadmin/4-4/da/"
|
||||
">\n"
|
||||
"Language-Team: Danish "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/da/>\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. <a href="
|
||||
#| "\"http://www.mysqlperformanceblog.com/2008/08/23/how-to-track-down-the-"
|
||||
@ -15681,10 +15685,10 @@ msgid ""
|
||||
"\"http://www.percona.com/blog/2008/08/23/how-to-track-down-the-source-of-"
|
||||
"aborted_connects/\">This article</a> might help you track down the source."
|
||||
msgstr ""
|
||||
"Forbindelser aborteres normalt, når de ikke kan blive autoriseret. <a href="
|
||||
"\"http://www.mysqlperformanceblog.com/2008/08/23/how-to-track-down-the-"
|
||||
"source-of-aborted_connects/\">Denne artikel</a> kan måske hjælpe dig med at "
|
||||
"finde årsagen."
|
||||
"Forbindelser aborteres normalt, når de ikke kan blive autoriseret. <a href=\""
|
||||
"http://www.percona.com/blog/2008/08/23/how-to-track-down-the-source-of-"
|
||||
"aborted_connects/\">Denne artikel</a> 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å <a href=\"http://www.mysqlperformanceblog."
|
||||
"com/2006/07/03/choosing-proper-innodb_log_file_size/\">denne artikel</a>.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å <a href="
|
||||
"\"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-"
|
||||
"databasenedbrud. Se også <a href=\"http://www.percona.com/blog/2006/07/03"
|
||||
"/choosing-proper-innodb_log_file_size/\">denne artikel</a>.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å <a href=\""
|
||||
"http://mysqldatabaseadministration.blogspot.com/2007/01/increase-"
|
||||
"innodblogfilesize-proper-way.html\">dette blogindlæg</a>"
|
||||
|
||||
#: 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å <a href=\"http://"
|
||||
"www.mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/"
|
||||
"\">denne artikel</a>"
|
||||
"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å <a href=\""
|
||||
"http://www.percona.com/blog/2007/11/03/choosing-innodb_buffer_pool_size/\">"
|
||||
"denne artikel</a>"
|
||||
|
||||
#: libraries/advisory_rules.txt:455
|
||||
#, php-format
|
||||
|
||||
8
po/de.po
8
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 <rohmberger@hotmail.de>\n"
|
||||
"PO-Revision-Date: 2015-09-16 14:31+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: German "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/de/>\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"
|
||||
|
||||
2
po/el.po
2
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
|
||||
|
||||
@ -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
|
||||
|
||||
2
po/eo.po
2
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
|
||||
|
||||
2
po/es.po
2
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
|
||||
|
||||
2
po/et.po
2
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
|
||||
|
||||
2
po/eu.po
2
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
|
||||
|
||||
39
po/fa.po
39
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 <goodlinuxuser@chmail.ir>\n"
|
||||
"Language-Team: Persian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/fa/>\n"
|
||||
"PO-Revision-Date: 2015-09-07 14:51+0200\n"
|
||||
"Last-Translator: ashkan shirian <ashkan.shirian@gmail.com>\n"
|
||||
"Language-Team: Persian "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/fa/>\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
|
||||
|
||||
2
po/fi.po
2
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
|
||||
|
||||
6
po/fr.po
6
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 <marc@infomarc.info>\n"
|
||||
"Language-Team: French "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/fr/>\n"
|
||||
@ -9642,7 +9642,7 @@ msgstr "Aller à la table copiée"
|
||||
|
||||
#: libraries/operations.lib.php:1042
|
||||
msgid "Table maintenance"
|
||||
msgstr "<b>Maintenance</b> 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
|
||||
|
||||
2
po/fy.po
2
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
|
||||
|
||||
2
po/he.po
2
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
|
||||
|
||||
41
po/hi.po
41
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 <nisargjhaveri@gmail.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"hi/>\n"
|
||||
"PO-Revision-Date: 2015-09-14 00:30+0200\n"
|
||||
"Last-Translator: Atul Pratap Singh <atulpratapsingh05@gmail.com>\n"
|
||||
"Language-Team: Hindi <https://hosted.weblate.org/projects/phpmyadmin/4-4/hi/>"
|
||||
"\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
|
||||
|
||||
2
po/hr.po
2
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
|
||||
|
||||
16
po/hu.po
16
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 <urbalazs@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/phpmyadmin/4-4/"
|
||||
"hu/>\n"
|
||||
"PO-Revision-Date: 2015-08-26 14:34+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hungarian "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/hu/>\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"
|
||||
|
||||
8
po/ia.po
8
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 <g.sora@tiscali.it>\n"
|
||||
"Language-Team: Interlingua "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/ia/>\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"
|
||||
|
||||
2
po/id.po
2
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
|
||||
|
||||
21
po/it.po
21
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 <stefano.ste.martinelli@gmail.com>\n"
|
||||
"Language-Team: Italian "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/it/>\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
|
||||
|
||||
2
po/ja.po
2
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
|
||||
|
||||
2
po/ka.po
2
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
|
||||
|
||||
2
po/kk.po
2
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
|
||||
|
||||
2
po/km.po
2
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
|
||||
|
||||
2
po/kn.po
2
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
|
||||
|
||||
88
po/ko.po
88
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 <youngminz.kr@gmail.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/phpmyadmin/4-4/ko/"
|
||||
">\n"
|
||||
"PO-Revision-Date: 2015-09-07 03:23+0200\n"
|
||||
"Last-Translator: Seongki Shin <skshin@gmail.com>\n"
|
||||
"Language-Team: Korean "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/ko/>\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."
|
||||
#| "<br />- 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 절에 이 컬럼을 추가하거나 내림차순/오름차순 토글"
|
||||
"<br />- Control+Click 으로 ORDER BY 절로부터 이 컬럼 제거"
|
||||
"Shift+Click 으로 ORDER BY 절에 이 컬럼을 추가하거나 내림차순/오름차순 토글<br />- Ctrl+Click 또는 Alt+"
|
||||
"Click (맥: Shift+Option+Click) 으로 ORDER BY 절로부터 이 컬럼 제거"
|
||||
|
||||
#: js/messages.php:447
|
||||
msgid "Click to mark/unmark."
|
||||
@ -2284,7 +2277,7 @@ msgstr "값을 클릭하여 바로 수정할 수 있습니다.<br />(일부 제
|
||||
|
||||
#: 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
|
||||
|
||||
@ -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
|
||||
|
||||
2
po/ky.po
2
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
|
||||
|
||||
2
po/li.po
2
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
|
||||
|
||||
2
po/lt.po
2
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
|
||||
|
||||
2
po/lv.po
2
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
|
||||
|
||||
2
po/mk.po
2
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
|
||||
|
||||
2
po/ml.po
2
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
|
||||
|
||||
2
po/mn.po
2
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
|
||||
|
||||
57
po/ms.po
57
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ř <michal@cihar.com>\n"
|
||||
"Language-Team: Malay <https://hosted.weblate.org/projects/phpmyadmin/master/"
|
||||
"ms/>\n"
|
||||
"Language-Team: Malay <https://hosted.weblate.org/projects/phpmyadmin/4-4/ms/>"
|
||||
"\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!"
|
||||
|
||||
|
||||
14
po/nb.po
14
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 <sebastian@sgundersen.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/4-4/nb/>\n"
|
||||
"PO-Revision-Date: 2015-08-26 14:34+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Norwegian Bokmål "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/nb/>\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
|
||||
|
||||
2
po/ne.po
2
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
|
||||
|
||||
2
po/nl.po
2
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
|
||||
|
||||
2
po/pa.po
2
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
|
||||
|
||||
2
po/pl.po
2
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
|
||||
|
||||
2
po/pt.po
2
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
|
||||
|
||||
@ -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
|
||||
|
||||
2
po/ro.po
2
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
|
||||
|
||||
34
po/ru.po
34
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 <aaleksanyants@yahoo.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/phpmyadmin/4-4/"
|
||||
"ru/>\n"
|
||||
"PO-Revision-Date: 2015-09-06 06:49+0200\n"
|
||||
"Last-Translator: Egorov Artyom <unlucky@inbox.ru>\n"
|
||||
"Language-Team: Russian "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/ru/>\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
|
||||
|
||||
2
po/si.po
2
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
|
||||
|
||||
17
po/sk.po
17
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 <martin@whistler.sk>\n"
|
||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/phpmyadmin/4-4/sk/"
|
||||
">\n"
|
||||
"Language-Team: Slovak "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/sk/>\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
|
||||
|
||||
2
po/sl.po
2
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
|
||||
|
||||
25
po/sq.po
25
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 <acokaj@shkoder.net>\n"
|
||||
"Language-Team: Albanian <https://hosted.weblate.org/projects/phpmyadmin/4-4/"
|
||||
"sq/>\n"
|
||||
"Language-Team: Albanian "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/sq/>\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
|
||||
|
||||
2
po/sr.po
2
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
|
||||
|
||||
@ -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
|
||||
|
||||
2
po/sv.po
2
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
|
||||
|
||||
2
po/ta.po
2
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
|
||||
|
||||
2
po/te.po
2
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
|
||||
|
||||
2
po/th.po
2
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
|
||||
|
||||
2
po/tk.po
2
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
|
||||
|
||||
2
po/tr.po
2
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
|
||||
|
||||
2
po/tt.po
2
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
|
||||
|
||||
2
po/ug.po
2
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
|
||||
|
||||
24
po/uk.po
24
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: Сергій Педько <nitrotoll@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/phpmyadmin/"
|
||||
"master/uk/>\n"
|
||||
"PO-Revision-Date: 2015-08-26 15:10+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Ukrainian "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/uk/>\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
|
||||
|
||||
2
po/ur.po
2
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
|
||||
|
||||
2
po/uz.po
2
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
|
||||
|
||||
@ -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
|
||||
|
||||
2
po/vi.po
2
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
|
||||
|
||||
@ -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
|
||||
|
||||
175
po/zh_CN.po
175
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 <memoword@163.com>\n"
|
||||
"Language-Team: Chinese (China) <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/4-4/zh_CN/>\n"
|
||||
"PO-Revision-Date: 2015-09-03 04:02+0200\n"
|
||||
"Last-Translator: Vincent Lau <3092849@qq.com>\n"
|
||||
"Language-Team: Chinese (China) "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/zh_CN/>\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 语句中或是切换升序和降序。<br />使用 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<br />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
|
||||
|
||||
59
po/zh_TW.po
59
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 <cwlin0416@gmail.com>\n"
|
||||
"Language-Team: Chinese (Taiwan) <https://hosted.weblate.org/projects/"
|
||||
"phpmyadmin/4-4/zh_TW/>\n"
|
||||
"Language-Team: Chinese (Taiwan) "
|
||||
"<https://hosted.weblate.org/projects/phpmyadmin/4-4/zh_TW/>\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.<br/>Hint: A primary key is a column "
|
||||
"(or combination of columns) that uniquely identify all rows."
|
||||
msgstr ""
|
||||
"目前沒有主鍵(Primary Key),請新增一個。<br/>提示:主鍵是一個欄位 (或多個欄位組合而成),它獨一無二、可以用來辨識所有資料列。"
|
||||
|
||||
#: 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 <b>minimal set</b> of columns among "
|
||||
"given set whose values combined together are sufficient to determine the "
|
||||
"value of the column."
|
||||
msgstr ""
|
||||
msgstr "以下欄位,請選擇可足夠用來辨識欄位值的<b>最少</b>欄位值組合。"
|
||||
|
||||
#: 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.<br />Note: A column may have no transitive dependency, "
|
||||
"in that case you don't have to select any."
|
||||
msgstr ""
|
||||
msgstr "以下欄位,請選擇可足夠用來辨識欄位值的<b>最少</b>欄位值組合。<br />注意:欄位可能沒有遞移相依,因此您可能不用做任何選擇。"
|
||||
|
||||
#: 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
|
||||
|
||||
@ -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 \
|
||||
|
||||
@ -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]
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user