fixed code indention
This commit is contained in:
23
ChangeLog
23
ChangeLog
@@ -6,6 +6,7 @@ $Id$
|
|||||||
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
|
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
|
||||||
|
|
||||||
+ [import] support handling of DELIMITER to mimic mysql CLI, thanks to fb1
|
+ [import] support handling of DELIMITER to mimic mysql CLI, thanks to fb1
|
||||||
|
+ improved PHP 6 compatibility
|
||||||
- bug #1674914 [structure] changing definition of a TIMESTAMP field
|
- bug #1674914 [structure] changing definition of a TIMESTAMP field
|
||||||
- bug #1615530 [upload] added more specific error message if field upload fails
|
- bug #1615530 [upload] added more specific error message if field upload fails
|
||||||
- bug #1627210, #1083301, #1482401 [data] warning on duplicate indexes
|
- bug #1627210, #1083301, #1482401 [data] warning on duplicate indexes
|
||||||
@@ -17,7 +18,6 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
- bug #1523747 [innodb] make warning about row count more visible
|
- bug #1523747 [innodb] make warning about row count more visible
|
||||||
- bug #1676012 [auth] strip non-US-ASCII characters (RFC2616)
|
- bug #1676012 [auth] strip non-US-ASCII characters (RFC2616)
|
||||||
- bug #1679440 Added FAQ entry about header errors under IIS caused by
|
- bug #1679440 Added FAQ entry about header errors under IIS caused by
|
||||||
- typo in fix for bug #1671813
|
|
||||||
an end-of-line character
|
an end-of-line character
|
||||||
- [gui] avoid displaying a wide selector in server selection
|
- [gui] avoid displaying a wide selector in server selection
|
||||||
- bug #1614004 [relation] foreign key spanning multiple columns are
|
- bug #1614004 [relation] foreign key spanning multiple columns are
|
||||||
@@ -50,8 +50,20 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
+ [doc] requirement of mcrypt on 64-bit, thanks to Isaac Bennetch
|
+ [doc] requirement of mcrypt on 64-bit, thanks to Isaac Bennetch
|
||||||
+ [lang] danish update, thanks to Finn Sorensen
|
+ [lang] danish update, thanks to Finn Sorensen
|
||||||
+ RFE #1435922 [gui] navigation frame shows listing of databases when none selected
|
+ RFE #1435922 [gui] navigation frame shows listing of databases when none selected
|
||||||
|
+ [data] support BIT datatype (under mysqli), thanks to Christian Schmidt
|
||||||
|
+ [display] automatic confirmation for sort by key, thanks to Juergen Wind
|
||||||
|
+ [data] can now choose the number of insert rows
|
||||||
|
+ RFE #1704779 [gui] link documentation from login page
|
||||||
|
+ RFE #1513345 [setup] check control user connection during setup
|
||||||
|
+ [structure] TRIGGERS: display/edit/drop/SQL export
|
||||||
|
|
||||||
2.10.1.0 (not released yet)
|
2.10.2.0 (not yet released)
|
||||||
|
|
||||||
|
+ [data] display all warnings, not only last one
|
||||||
|
- typo in fix for bug #1671813
|
||||||
|
- bug #1714908 Inserted Row Count is wrong
|
||||||
|
|
||||||
|
2.10.1.0 (2007-04-23)
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
- bug #1541147 [js] '#' in database names not correctly handled by queywindow.js
|
- bug #1541147 [js] '#' in database names not correctly handled by queywindow.js
|
||||||
@@ -79,12 +91,11 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
- bug #1690718 Can't edit if BLOB and no PK
|
- bug #1690718 Can't edit if BLOB and no PK
|
||||||
- bug #1672636 [export] PDF export too wide
|
- bug #1672636 [export] PDF export too wide
|
||||||
+ [lang] brazilian-portuguese update, thanks to Airon Luis Pereira
|
+ [lang] brazilian-portuguese update, thanks to Airon Luis Pereira
|
||||||
|
- patch #1698964 javascript typo, thanks to Corey Hollaway
|
||||||
2.10.0.3 (not released yet)
|
- bug #1703897 [css] undefined index 'js_frame'
|
||||||
=====================
|
|
||||||
|
|
||||||
- bug #1690561 Blobs being cleared on Edit of row
|
- bug #1690561 Blobs being cleared on Edit of row
|
||||||
- bug #1679801 [core] XSS vulnerability in PMA_sanitize(), thanks to sp3x SecurityReason
|
- bug #1679801 [core] XSS vulnerability in PMA_sanitize(), thanks to sp3x SecurityReason
|
||||||
|
- bug #1704467 XSS vulnerability in browse_foreigners.php, thanks to sp3x SecurityReason
|
||||||
|
|
||||||
2.10.0.2 (2007-03-02)
|
2.10.0.2 (2007-03-02)
|
||||||
=====================
|
=====================
|
||||||
|
@@ -105,7 +105,7 @@ if (isset($disp_row) && is_array($disp_row)) {
|
|||||||
var element_name = field + '[]';
|
var element_name = field + '[]';
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if (isset($fieldkey)) { ?>
|
<?php if (isset($fieldkey) && is_numeric($fieldkey)) { ?>
|
||||||
var element_name_alt = field + '[<?php echo $fieldkey; ?>]';
|
var element_name_alt = field + '[<?php echo $fieldkey; ?>]';
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
var element_name_alt = field + '[0]';
|
var element_name_alt = field + '[0]';
|
||||||
|
@@ -73,7 +73,7 @@ header('Content-Type: text/html; charset=' . $charset);
|
|||||||
<body>
|
<body>
|
||||||
<h1>phpMyAdmin - <?php echo $type; ?></h1>
|
<h1>phpMyAdmin - <?php echo $type; ?></h1>
|
||||||
<p><?php
|
<p><?php
|
||||||
if (get_magic_quotes_gpc()) {
|
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
|
||||||
echo PMA_sanitize(stripslashes($_REQUEST['error']));
|
echo PMA_sanitize(stripslashes($_REQUEST['error']));
|
||||||
} else {
|
} else {
|
||||||
echo PMA_sanitize($_REQUEST['error']);
|
echo PMA_sanitize($_REQUEST['error']);
|
||||||
|
@@ -368,7 +368,7 @@ function checkTableEditForm(theForm, fieldsCnt)
|
|||||||
{
|
{
|
||||||
id = "field_" + i + "_2";
|
id = "field_" + i + "_2";
|
||||||
elm = getElement(id);
|
elm = getElement(id);
|
||||||
if (elm.value == 'VARCHAR' || elm.value == 'CHAR') {
|
if (elm.value == 'VARCHAR' || elm.value == 'CHAR' || elm.value == 'BIT') {
|
||||||
elm2 = getElement("field_" + i + "_3");
|
elm2 = getElement("field_" + i + "_3");
|
||||||
val = parseInt(elm2.value);
|
val = parseInt(elm2.value);
|
||||||
elm3 = getElement("field_" + i + "_1");
|
elm3 = getElement("field_" + i + "_1");
|
||||||
@@ -993,8 +993,8 @@ function getElement(e,f){
|
|||||||
if(f.document.layers[e]) {
|
if(f.document.layers[e]) {
|
||||||
return f.document.layers[e];
|
return f.document.layers[e];
|
||||||
}
|
}
|
||||||
for(W=0;i<f.document.layers.length;W++) {
|
for(W=0;W<f.document.layers.length;W++) {
|
||||||
return(getElement(e,fdocument.layers[W]));
|
return(getElement(e,f.document.layers[W]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(document.all) {
|
if(document.all) {
|
||||||
|
@@ -1056,4 +1056,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1057,4 +1057,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1055,4 +1055,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1056,4 +1056,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1058,4 +1058,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1057,4 +1057,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1049,4 +1049,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1050,4 +1050,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1033,4 +1033,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1032,4 +1032,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1032,4 +1032,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1056,4 +1056,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1055,4 +1055,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* translated by:
|
* translated by:
|
||||||
Airon Luis Pereira <aironp@pop.com.br>
|
Airon Luis Pereira <airon.pereira@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$charset = 'iso-8859-1';
|
$charset = 'iso-8859-1';
|
||||||
@@ -25,6 +25,11 @@ $datefmt = '%B %d, %Y as %I:%M %p';
|
|||||||
|
|
||||||
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
|
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$strAbortedClients = 'Abortado';
|
$strAbortedClients = 'Abortado';
|
||||||
$strAccessDenied = 'Acesso negado';
|
$strAccessDenied = 'Acesso negado';
|
||||||
$strAccessDeniedCreateConfig = 'A prov<6F>vel raz<61>o para isso <20> que voc<6F> n<>o criou o arquivo de configura<72><61>o. Voc<6F> deve usar o %1$ssetup script%2$s para criar um.';
|
$strAccessDeniedCreateConfig = 'A prov<6F>vel raz<61>o para isso <20> que voc<6F> n<>o criou o arquivo de configura<72><61>o. Voc<6F> deve usar o %1$ssetup script%2$s para criar um.';
|
||||||
@@ -244,7 +249,7 @@ $strDoAQuery = 'Fa
|
|||||||
$strDocSQL = 'DocSQL';
|
$strDocSQL = 'DocSQL';
|
||||||
$strDocSQLOptions = 'Op<4F><70>es DocSQL';
|
$strDocSQLOptions = 'Op<4F><70>es DocSQL';
|
||||||
$strDocu = 'Documenta<74><61>o';
|
$strDocu = 'Documenta<74><61>o';
|
||||||
$strDoYouReally = 'Confirmar: ';
|
$strDoYouReally = 'Confirmar';
|
||||||
$strDropDatabaseStrongWarning = 'Voc<6F> est<73> prestes <20> DESTRUIR completamente o Banco de Dados!';
|
$strDropDatabaseStrongWarning = 'Voc<6F> est<73> prestes <20> DESTRUIR completamente o Banco de Dados!';
|
||||||
$strDrop = 'Eliminar';
|
$strDrop = 'Eliminar';
|
||||||
$strDropUsersDb = 'Eliminar o Banco de Dados que possui o mesmo nome dos usu<73>rios.';
|
$strDropUsersDb = 'Eliminar o Banco de Dados que possui o mesmo nome dos usu<73>rios.';
|
||||||
@@ -257,7 +262,7 @@ $strEdit = 'Editar';
|
|||||||
$strEditPDFPages = 'Editar P<>ginas PDF';
|
$strEditPDFPages = 'Editar P<>ginas PDF';
|
||||||
$strEditPrivileges = 'Editar Privil<69>gios';
|
$strEditPrivileges = 'Editar Privil<69>gios';
|
||||||
$strEffective = 'Efetivo';
|
$strEffective = 'Efetivo';
|
||||||
$strEmpty = 'Limpa';
|
$strEmpty = 'Limpar';
|
||||||
$strEmptyResultSet = 'MySQL retornou um conjunto vazio (ex. zero registros).';
|
$strEmptyResultSet = 'MySQL retornou um conjunto vazio (ex. zero registros).';
|
||||||
$strEnabled = 'Habilitado';
|
$strEnabled = 'Habilitado';
|
||||||
$strEncloseInTransaction = 'Encapsular exporta<74><61>o numa transa<73><61>o';
|
$strEncloseInTransaction = 'Encapsular exporta<74><61>o numa transa<73><61>o';
|
||||||
@@ -266,7 +271,7 @@ $strEnd = 'Fim';
|
|||||||
$strEndRaw = 'FIM CRU';
|
$strEndRaw = 'FIM CRU';
|
||||||
$strEngineAvailable = '%s est<73> dispon<6F>vel neste servidor MySQL.';
|
$strEngineAvailable = '%s est<73> dispon<6F>vel neste servidor MySQL.';
|
||||||
$strEngineDisabled = '%s est<73> desabilitado neste servidor MySQL.';
|
$strEngineDisabled = '%s est<73> desabilitado neste servidor MySQL.';
|
||||||
$strEngines = 'Engines';
|
$strEngines = 'Engines'; //sem traducao
|
||||||
$strEngineUnsupported = 'Esse servidor MySQL n<>o suporta o stored engine %s.';
|
$strEngineUnsupported = 'Esse servidor MySQL n<>o suporta o stored engine %s.';
|
||||||
$strEnglish = 'Ingl<67>s';
|
$strEnglish = 'Ingl<67>s';
|
||||||
$strEnglishPrivileges = ' Nota: nomes de privil<69>gios do MySQL s<>o expressos em ingl<67>s ';
|
$strEnglishPrivileges = ' Nota: nomes de privil<69>gios do MySQL s<>o expressos em ingl<67>s ';
|
||||||
@@ -291,6 +296,7 @@ $strExtra = 'Extra';
|
|||||||
$strFailedAttempts = 'Tentativas falharam';
|
$strFailedAttempts = 'Tentativas falharam';
|
||||||
$strField = 'Campo';
|
$strField = 'Campo';
|
||||||
$strFieldHasBeenDropped = 'Campo %s foi deletado';
|
$strFieldHasBeenDropped = 'Campo %s foi deletado';
|
||||||
|
$strFieldInsertFromFileTempDirNotExists = 'Erro ao mover o arquivo carregado, veja FAQ 1.11';
|
||||||
$strFields = 'Campos';
|
$strFields = 'Campos';
|
||||||
$strFieldsEmpty = ' O campo count esta vazio! ';
|
$strFieldsEmpty = ' O campo count esta vazio! ';
|
||||||
$strFieldsEnclosedBy = 'Campos delimitados por';
|
$strFieldsEnclosedBy = 'Campos delimitados por';
|
||||||
@@ -304,6 +310,7 @@ $strFileNameTemplateDescriptionServer = 'nome do servidor';
|
|||||||
$strFileNameTemplateDescriptionTable = 'nome da tabela';
|
$strFileNameTemplateDescriptionTable = 'nome da tabela';
|
||||||
$strFileNameTemplate = 'Nome do arquivo do modelo';
|
$strFileNameTemplate = 'Nome do arquivo do modelo';
|
||||||
$strFileNameTemplateRemember = 'lembrar modelo';
|
$strFileNameTemplateRemember = 'lembrar modelo';
|
||||||
|
$strFiles = 'Arquivos';
|
||||||
$strFileToImport = 'Arquivo para importar';
|
$strFileToImport = 'Arquivo para importar';
|
||||||
$strFixed = 'fixo';
|
$strFixed = 'fixo';
|
||||||
$strFlushPrivilegesNote = 'Nota: O phpMyAdmin recebe os privil<69>gios dos usu<73>rio diretamente da tabela de privil<69>gios do MySQL. O conte<74>do destas tabelas pode divergir dos privil<69>gios que o servidor usa se altera<72><61>es manuais forem feitas nele. Neste caso, voc<6F> deve usar %sRELOAD PRIVILEGES%s antes de continuar..';
|
$strFlushPrivilegesNote = 'Nota: O phpMyAdmin recebe os privil<69>gios dos usu<73>rio diretamente da tabela de privil<69>gios do MySQL. O conte<74>do destas tabelas pode divergir dos privil<69>gios que o servidor usa se altera<72><61>es manuais forem feitas nele. Neste caso, voc<6F> deve usar %sRELOAD PRIVILEGES%s antes de continuar..';
|
||||||
@@ -340,6 +347,7 @@ $strHasBeenCreated = 'foi criado.';
|
|||||||
$strHaveToShow = 'Deve escolher pelo menos uma coluna para exibir';
|
$strHaveToShow = 'Deve escolher pelo menos uma coluna para exibir';
|
||||||
$strHebrew = 'Hebreu';
|
$strHebrew = 'Hebreu';
|
||||||
$strHelp = 'Ajuda';
|
$strHelp = 'Ajuda';
|
||||||
|
$strHexForBLOB = 'Usar hexadecimal para BLOB';
|
||||||
$strHide = 'Ocultar';
|
$strHide = 'Ocultar';
|
||||||
$strHideShowAll = 'Ocultar/Exibir tudo';
|
$strHideShowAll = 'Ocultar/Exibir tudo';
|
||||||
$strHideShowNoRelation = 'Ocultar/Exibir Tabelas sem relacionamento';
|
$strHideShowNoRelation = 'Ocultar/Exibir Tabelas sem relacionamento';
|
||||||
@@ -364,6 +372,7 @@ $strImportFormat = 'Formato do arquivo importado';
|
|||||||
$strImport = 'Importar';
|
$strImport = 'Importar';
|
||||||
$strImportSuccessfullyFinished = 'Importa<74><61>o finalizada com sucesso, %d consultas executadas.';
|
$strImportSuccessfullyFinished = 'Importa<74><61>o finalizada com sucesso, %d consultas executadas.';
|
||||||
$strIndexes = '<27>ndices';
|
$strIndexes = '<27>ndices';
|
||||||
|
$strIndexesSeemEqual = 'Os seguintes <20>ndices parecem ser id<69>nticos e um deles deve ser removido:';
|
||||||
$strIndexHasBeenDropped = '<27>ndice %s foi eliminado';
|
$strIndexHasBeenDropped = '<27>ndice %s foi eliminado';
|
||||||
$strIndex = '<27>ndice';
|
$strIndex = '<27>ndice';
|
||||||
$strIndexName = 'Nome do <20>ndice:';
|
$strIndexName = 'Nome do <20>ndice:';
|
||||||
@@ -489,6 +498,7 @@ $strMyISAMSortBufferSize = 'Tamanho do buffer de ordena
|
|||||||
$strMySQLCharset = 'Conjunto de caracteres MySQL';
|
$strMySQLCharset = 'Conjunto de caracteres MySQL';
|
||||||
$strMysqlClientVersion = 'Vers<72>o do cliente MySQL';
|
$strMysqlClientVersion = 'Vers<72>o do cliente MySQL';
|
||||||
$strMySQLConnectionCollation = 'Collation de conex<65>o do MySQL'; // Collation nao tem traducao
|
$strMySQLConnectionCollation = 'Collation de conex<65>o do MySQL'; // Collation nao tem traducao
|
||||||
|
$strMysqlLibDiffersServerVersion = 'Sua vers<72>o %s da biblioteca MySQL do PHP difere da vers<72>o %s do seu servidor MySQL. Isso pode causar um comportamento estranho.';
|
||||||
$strMySQLSaid = 'Mensagens do MySQL : ';
|
$strMySQLSaid = 'Mensagens do MySQL : ';
|
||||||
$strMySQLShowProcess = 'Mostrar os Processos';
|
$strMySQLShowProcess = 'Mostrar os Processos';
|
||||||
$strMySQLShowStatus = 'Mostrar informa<6D><61>o de runtime do MySQL';
|
$strMySQLShowStatus = 'Mostrar informa<6D><61>o de runtime do MySQL';
|
||||||
@@ -540,6 +550,7 @@ $strOpenNewWindow = 'Abrir nova janela do phpMyAdmin';
|
|||||||
$strOperations = 'Opera<72><61>es';
|
$strOperations = 'Opera<72><61>es';
|
||||||
$strOperator = 'Operador';
|
$strOperator = 'Operador';
|
||||||
$strOptimizeTable = 'Otimizar tabela';
|
$strOptimizeTable = 'Otimizar tabela';
|
||||||
|
$strOptions = 'Op<4F><70>es';
|
||||||
$strOr = 'Ou';
|
$strOr = 'Ou';
|
||||||
$strOverhead = 'Sobrecarga';
|
$strOverhead = 'Sobrecarga';
|
||||||
$strOverwriteExisting = 'Sobrescrever arquivo(s) existente(s)';
|
$strOverwriteExisting = 'Sobrescrever arquivo(s) existente(s)';
|
||||||
@@ -671,6 +682,8 @@ $strRevokeAndDelete = 'Revogar todos os privil
|
|||||||
$strRevokeMessage = 'Voc<6F> revogou os privil<69>gios para %s';
|
$strRevokeMessage = 'Voc<6F> revogou os privil<69>gios para %s';
|
||||||
$strRevoke = 'Revogar';
|
$strRevoke = 'Revogar';
|
||||||
$strRomanian = 'Rom<6F>no';
|
$strRomanian = 'Rom<6F>no';
|
||||||
|
$strRoutineReturnType = 'Tipo de returno';
|
||||||
|
$strRoutines = 'Rotinas';
|
||||||
$strRowLength = 'Tamanho da coluna';
|
$strRowLength = 'Tamanho da coluna';
|
||||||
$strRows = 'Colunas';
|
$strRows = 'Colunas';
|
||||||
$strRowsFrom = 'colunas come<6D>ando de';
|
$strRowsFrom = 'colunas come<6D>ando de';
|
||||||
@@ -722,6 +735,7 @@ $strServerTabVariables = 'Vari
|
|||||||
$strServerTrafficNotes = '<b>Tr<54>fico do servidor</b>: Essas tabelas mostram as estat<61>sticas do tr<74>fico da rede neste servidor MySQL desde o in<69>cio.';
|
$strServerTrafficNotes = '<b>Tr<54>fico do servidor</b>: Essas tabelas mostram as estat<61>sticas do tr<74>fico da rede neste servidor MySQL desde o in<69>cio.';
|
||||||
$strServerVars = 'Vari<72>veis e configura<72><61>es do servidor';
|
$strServerVars = 'Vari<72>veis e configura<72><61>es do servidor';
|
||||||
$strServerVersion = 'Vers<72>o do Servidor';
|
$strServerVersion = 'Vers<72>o do Servidor';
|
||||||
|
$strSessionStartupErrorGeneral = 'N<>o p<>de iniciar a sess<73>o sem erros, cheque os erros ocorridos nos logs do PHP e/ou do seu servidor web e configure a instala<6C><61>o do PHP corretamente.';
|
||||||
$strSessionValue = 'Valor da sess<73>o';
|
$strSessionValue = 'Valor da sess<73>o';
|
||||||
$strSetEnumVal = 'Se um tipo de campo <20> "enum" ou "set", por favor entre valores usando este formato: \'a\',\'b\',\'c\'...<br />Se voc<6F> for colocar uma barra contr<74>ria ("\") ou aspas simples ("\'") entre os valores, coloque uma barra contr<74>ria antes (por exemplo \'\\\\xyz\' ou \'a\\\'b\').';
|
$strSetEnumVal = 'Se um tipo de campo <20> "enum" ou "set", por favor entre valores usando este formato: \'a\',\'b\',\'c\'...<br />Se voc<6F> for colocar uma barra contr<74>ria ("\") ou aspas simples ("\'") entre os valores, coloque uma barra contr<74>ria antes (por exemplo \'\\\\xyz\' ou \'a\\\'b\').';
|
||||||
$strShowAll = 'Mostrar todos';
|
$strShowAll = 'Mostrar todos';
|
||||||
@@ -969,6 +983,13 @@ $strUpdateProfileMessage = 'A configura
|
|||||||
$strUpdateQuery = 'Atualizar a consulta SQL';
|
$strUpdateQuery = 'Atualizar a consulta SQL';
|
||||||
$strUpdComTab = 'Consulte a documenta<74><61>o sobre como atualizar sua tabela Column_comments';
|
$strUpdComTab = 'Consulte a documenta<74><61>o sobre como atualizar sua tabela Column_comments';
|
||||||
$strUpgrade = 'Voc<6F> deveria atualizar para %s %s ou posterior.';
|
$strUpgrade = 'Voc<6F> deveria atualizar para %s %s ou posterior.';
|
||||||
|
$strUploadErrorCantWrite = 'Falhou ao salvar arquivo no disco.';
|
||||||
|
$strUploadErrorExtension = 'Carregamento do arquivo parado pela exten<65><6E>o.';
|
||||||
|
$strUploadErrorFormSize = 'O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do formul<75>rio HTM.';
|
||||||
|
$strUploadErrorIniSize = 'O arquivo carregado excede o tamanho definido na diretriz upload_max_filesize no php.ini.';
|
||||||
|
$strUploadErrorNoTempDir = 'Pasta tempor<6F>ria n<>o encontrada.';
|
||||||
|
$strUploadErrorPartial = 'Carregamento do arquivo foi apenas parcial.';
|
||||||
|
$strUploadErrorUnknown = 'Erro desconhecido no carregamento do arquivo.';
|
||||||
$strUploadLimit = 'Voc<6F> provavelmente tentou carregar um arquivo muito grande. Veja refer<65>ncias na %sdocumentation%s para burlar esses limites.';
|
$strUploadLimit = 'Voc<6F> provavelmente tentou carregar um arquivo muito grande. Veja refer<65>ncias na %sdocumentation%s para burlar esses limites.';
|
||||||
$strUploadsNotAllowed = 'N<>o <20> permitido subir arquivos neste servidor.';
|
$strUploadsNotAllowed = 'N<>o <20> permitido subir arquivos neste servidor.';
|
||||||
$strUsage = 'Uso';
|
$strUsage = 'Uso';
|
||||||
@@ -998,6 +1019,7 @@ $strViewDumpDB = 'Ver o esquema do Banco de Dados';
|
|||||||
$strViewDump = 'Ver o esquema da tabela';
|
$strViewDump = 'Ver o esquema da tabela';
|
||||||
$strViewHasBeenDropped = 'Vis<69>o %s foi apagada';
|
$strViewHasBeenDropped = 'Vis<69>o %s foi apagada';
|
||||||
$strViewMaxExactCount = 'Essa vis<69>o tem mais que %s linhas. Veja refer<65>ncias na %sdocumentation%s.';
|
$strViewMaxExactCount = 'Essa vis<69>o tem mais que %s linhas. Veja refer<65>ncias na %sdocumentation%s.';
|
||||||
|
$strViewName = 'Nome da VIS<49>O';
|
||||||
$strView = 'Vis<69>o';
|
$strView = 'Vis<69>o';
|
||||||
|
|
||||||
$strWebServerUploadDirectoryError = 'O diret<65>rio que voc<6F> especificou para subir arquivos n<>o foi encontrado.';
|
$strWebServerUploadDirectoryError = 'O diret<65>rio que voc<6F> especificou para subir arquivos n<>o foi encontrado.';
|
||||||
@@ -1018,32 +1040,10 @@ $strZeroRemovesTheLimit = 'Nota: Ajustar essa op
|
|||||||
$strZip = '"compactado com zip"';
|
$strZip = '"compactado com zip"';
|
||||||
|
|
||||||
// To translate:
|
// To translate:
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
|
||||||
|
|
||||||
$strFieldInsertFromFileTempDirNotExists = 'Error moving the uploaded file, see FAQ 1.11'; //to translate
|
$strControluserFailed = 'Conex<65>o para controle do usu<73>rio como definido nas configura<72><61>es falhou.';
|
||||||
$strFiles = 'Files'; //to translate
|
|
||||||
|
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
|
||||||
|
|
||||||
$strIndexesSeemEqual = 'The following indexes appear to be equal and one of them should be removed:'; //to translate
|
|
||||||
|
|
||||||
$strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'; //to translate
|
|
||||||
|
|
||||||
$strOptions = 'Options'; //to translate
|
|
||||||
|
|
||||||
$strRoutineReturnType = 'Return type'; //to translate
|
|
||||||
$strRoutines = 'Routines'; //to translate
|
|
||||||
|
|
||||||
$strSessionStartupErrorGeneral = 'Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.'; //to translate
|
|
||||||
|
|
||||||
$strUploadErrorCantWrite = 'Failed to write file to disk.'; //to translate
|
|
||||||
$strUploadErrorExtension = 'File upload stopped by extension.'; //to translate
|
|
||||||
$strUploadErrorFormSize = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.'; //to translate
|
|
||||||
$strUploadErrorIniSize = 'The uploaded file exceeds the upload_max_filesize directive in php.ini.'; //to translate
|
|
||||||
$strUploadErrorNoTempDir = 'Missing a temporary folder.'; //to translate
|
|
||||||
$strUploadErrorPartial = 'The uploaded file was only partially uploaded.'; //to translate
|
|
||||||
$strUploadErrorUnknown = 'Unknown error in file upload.'; //to translate
|
|
||||||
|
|
||||||
$strViewName = 'VIEW name'; //to translate
|
|
||||||
|
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* translated by:
|
* translated by:
|
||||||
Airon Luis Pereira <aironp@pop.com.br>
|
Airon Luis Pereira <airon.pereira@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$charset = 'utf-8';
|
$charset = 'utf-8';
|
||||||
@@ -26,6 +26,11 @@ $datefmt = '%B %d, %Y as %I:%M %p';
|
|||||||
|
|
||||||
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
|
$timespanfmt = '%s dias, %s horas, %s minutos e %s segundos';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$strAbortedClients = 'Abortado';
|
$strAbortedClients = 'Abortado';
|
||||||
$strAccessDenied = 'Acesso negado';
|
$strAccessDenied = 'Acesso negado';
|
||||||
$strAccessDeniedCreateConfig = 'A provável razão para isso é que você não criou o arquivo de configuração. Você deve usar o %1$ssetup script%2$s para criar um.';
|
$strAccessDeniedCreateConfig = 'A provável razão para isso é que você não criou o arquivo de configuração. Você deve usar o %1$ssetup script%2$s para criar um.';
|
||||||
@@ -245,7 +250,7 @@ $strDoAQuery = 'Faça uma "consulta por exemplo" (coringa: "%")';
|
|||||||
$strDocSQL = 'DocSQL';
|
$strDocSQL = 'DocSQL';
|
||||||
$strDocSQLOptions = 'Opções DocSQL';
|
$strDocSQLOptions = 'Opções DocSQL';
|
||||||
$strDocu = 'Documentação';
|
$strDocu = 'Documentação';
|
||||||
$strDoYouReally = 'Confirmar: ';
|
$strDoYouReally = 'Confirmar';
|
||||||
$strDropDatabaseStrongWarning = 'Você está prestes à DESTRUIR completamente o Banco de Dados!';
|
$strDropDatabaseStrongWarning = 'Você está prestes à DESTRUIR completamente o Banco de Dados!';
|
||||||
$strDrop = 'Eliminar';
|
$strDrop = 'Eliminar';
|
||||||
$strDropUsersDb = 'Eliminar o Banco de Dados que possui o mesmo nome dos usuários.';
|
$strDropUsersDb = 'Eliminar o Banco de Dados que possui o mesmo nome dos usuários.';
|
||||||
@@ -258,7 +263,7 @@ $strEdit = 'Editar';
|
|||||||
$strEditPDFPages = 'Editar Páginas PDF';
|
$strEditPDFPages = 'Editar Páginas PDF';
|
||||||
$strEditPrivileges = 'Editar Privilégios';
|
$strEditPrivileges = 'Editar Privilégios';
|
||||||
$strEffective = 'Efetivo';
|
$strEffective = 'Efetivo';
|
||||||
$strEmpty = 'Limpa';
|
$strEmpty = 'Limpar';
|
||||||
$strEmptyResultSet = 'MySQL retornou um conjunto vazio (ex. zero registros).';
|
$strEmptyResultSet = 'MySQL retornou um conjunto vazio (ex. zero registros).';
|
||||||
$strEnabled = 'Habilitado';
|
$strEnabled = 'Habilitado';
|
||||||
$strEncloseInTransaction = 'Encapsular exportação numa transação';
|
$strEncloseInTransaction = 'Encapsular exportação numa transação';
|
||||||
@@ -267,7 +272,7 @@ $strEnd = 'Fim';
|
|||||||
$strEndRaw = 'FIM CRU';
|
$strEndRaw = 'FIM CRU';
|
||||||
$strEngineAvailable = '%s está disponível neste servidor MySQL.';
|
$strEngineAvailable = '%s está disponível neste servidor MySQL.';
|
||||||
$strEngineDisabled = '%s está desabilitado neste servidor MySQL.';
|
$strEngineDisabled = '%s está desabilitado neste servidor MySQL.';
|
||||||
$strEngines = 'Engines';
|
$strEngines = 'Engines'; //sem traducao
|
||||||
$strEngineUnsupported = 'Esse servidor MySQL não suporta o stored engine %s.';
|
$strEngineUnsupported = 'Esse servidor MySQL não suporta o stored engine %s.';
|
||||||
$strEnglish = 'Inglês';
|
$strEnglish = 'Inglês';
|
||||||
$strEnglishPrivileges = ' Nota: nomes de privilégios do MySQL são expressos em inglês ';
|
$strEnglishPrivileges = ' Nota: nomes de privilégios do MySQL são expressos em inglês ';
|
||||||
@@ -292,6 +297,7 @@ $strExtra = 'Extra';
|
|||||||
$strFailedAttempts = 'Tentativas falharam';
|
$strFailedAttempts = 'Tentativas falharam';
|
||||||
$strField = 'Campo';
|
$strField = 'Campo';
|
||||||
$strFieldHasBeenDropped = 'Campo %s foi deletado';
|
$strFieldHasBeenDropped = 'Campo %s foi deletado';
|
||||||
|
$strFieldInsertFromFileTempDirNotExists = 'Erro ao mover o arquivo carregado, veja FAQ 1.11';
|
||||||
$strFields = 'Campos';
|
$strFields = 'Campos';
|
||||||
$strFieldsEmpty = ' O campo count esta vazio! ';
|
$strFieldsEmpty = ' O campo count esta vazio! ';
|
||||||
$strFieldsEnclosedBy = 'Campos delimitados por';
|
$strFieldsEnclosedBy = 'Campos delimitados por';
|
||||||
@@ -305,6 +311,7 @@ $strFileNameTemplateDescriptionServer = 'nome do servidor';
|
|||||||
$strFileNameTemplateDescriptionTable = 'nome da tabela';
|
$strFileNameTemplateDescriptionTable = 'nome da tabela';
|
||||||
$strFileNameTemplate = 'Nome do arquivo do modelo';
|
$strFileNameTemplate = 'Nome do arquivo do modelo';
|
||||||
$strFileNameTemplateRemember = 'lembrar modelo';
|
$strFileNameTemplateRemember = 'lembrar modelo';
|
||||||
|
$strFiles = 'Arquivos';
|
||||||
$strFileToImport = 'Arquivo para importar';
|
$strFileToImport = 'Arquivo para importar';
|
||||||
$strFixed = 'fixo';
|
$strFixed = 'fixo';
|
||||||
$strFlushPrivilegesNote = 'Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos privilégios que o servidor usa se alterações manuais forem feitas nele. Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar..';
|
$strFlushPrivilegesNote = 'Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos privilégios que o servidor usa se alterações manuais forem feitas nele. Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar..';
|
||||||
@@ -341,6 +348,7 @@ $strHasBeenCreated = 'foi criado.';
|
|||||||
$strHaveToShow = 'Deve escolher pelo menos uma coluna para exibir';
|
$strHaveToShow = 'Deve escolher pelo menos uma coluna para exibir';
|
||||||
$strHebrew = 'Hebreu';
|
$strHebrew = 'Hebreu';
|
||||||
$strHelp = 'Ajuda';
|
$strHelp = 'Ajuda';
|
||||||
|
$strHexForBLOB = 'Usar hexadecimal para BLOB';
|
||||||
$strHide = 'Ocultar';
|
$strHide = 'Ocultar';
|
||||||
$strHideShowAll = 'Ocultar/Exibir tudo';
|
$strHideShowAll = 'Ocultar/Exibir tudo';
|
||||||
$strHideShowNoRelation = 'Ocultar/Exibir Tabelas sem relacionamento';
|
$strHideShowNoRelation = 'Ocultar/Exibir Tabelas sem relacionamento';
|
||||||
@@ -365,6 +373,7 @@ $strImportFormat = 'Formato do arquivo importado';
|
|||||||
$strImport = 'Importar';
|
$strImport = 'Importar';
|
||||||
$strImportSuccessfullyFinished = 'Importação finalizada com sucesso, %d consultas executadas.';
|
$strImportSuccessfullyFinished = 'Importação finalizada com sucesso, %d consultas executadas.';
|
||||||
$strIndexes = 'Índices';
|
$strIndexes = 'Índices';
|
||||||
|
$strIndexesSeemEqual = 'Os seguintes índices parecem ser idênticos e um deles deve ser removido:';
|
||||||
$strIndexHasBeenDropped = 'Índice %s foi eliminado';
|
$strIndexHasBeenDropped = 'Índice %s foi eliminado';
|
||||||
$strIndex = 'Índice';
|
$strIndex = 'Índice';
|
||||||
$strIndexName = 'Nome do índice:';
|
$strIndexName = 'Nome do índice:';
|
||||||
@@ -490,6 +499,7 @@ $strMyISAMSortBufferSize = 'Tamanho do buffer de ordenação';
|
|||||||
$strMySQLCharset = 'Conjunto de caracteres MySQL';
|
$strMySQLCharset = 'Conjunto de caracteres MySQL';
|
||||||
$strMysqlClientVersion = 'Versão do cliente MySQL';
|
$strMysqlClientVersion = 'Versão do cliente MySQL';
|
||||||
$strMySQLConnectionCollation = 'Collation de conexão do MySQL'; // Collation nao tem traducao
|
$strMySQLConnectionCollation = 'Collation de conexão do MySQL'; // Collation nao tem traducao
|
||||||
|
$strMysqlLibDiffersServerVersion = 'Sua versão %s da biblioteca MySQL do PHP difere da versão %s do seu servidor MySQL. Isso pode causar um comportamento estranho.';
|
||||||
$strMySQLSaid = 'Mensagens do MySQL : ';
|
$strMySQLSaid = 'Mensagens do MySQL : ';
|
||||||
$strMySQLShowProcess = 'Mostrar os Processos';
|
$strMySQLShowProcess = 'Mostrar os Processos';
|
||||||
$strMySQLShowStatus = 'Mostrar informação de runtime do MySQL';
|
$strMySQLShowStatus = 'Mostrar informação de runtime do MySQL';
|
||||||
@@ -541,6 +551,7 @@ $strOpenNewWindow = 'Abrir nova janela do phpMyAdmin';
|
|||||||
$strOperations = 'Operações';
|
$strOperations = 'Operações';
|
||||||
$strOperator = 'Operador';
|
$strOperator = 'Operador';
|
||||||
$strOptimizeTable = 'Otimizar tabela';
|
$strOptimizeTable = 'Otimizar tabela';
|
||||||
|
$strOptions = 'Opções';
|
||||||
$strOr = 'Ou';
|
$strOr = 'Ou';
|
||||||
$strOverhead = 'Sobrecarga';
|
$strOverhead = 'Sobrecarga';
|
||||||
$strOverwriteExisting = 'Sobrescrever arquivo(s) existente(s)';
|
$strOverwriteExisting = 'Sobrescrever arquivo(s) existente(s)';
|
||||||
@@ -672,6 +683,8 @@ $strRevokeAndDelete = 'Revogar todos os privilégios ativos dos usuarios e depoi
|
|||||||
$strRevokeMessage = 'Você revogou os privilégios para %s';
|
$strRevokeMessage = 'Você revogou os privilégios para %s';
|
||||||
$strRevoke = 'Revogar';
|
$strRevoke = 'Revogar';
|
||||||
$strRomanian = 'Romêno';
|
$strRomanian = 'Romêno';
|
||||||
|
$strRoutineReturnType = 'Tipo de returno';
|
||||||
|
$strRoutines = 'Rotinas';
|
||||||
$strRowLength = 'Tamanho da coluna';
|
$strRowLength = 'Tamanho da coluna';
|
||||||
$strRows = 'Colunas';
|
$strRows = 'Colunas';
|
||||||
$strRowsFrom = 'colunas começando de';
|
$strRowsFrom = 'colunas começando de';
|
||||||
@@ -723,6 +736,7 @@ $strServerTabVariables = 'Variáveis';
|
|||||||
$strServerTrafficNotes = '<b>Tráfico do servidor</b>: Essas tabelas mostram as estatísticas do tráfico da rede neste servidor MySQL desde o início.';
|
$strServerTrafficNotes = '<b>Tráfico do servidor</b>: Essas tabelas mostram as estatísticas do tráfico da rede neste servidor MySQL desde o início.';
|
||||||
$strServerVars = 'Variáveis e configurações do servidor';
|
$strServerVars = 'Variáveis e configurações do servidor';
|
||||||
$strServerVersion = 'Versão do Servidor';
|
$strServerVersion = 'Versão do Servidor';
|
||||||
|
$strSessionStartupErrorGeneral = 'Não pôde iniciar a sessão sem erros, cheque os erros ocorridos nos logs do PHP e/ou do seu servidor web e configure a instalação do PHP corretamente.';
|
||||||
$strSessionValue = 'Valor da sessão';
|
$strSessionValue = 'Valor da sessão';
|
||||||
$strSetEnumVal = 'Se um tipo de campo é "enum" ou "set", por favor entre valores usando este formato: \'a\',\'b\',\'c\'...<br />Se você for colocar uma barra contrária ("\") ou aspas simples ("\'") entre os valores, coloque uma barra contrária antes (por exemplo \'\\\\xyz\' ou \'a\\\'b\').';
|
$strSetEnumVal = 'Se um tipo de campo é "enum" ou "set", por favor entre valores usando este formato: \'a\',\'b\',\'c\'...<br />Se você for colocar uma barra contrária ("\") ou aspas simples ("\'") entre os valores, coloque uma barra contrária antes (por exemplo \'\\\\xyz\' ou \'a\\\'b\').';
|
||||||
$strShowAll = 'Mostrar todos';
|
$strShowAll = 'Mostrar todos';
|
||||||
@@ -970,6 +984,13 @@ $strUpdateProfileMessage = 'A configuração foi atualizada.';
|
|||||||
$strUpdateQuery = 'Atualizar a consulta SQL';
|
$strUpdateQuery = 'Atualizar a consulta SQL';
|
||||||
$strUpdComTab = 'Consulte a documentação sobre como atualizar sua tabela Column_comments';
|
$strUpdComTab = 'Consulte a documentação sobre como atualizar sua tabela Column_comments';
|
||||||
$strUpgrade = 'Você deveria atualizar para %s %s ou posterior.';
|
$strUpgrade = 'Você deveria atualizar para %s %s ou posterior.';
|
||||||
|
$strUploadErrorCantWrite = 'Falhou ao salvar arquivo no disco.';
|
||||||
|
$strUploadErrorExtension = 'Carregamento do arquivo parado pela extenção.';
|
||||||
|
$strUploadErrorFormSize = 'O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do formulário HTM.';
|
||||||
|
$strUploadErrorIniSize = 'O arquivo carregado excede o tamanho definido na diretriz upload_max_filesize no php.ini.';
|
||||||
|
$strUploadErrorNoTempDir = 'Pasta temporária não encontrada.';
|
||||||
|
$strUploadErrorPartial = 'Carregamento do arquivo foi apenas parcial.';
|
||||||
|
$strUploadErrorUnknown = 'Erro desconhecido no carregamento do arquivo.';
|
||||||
$strUploadLimit = 'Você provavelmente tentou carregar um arquivo muito grande. Veja referências na %sdocumentation%s para burlar esses limites.';
|
$strUploadLimit = 'Você provavelmente tentou carregar um arquivo muito grande. Veja referências na %sdocumentation%s para burlar esses limites.';
|
||||||
$strUploadsNotAllowed = 'Não é permitido subir arquivos neste servidor.';
|
$strUploadsNotAllowed = 'Não é permitido subir arquivos neste servidor.';
|
||||||
$strUsage = 'Uso';
|
$strUsage = 'Uso';
|
||||||
@@ -999,6 +1020,7 @@ $strViewDumpDB = 'Ver o esquema do Banco de Dados';
|
|||||||
$strViewDump = 'Ver o esquema da tabela';
|
$strViewDump = 'Ver o esquema da tabela';
|
||||||
$strViewHasBeenDropped = 'Visão %s foi apagada';
|
$strViewHasBeenDropped = 'Visão %s foi apagada';
|
||||||
$strViewMaxExactCount = 'Essa visão tem mais que %s linhas. Veja referências na %sdocumentation%s.';
|
$strViewMaxExactCount = 'Essa visão tem mais que %s linhas. Veja referências na %sdocumentation%s.';
|
||||||
|
$strViewName = 'Nome da VISÃO';
|
||||||
$strView = 'Visão';
|
$strView = 'Visão';
|
||||||
|
|
||||||
$strWebServerUploadDirectoryError = 'O diretório que você especificou para subir arquivos não foi encontrado.';
|
$strWebServerUploadDirectoryError = 'O diretório que você especificou para subir arquivos não foi encontrado.';
|
||||||
@@ -1019,32 +1041,10 @@ $strZeroRemovesTheLimit = 'Nota: Ajustar essa opção para 0 (zero) remove os li
|
|||||||
$strZip = '"compactado com zip"';
|
$strZip = '"compactado com zip"';
|
||||||
|
|
||||||
// To translate:
|
// To translate:
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
|
||||||
|
|
||||||
$strFieldInsertFromFileTempDirNotExists = 'Error moving the uploaded file, see FAQ 1.11'; //to translate
|
$strControluserFailed = 'Conexão para controle do usuário como definido nas configurações falhou.';
|
||||||
$strFiles = 'Files'; //to translate
|
|
||||||
|
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
|
||||||
|
|
||||||
$strIndexesSeemEqual = 'The following indexes appear to be equal and one of them should be removed:'; //to translate
|
|
||||||
|
|
||||||
$strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'; //to translate
|
|
||||||
|
|
||||||
$strOptions = 'Options'; //to translate
|
|
||||||
|
|
||||||
$strRoutineReturnType = 'Return type'; //to translate
|
|
||||||
$strRoutines = 'Routines'; //to translate
|
|
||||||
|
|
||||||
$strSessionStartupErrorGeneral = 'Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.'; //to translate
|
|
||||||
|
|
||||||
$strUploadErrorCantWrite = 'Failed to write file to disk.'; //to translate
|
|
||||||
$strUploadErrorExtension = 'File upload stopped by extension.'; //to translate
|
|
||||||
$strUploadErrorFormSize = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.'; //to translate
|
|
||||||
$strUploadErrorIniSize = 'The uploaded file exceeds the upload_max_filesize directive in php.ini.'; //to translate
|
|
||||||
$strUploadErrorNoTempDir = 'Missing a temporary folder.'; //to translate
|
|
||||||
$strUploadErrorPartial = 'The uploaded file was only partially uploaded.'; //to translate
|
|
||||||
$strUploadErrorUnknown = 'Unknown error in file upload.'; //to translate
|
|
||||||
|
|
||||||
$strViewName = 'VIEW name'; //to translate
|
|
||||||
|
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1028,4 +1028,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1029,4 +1029,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1057,4 +1057,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1058,4 +1058,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1036,4 +1036,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1037,4 +1037,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1030,4 +1030,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1031,4 +1031,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1030,4 +1030,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -113,7 +113,7 @@ $strCanNotLoadExportPlugins = 'Nepoda
|
|||||||
$strCanNotLoadImportPlugins = 'Nepoda<64>ilo se nahr<68>t pluginy pro import, zkontrolujte pros<6F>m va<76><61> instalaci!';
|
$strCanNotLoadImportPlugins = 'Nepoda<64>ilo se nahr<68>t pluginy pro import, zkontrolujte pros<6F>m va<76><61> instalaci!';
|
||||||
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
||||||
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
||||||
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> PHP tak, aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminu.';
|
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> PHP tak, aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminovi.';
|
||||||
$strCantRenameIdxToPrimary = 'Index nem<65><6D>ete p<>ejmenovat na „PRIMARY“!';
|
$strCantRenameIdxToPrimary = 'Index nem<65><6D>ete p<>ejmenovat na „PRIMARY“!';
|
||||||
$strCantUseRecodeIconv = 'Nelze pou<6F><75>t funkce iconv ani libiconv ani recode_string, p<>esto<74>e roz<6F><7A><EFBFBD>en<65> jsou nahr<68>na. Zkontrolujte nastaven<65> PHP.';
|
$strCantUseRecodeIconv = 'Nelze pou<6F><75>t funkce iconv ani libiconv ani recode_string, p<>esto<74>e roz<6F><7A><EFBFBD>en<65> jsou nahr<68>na. Zkontrolujte nastaven<65> PHP.';
|
||||||
$strCardinality = 'Mohutnost';
|
$strCardinality = 'Mohutnost';
|
||||||
@@ -150,7 +150,7 @@ $strCompatibleHashing = 'Kompatibiln
|
|||||||
$strCompleteInserts = '<27>pln<6C> inserty';
|
$strCompleteInserts = '<27>pln<6C> inserty';
|
||||||
$strCompression = 'Komprese';
|
$strCompression = 'Komprese';
|
||||||
$strCompressionWillBeDetected = 'Komprimace importovan<61>ho souboru bude automaticky rozpozn<7A>na. Podporov<6F>ny jsou: %s';
|
$strCompressionWillBeDetected = 'Komprimace importovan<61>ho souboru bude automaticky rozpozn<7A>na. Podporov<6F>ny jsou: %s';
|
||||||
$strConfigDefaultFileError = 'Nepoda<64>ilo se nahr<68>t v<>choz<6F> konfiguraci ze soubouru: "%1$s"';
|
$strConfigDefaultFileError = 'Nepoda<64>ilo se nahr<68>t v<>choz<6F> konfiguraci ze souboru: "%1$s"';
|
||||||
$strConfigFileError = 'phpMyAdmin nemohl na<6E><61>st konfigura<72>n<EFBFBD> soubor!<br />Tato chyba m<><6D>e nastat, pokud v n<>m PHP najde chybu nebo nem<65><6D>e tento soubor naj<61>t.<br />Po kliknut<75> na n<>sleduj<75>c<EFBFBD> odkaz se PHP pokus<75> p<><70>mo interpretovat tento soubor a zobraz<61> informace o chyb<79>, ke kter<65> do<64>lo. Pak opravte tuto chybu (nej<65>ast<73>ji se jedn<64> o chyb<79>j<EFBFBD>c<EFBFBD> st<73>edn<64>k).<br />Pokud z<>sk<73>te pr<70>zdnou str<74>nku, v<>echno je v po<70><6F>dku.';
|
$strConfigFileError = 'phpMyAdmin nemohl na<6E><61>st konfigura<72>n<EFBFBD> soubor!<br />Tato chyba m<><6D>e nastat, pokud v n<>m PHP najde chybu nebo nem<65><6D>e tento soubor naj<61>t.<br />Po kliknut<75> na n<>sleduj<75>c<EFBFBD> odkaz se PHP pokus<75> p<><70>mo interpretovat tento soubor a zobraz<61> informace o chyb<79>, ke kter<65> do<64>lo. Pak opravte tuto chybu (nej<65>ast<73>ji se jedn<64> o chyb<79>j<EFBFBD>c<EFBFBD> st<73>edn<64>k).<br />Pokud z<>sk<73>te pr<70>zdnou str<74>nku, v<>echno je v po<70><6F>dku.';
|
||||||
$strConfigureTableCoord = 'Pros<6F>m, nastavte sou<6F>adnice pro tabulku %s';
|
$strConfigureTableCoord = 'Pros<6F>m, nastavte sou<6F>adnice pro tabulku %s';
|
||||||
$strConnectionError = 'Nepoda<64>ilo se p<>ipojit: chybn<62> nastaven<65>.';
|
$strConnectionError = 'Nepoda<64>ilo se p<>ipojit: chybn<62> nastaven<65>.';
|
||||||
@@ -203,7 +203,7 @@ $strDatabasesStats = 'Statistiky datab
|
|||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Datov<6F> slovn<76>k';
|
$strDataDict = 'Datov<6F> slovn<76>k';
|
||||||
$strDataOnly = ' Jen data';
|
$strDataOnly = ' Jen data';
|
||||||
$strDataPages = 'Str<74>nek obshahuj<EFBFBD>c<EFBFBD>ch data';
|
$strDataPages = 'Str<74>nek obsahuj<75>c<EFBFBD>ch data';
|
||||||
$strDBComment = 'Koment<6E><74> k datab<61>zi: ';
|
$strDBComment = 'Koment<6E><74> k datab<61>zi: ';
|
||||||
$strDBCopy = 'Zkop<6F>rovat datab<61>zi na';
|
$strDBCopy = 'Zkop<6F>rovat datab<61>zi na';
|
||||||
$strDbIsEmpty = 'Datab<61>ze se zd<7A> b<>t pr<70>zdn<64>!';
|
$strDbIsEmpty = 'Datab<61>ze se zd<7A> b<>t pr<70>zdn<64>!';
|
||||||
@@ -276,6 +276,7 @@ $strErrorSaveTable = 'Chyba p
|
|||||||
$strEscapeWildcards = 'Z<>stupn<70> znaky _ a % by m<>ly b<>t escapov<6F>ny pomoc<6F> \, pokud je chcete pou<6F><75>t jako znak';
|
$strEscapeWildcards = 'Z<>stupn<70> znaky _ a % by m<>ly b<>t escapov<6F>ny pomoc<6F> \, pokud je chcete pou<6F><75>t jako znak';
|
||||||
$strEsperanto = 'Esperanto';
|
$strEsperanto = 'Esperanto';
|
||||||
$strEstonian = 'Eston<6F>tina';
|
$strEstonian = 'Eston<6F>tina';
|
||||||
|
$strEvent = 'Ud<55>lost';
|
||||||
$strExcelEdition = 'Verze Excelu';
|
$strExcelEdition = 'Verze Excelu';
|
||||||
$strExecuteBookmarked = 'Spustit obl<62>ben<65> dotaz';
|
$strExecuteBookmarked = 'Spustit obl<62>ben<65> dotaz';
|
||||||
$strExplain = 'Vysv<73>tlit dotaz';
|
$strExplain = 'Vysv<73>tlit dotaz';
|
||||||
@@ -287,7 +288,7 @@ $strExtra = 'Extra';
|
|||||||
|
|
||||||
$strFailedAttempts = 'Nepoveden<65>ch pokus<75>';
|
$strFailedAttempts = 'Nepoveden<65>ch pokus<75>';
|
||||||
$strFieldHasBeenDropped = 'Sloupec %s byl odstran<61>n';
|
$strFieldHasBeenDropped = 'Sloupec %s byl odstran<61>n';
|
||||||
$strFieldInsertFromFileTempDirNotExists = 'Chyba p<>i p<>ejmenov<6F>n<EFBFBD> nahr<EFBFBD>t<EFBFBD>ho soubory, viz FAQ 1.11';
|
$strFieldInsertFromFileTempDirNotExists = 'Chyba p<>i p<>ejmenov<6F>n<EFBFBD> nahran<EFBFBD>ho soubory, viz FAQ 1.11';
|
||||||
$strFieldsEmpty = ' Nebyl zad<61>n po<70>et sloupc<70>! ';
|
$strFieldsEmpty = ' Nebyl zad<61>n po<70>et sloupc<70>! ';
|
||||||
$strFieldsEnclosedBy = 'N<>zvy sloupc<70> uzav<61>en<65>';
|
$strFieldsEnclosedBy = 'N<>zvy sloupc<70> uzav<61>en<65>';
|
||||||
$strFieldsEscapedBy = 'N<>zvy sloupc<70> escapov<6F>ny';
|
$strFieldsEscapedBy = 'N<>zvy sloupc<70> escapov<6F>ny';
|
||||||
@@ -305,7 +306,7 @@ $strFileNameTemplate = 'Vzor pro jm
|
|||||||
$strFiles = 'Soubory';
|
$strFiles = 'Soubory';
|
||||||
$strFileToImport = 'Soubor pro importov<6F>n<EFBFBD>';
|
$strFileToImport = 'Soubor pro importov<6F>n<EFBFBD>';
|
||||||
$strFixed = 'pevn<76>';
|
$strFixed = 'pevn<76>';
|
||||||
$strFlushPrivilegesNote = 'Pozn<7A>mka: phpMyAdmin z<>sk<73>v<EFBFBD> opr<70>vn<76>n<EFBFBD> p<><70>mo z tabulek MySQL. Obsah t<>chto tabulek se m<><6D>e li<6C>it od opr<70>vn<76>n<EFBFBD>, kter<65> server pr<70>v<EFBFBD> pou<6F><75>v<EFBFBD>, pokud byly tyto tabulky upravov<6F>ny. V tomto p<><70>pad<61> je vhodn<64> prov<6F>st %sznovuna<EFBFBD>ten<EFBFBD> opr<70>vn<76>n<EFBFBD>%s p<>ed pokra<72>ov<6F>n<EFBFBD>m.';
|
$strFlushPrivilegesNote = 'Pozn<7A>mka: phpMyAdmin z<>sk<73>v<EFBFBD> opr<70>vn<76>n<EFBFBD> p<><70>mo z tabulek MySQL. Obsah t<>chto tabulek se m<><6D>e li<6C>it od opr<70>vn<76>n<EFBFBD>, kter<65> server pr<70>v<EFBFBD> pou<6F><75>v<EFBFBD>, pokud byly tyto tabulky upravov<6F>ny. V tomto p<><70>pad<61> je vhodn<64> prov<6F>st %snov<EFBFBD> na<EFBFBD>ten<EFBFBD> opr<70>vn<76>n<EFBFBD>%s p<>ed pokra<72>ov<6F>n<EFBFBD>m.';
|
||||||
$strFlushQueryCache = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> dotaz<61>';
|
$strFlushQueryCache = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> dotaz<61>';
|
||||||
$strFlushTables = 'Zav<61><76>t v<>echny tabulky';
|
$strFlushTables = 'Zav<61><76>t v<>echny tabulky';
|
||||||
$strFlushTable = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> pro tabulku („FLUSH“)';
|
$strFlushTable = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> pro tabulku („FLUSH“)';
|
||||||
@@ -483,7 +484,7 @@ $strMyISAMMaxSortFileSizeDesc = 'Maxim
|
|||||||
$strMyISAMMaxSortFileSize = 'Maxim<69>ln<6C> velikost do<64>asn<73>ch soubor<6F> pro <20>azen<65>';
|
$strMyISAMMaxSortFileSize = 'Maxim<69>ln<6C> velikost do<64>asn<73>ch soubor<6F> pro <20>azen<65>';
|
||||||
$strMyISAMRecoverOptions = 'Automatick<63> re<72>im obnovy';
|
$strMyISAMRecoverOptions = 'Automatick<63> re<72>im obnovy';
|
||||||
$strMyISAMRecoverOptionsDesc = 'Re<52>im automatick<63> obnovy po<70>kozen<65>ch MyISAM tabulek. Nastavuje se parametrem --myisam-recover p<>i spou<6F>t<EFBFBD>n<EFBFBD> serveru.';
|
$strMyISAMRecoverOptionsDesc = 'Re<52>im automatick<63> obnovy po<70>kozen<65>ch MyISAM tabulek. Nastavuje se parametrem --myisam-recover p<>i spou<6F>t<EFBFBD>n<EFBFBD> serveru.';
|
||||||
$strMyISAMRepairThreadsDesc = 'Pokud je tato hodnota v<>t<EFBFBD><74> ne<6E> 1, indexy v MyISAM tabulk<6C>ch jsou vytv<74><76>eny paralelen<EFBFBD> (ka<6B>d<EFBFBD> index vlastn<74>m threadem) p<>i obnov<6F> nebo <20>azen<65>.';
|
$strMyISAMRepairThreadsDesc = 'Pokud je tato hodnota v<>t<EFBFBD><74> ne<6E> 1, indexy v MyISAM tabulk<6C>ch jsou vytv<74><76>eny paraleln<6C> (ka<6B>d<EFBFBD> index vlastn<74>m threadem) p<>i obnov<6F> nebo <20>azen<65>.';
|
||||||
$strMyISAMRepairThreads = 'Thread<61> pro opravov<6F>n<EFBFBD>';
|
$strMyISAMRepairThreads = 'Thread<61> pro opravov<6F>n<EFBFBD>';
|
||||||
$strMyISAMSortBufferSizeDesc = 'Pam<61><6D>, kter<65> je alokov<6F>na p<>i <20>azen<65> MyISAM index<65> b<>hem jejich vytv<74><76>en<65> nebo opravov<6F>n<EFBFBD>.';
|
$strMyISAMSortBufferSizeDesc = 'Pam<61><6D>, kter<65> je alokov<6F>na p<>i <20>azen<65> MyISAM index<65> b<>hem jejich vytv<74><76>en<65> nebo opravov<6F>n<EFBFBD>.';
|
||||||
$strMyISAMSortBufferSize = 'Velikost pam<61>ti pro <20>azen<65>';
|
$strMyISAMSortBufferSize = 'Velikost pam<61>ti pro <20>azen<65>';
|
||||||
@@ -612,7 +613,7 @@ $strPrivDescMaxUserConnections = 'Omezuje po
|
|||||||
$strPrivDescProcess3 = 'Umo<6D><6F>uje ukon<6F>it procesy jin<69>m u<>ivatel<65>m.';
|
$strPrivDescProcess3 = 'Umo<6D><6F>uje ukon<6F>it procesy jin<69>m u<>ivatel<65>m.';
|
||||||
$strPrivDescProcess4 = 'Umo<6D><6F>uje vid<69>t cel<65> dotazy v seznamu proces<65>.';
|
$strPrivDescProcess4 = 'Umo<6D><6F>uje vid<69>t cel<65> dotazy v seznamu proces<65>.';
|
||||||
$strPrivDescReferences = 'Nem<65> <20><>dn<64> vliv v t<>to verzi MySQL.';
|
$strPrivDescReferences = 'Nem<65> <20><>dn<64> vliv v t<>to verzi MySQL.';
|
||||||
$strPrivDescReload = 'Umo<6D><6F>uje znovuna<6E>ten<EFBFBD> nastaven<65> a vypr<70>zdn<64>n<EFBFBD> vyrovn<76>vac<61>ch pam<61>t<EFBFBD> MySQL serveru.';
|
$strPrivDescReload = 'Umo<6D><6F>uje znovu na<EFBFBD><EFBFBD>st nastaven<65> a vypr<70>zdn<64>n<EFBFBD> vyrovn<76>vac<61>ch pam<61>t<EFBFBD> MySQL serveru.';
|
||||||
$strPrivDescReplClient = 'Umo<6D>n<EFBFBD> u<>ivateli zjistit, kde je hlavn<76> / pomocn<63> server.';
|
$strPrivDescReplClient = 'Umo<6D>n<EFBFBD> u<>ivateli zjistit, kde je hlavn<76> / pomocn<63> server.';
|
||||||
$strPrivDescReplSlave = 'Pot<6F>ebn<62> pro replikaci pomocn<63>ch server<65>.';
|
$strPrivDescReplSlave = 'Pot<6F>ebn<62> pro replikaci pomocn<63>ch server<65>.';
|
||||||
$strPrivDescSelect = 'Umo<6D><6F>uje vyb<79>rat data.';
|
$strPrivDescSelect = 'Umo<6D><6F>uje vyb<79>rat data.';
|
||||||
@@ -623,7 +624,7 @@ $strPrivDescSuper = 'Umo
|
|||||||
$strPrivDescUpdate = 'Umo<6D><6F>uje m<>nit data.';
|
$strPrivDescUpdate = 'Umo<6D><6F>uje m<>nit data.';
|
||||||
$strPrivDescUsage = '<27><>dn<64> opr<70>vn<76>n<EFBFBD>.';
|
$strPrivDescUsage = '<27><>dn<64> opr<70>vn<76>n<EFBFBD>.';
|
||||||
$strPrivileges = 'Opr<70>vn<76>n<EFBFBD>';
|
$strPrivileges = 'Opr<70>vn<76>n<EFBFBD>';
|
||||||
$strPrivilegesReloaded = 'Opr<70>vn<76>n<EFBFBD> byla znovuna<EFBFBD>tena <20>sp<73><70>n<EFBFBD>.';
|
$strPrivilegesReloaded = 'Opr<70>vn<76>n<EFBFBD> byla na<6E>tena <20>sp<73><70>n<EFBFBD>.';
|
||||||
$strProcedures = 'Procedury';
|
$strProcedures = 'Procedury';
|
||||||
$strProcesses = 'Procesy';
|
$strProcesses = 'Procesy';
|
||||||
$strProcesslist = 'Seznam proces<65>';
|
$strProcesslist = 'Seznam proces<65>';
|
||||||
@@ -655,7 +656,7 @@ $strRelationNotWorking = 'N
|
|||||||
$strRelationsForTable = 'RELACE PRO TABULKU';
|
$strRelationsForTable = 'RELACE PRO TABULKU';
|
||||||
$strRelations = 'Relace';
|
$strRelations = 'Relace';
|
||||||
$strRelationView = 'Zobrazit relace';
|
$strRelationView = 'Zobrazit relace';
|
||||||
$strReloadingThePrivileges = 'Znovuna<EFBFBD><EFBFBD>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
$strReloadingThePrivileges = 'Na<EFBFBD><EFBFBD>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
||||||
$strReloadPrivileges = 'Znovu na<6E><61>st opr<70>vn<76>n<EFBFBD>';
|
$strReloadPrivileges = 'Znovu na<6E><61>st opr<70>vn<76>n<EFBFBD>';
|
||||||
$strReload = 'Znovu na<6E><61>st';
|
$strReload = 'Znovu na<6E><61>st';
|
||||||
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
||||||
@@ -668,6 +669,7 @@ $strReplaceTable = 'P
|
|||||||
$strReplication = 'Replikace';
|
$strReplication = 'Replikace';
|
||||||
$strReset = 'P<>vodn<64>';
|
$strReset = 'P<>vodn<64>';
|
||||||
$strResourceLimits = 'Omezen<65> zdroj<6F>';
|
$strResourceLimits = 'Omezen<65> zdroj<6F>';
|
||||||
|
$strRestartInsertion = 'Za<5A><61>t znovu vkl<6B>d<EFBFBD>n<EFBFBD> s %s <20><>dky';
|
||||||
$strReType = 'Heslo znovu';
|
$strReType = 'Heslo znovu';
|
||||||
$strRevokeAndDeleteDescr = 'U<>ivatel<65> budou m<>t opr<70>vn<76>n<EFBFBD> „USAGE“ (pou<6F><75>v<EFBFBD>n<EFBFBD>), dokud nebudou znovu na<6E>tena opr<70>vn<76>n<EFBFBD>.';
|
$strRevokeAndDeleteDescr = 'U<>ivatel<65> budou m<>t opr<70>vn<76>n<EFBFBD> „USAGE“ (pou<6F><75>v<EFBFBD>n<EFBFBD>), dokud nebudou znovu na<6E>tena opr<70>vn<76>n<EFBFBD>.';
|
||||||
$strRevokeAndDelete = 'Odebrat u<>ivatel<65>m ve<76>ker<65> opr<70>vn<76>n<EFBFBD> a pot<6F> je odstranit z tabulek.';
|
$strRevokeAndDelete = 'Odebrat u<>ivatel<65>m ve<76>ker<65> opr<70>vn<76>n<EFBFBD> a pot<6F> je odstranit z tabulek.';
|
||||||
@@ -760,7 +762,7 @@ $strShowStatusHandler_read_firstDescr = 'Po
|
|||||||
$strShowStatusHandler_read_keyDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> <20><>dku vych<63>zej<65>c<EFBFBD> z indexu. Vysok<6F> hodnota znamen<65>, <20>e dotazy spr<70>vn<76> vyu<79><75>vaj<61> indexy.';
|
$strShowStatusHandler_read_keyDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> <20><>dku vych<63>zej<65>c<EFBFBD> z indexu. Vysok<6F> hodnota znamen<65>, <20>e dotazy spr<70>vn<76> vyu<79><75>vaj<61> indexy.';
|
||||||
$strShowStatusHandler_read_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku podle indexu. Tato hodnota se zv<7A>t<EFBFBD>uje pokud prov<6F>d<EFBFBD>te dotaz na indexovan<61> sloupec s omezen<65>m rozsahu nebo prohled<65>v<EFBFBD>te index.';
|
$strShowStatusHandler_read_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku podle indexu. Tato hodnota se zv<7A>t<EFBFBD>uje pokud prov<6F>d<EFBFBD>te dotaz na indexovan<61> sloupec s omezen<65>m rozsahu nebo prohled<65>v<EFBFBD>te index.';
|
||||||
$strShowStatusHandler_read_prevDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> p<>edchoz<6F>ho <20><>dku z indexu. Pou<6F><75>van<61> pro optimalizaci dotaz<61> ORDER BY ... DESC.';
|
$strShowStatusHandler_read_prevDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> p<>edchoz<6F>ho <20><>dku z indexu. Pou<6F><75>van<61> pro optimalizaci dotaz<61> ORDER BY ... DESC.';
|
||||||
$strShowStatusHandler_read_rndDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> konkr<6B>tn<74>ho <20><>dku tabulky. Vysok<6F> hodnota znamen<65>, <20>e prov<6F>d<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> <20>azen<65> v<>sledk<64>. Pravd<76>podobn<62> pou<6F><75>v<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> prohl<68><6C>en<65> cel<65> tabulky nebo pou<6F><75>v<EFBFBD>te spojen<65> tabulek, kter<65> nevyu<79><75>vaj<61> index<65>.';
|
$strShowStatusHandler_read_rndDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> konkr<6B>tn<74>ho <20><>dku tabulky. Vysok<6F> hodnota znamen<65>, <20>e prov<6F>d<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> <20>azen<65> v<>sledk<64>. Pravd<76>podobn<62> pou<6F><75>v<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> prohl<68><6C>en<65> cel<65> tabulky nebo pou<6F><75>v<EFBFBD>te spojen<65> tabulek, kter<65> nevyu<79><75>vaj<61> index<65>.';
|
||||||
$strShowStatusHandler_read_rnd_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku ze souboru. Tato hodnota je vysok<6F> pokud dotazy proch<63>zej<65> cel<65> tabulky, pravd<76>podobn<62> tedy nemaj<61> vhodn<64> indexy.';
|
$strShowStatusHandler_read_rnd_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku ze souboru. Tato hodnota je vysok<6F> pokud dotazy proch<63>zej<65> cel<65> tabulky, pravd<76>podobn<62> tedy nemaj<61> vhodn<64> indexy.';
|
||||||
$strShowStatusHandler_rollbackDescr = 'Po<50>et intern<72>ch p<><70>kaz<61> ROLLBACK.';
|
$strShowStatusHandler_rollbackDescr = 'Po<50>et intern<72>ch p<><70>kaz<61> ROLLBACK.';
|
||||||
$strShowStatusHandler_updateDescr = 'Po<50>et po<70>adavk<76> na aktualizaci <20><>dku.';
|
$strShowStatusHandler_updateDescr = 'Po<50>et po<70>adavk<76> na aktualizaci <20><>dku.';
|
||||||
@@ -783,8 +785,8 @@ $strShowStatusInnodb_data_pending_fsyncsDescr = 'Po
|
|||||||
$strShowStatusInnodb_data_pending_readsDescr = 'Po<50>et nevy<76><79>zen<65>ch <20>ten<65>.';
|
$strShowStatusInnodb_data_pending_readsDescr = 'Po<50>et nevy<76><79>zen<65>ch <20>ten<65>.';
|
||||||
$strShowStatusInnodb_data_pending_writesDescr = 'Po<50>et nevy<76><79>zen<65>ch z<>pis<69>.';
|
$strShowStatusInnodb_data_pending_writesDescr = 'Po<50>et nevy<76><79>zen<65>ch z<>pis<69>.';
|
||||||
$strShowStatusInnodb_data_readDescr = 'Velikost p<>e<EFBFBD>ten<65>ch dat, v bajtech.';
|
$strShowStatusInnodb_data_readDescr = 'Velikost p<>e<EFBFBD>ten<65>ch dat, v bajtech.';
|
||||||
$strShowStatusInnodb_data_readsDescr = 'Po<50>et proveden<65>ch <20>ten<65> dat.';
|
$strShowStatusInnodb_data_readsDescr = 'Po<50>et proveden<65>ch <20>ten<65> dat.';
|
||||||
$strShowStatusInnodb_data_writesDescr = 'Po<50>et proveden<65>ch z<>pis<69> dat.';
|
$strShowStatusInnodb_data_writesDescr = 'Po<50>et proveden<65>ch z<>pis<69> dat.';
|
||||||
$strShowStatusInnodb_data_writtenDescr = 'Velikost zapsan<61>ch dat, v bajtech.';
|
$strShowStatusInnodb_data_writtenDescr = 'Velikost zapsan<61>ch dat, v bajtech.';
|
||||||
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
||||||
$strShowStatusInnodb_dblwr_writesDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
$strShowStatusInnodb_dblwr_writesDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
||||||
@@ -804,18 +806,18 @@ $strShowStatusInnodb_row_lock_time_avgDescr = 'Pr
|
|||||||
$strShowStatusInnodb_row_lock_timeDescr = 'Celkov<6F> <20>as str<74>ven<65> <20>ek<65>n<EFBFBD>m na z<>mek <20><>dku, v milisekund<6E>ch.';
|
$strShowStatusInnodb_row_lock_timeDescr = 'Celkov<6F> <20>as str<74>ven<65> <20>ek<65>n<EFBFBD>m na z<>mek <20><>dku, v milisekund<6E>ch.';
|
||||||
$strShowStatusInnodb_row_lock_time_maxDescr = 'Maxim<69>ln<6C> <20>as pot<6F>ebn<62> pro z<>sk<73>n<EFBFBD> z<>mku <20><>dku, v milisekund<6E>ch.';
|
$strShowStatusInnodb_row_lock_time_maxDescr = 'Maxim<69>ln<6C> <20>as pot<6F>ebn<62> pro z<>sk<73>n<EFBFBD> z<>mku <20><>dku, v milisekund<6E>ch.';
|
||||||
$strShowStatusInnodb_row_lock_waitsDescr = 'Kolikr<6B>t se muselo <20>ekat na z<>mek <20><>dku.';
|
$strShowStatusInnodb_row_lock_waitsDescr = 'Kolikr<6B>t se muselo <20>ekat na z<>mek <20><>dku.';
|
||||||
$strShowStatusInnodb_rows_deletedDescr = 'Po<50>et <20><>dk<64> ostran<61>n<EFBFBD>ch z InnoDB tabulek.';
|
$strShowStatusInnodb_rows_deletedDescr = 'Po<50>et <20><>dk<64> odstran<EFBFBD>n<EFBFBD>ch z InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_insertedDescr = 'Po<50>et <20><>dk<64> vlo<6C>en<65>ch do InnoDB tabulek.';
|
$strShowStatusInnodb_rows_insertedDescr = 'Po<50>et <20><>dk<64> vlo<6C>en<65>ch do InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_readDescr = 'Po<50>et <20><>dk<64> p<>e<EFBFBD>ten<65>ch z InnoDB tabulek.';
|
$strShowStatusInnodb_rows_readDescr = 'Po<50>et <20><>dk<64> p<>e<EFBFBD>ten<65>ch z InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_updatedDescr = 'Po<50>et <20><>dk<64> aktualizovan<61>ch v InnoDB tabulk<6C>ch.';
|
$strShowStatusInnodb_rows_updatedDescr = 'Po<50>et <20><>dk<64> aktualizovan<61>ch v InnoDB tabulk<6C>ch.';
|
||||||
$strShowStatusKey_blocks_not_flushedDescr = 'Po<50>et blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>, kter<65> byly zm<7A>n<EFBFBD>ny, ale nebyly zaps<70>ny na disk. D<><44>ve se tato hodnota jmenovala Not_flushed_key_blocks.';
|
$strShowStatusKey_blocks_not_flushedDescr = 'Po<50>et blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>, kter<65> byly zm<7A>n<EFBFBD>ny, ale nebyly zaps<70>ny na disk. D<><44>ve se tato hodnota jmenovala Not_flushed_key_blocks.';
|
||||||
$strShowStatusKey_blocks_unusedDescr = 'Po<50>et nepou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Pomoc<6F> t<>to hodoty pozn<7A>te jak moc je vyrovn<76>vac<61> pam<61><6D> vyu<79>it<69>.';
|
$strShowStatusKey_blocks_unusedDescr = 'Po<50>et nepou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Pomoc<6F> t<>to hodnoty pozn<7A>te jak moc je vyrovn<76>vac<61> pam<61><6D> vyu<79>it<69>.';
|
||||||
$strShowStatusKey_blocks_usedDescr = 'Po<50>et pou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Tato hodnota ur<75>uje maximum blok<6F>, kter<65> kdy byly obsazeny najednou.';
|
$strShowStatusKey_blocks_usedDescr = 'Po<50>et pou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Tato hodnota ur<75>uje maximum blok<6F>, kter<65> kdy byly obsazeny najednou.';
|
||||||
$strShowStatusKey_read_requestsDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> kl<6B><6C>e z vyrovn<76>vac<61> pam<61>ti.';
|
$strShowStatusKey_read_requestsDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> kl<6B><6C>e z vyrovn<76>vac<61> pam<61>ti.';
|
||||||
$strShowStatusKey_readsDescr = 'Po<50>et skute<74>n<EFBFBD>ch <20>ten<65> bloku zkl<6B><6C>e z disku. Pokud je hodnota p<><70>li<6C> velk<6C>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> (key_buffer_size). <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>ete spo<70><6F>tat jako Key_reads/Key_read_requests.';
|
$strShowStatusKey_readsDescr = 'Po<50>et skute<74>n<EFBFBD>ch <20>ten<65> bloku zkl<6B><6C>e z disku. Pokud je hodnota p<><70>li<6C> velk<6C>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> (key_buffer_size). <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>ete spo<70><6F>tat jako Key_reads/Key_read_requests.';
|
||||||
$strShowStatusKey_write_requestsDescr = 'Po<50>et po<70>adavk<76> na z<>pis bloku kl<6B><6C>e na disk.';
|
$strShowStatusKey_write_requestsDescr = 'Po<50>et po<70>adavk<76> na z<>pis bloku kl<6B><6C>e na disk.';
|
||||||
$strShowStatusKey_writesDescr = 'Po<50>et skute<74>n<EFBFBD>ch z<>pis<69> bloku kl<6B><6C>e na disk.';
|
$strShowStatusKey_writesDescr = 'Po<50>et skute<74>n<EFBFBD>ch z<>pis<69> bloku kl<6B><6C>e na disk.';
|
||||||
$strShowStatusLast_query_costDescr = 'Celkov<6F> cena posledn<64>ho kompilovan<61>ho dotazu spo<70><6F>tan<61> optimaliz<69>rem dotaz<61>. U<>ite<74>n<EFBFBD> pro porovn<76>n<EFBFBD> r<>zn<7A>ch dotaz<61>. V<>choz<6F> hodnota 0 znamen<65>, <20>e <20><>dn<64> dotaz je<6A>t<EFBFBD> nebyl kompilov<6F>n.';
|
$strShowStatusLast_query_costDescr = 'Celkov<6F> cena posledn<64>ho kompilovan<61>ho dotazu spo<70><6F>tan<61> optimaliz<69>torem dotaz<61>. U<>ite<74>n<EFBFBD> pro porovn<76>n<EFBFBD> r<>zn<7A>ch dotaz<61>. V<>choz<6F> hodnota 0 znamen<65>, <20>e <20><>dn<64> dotaz je<6A>t<EFBFBD> nebyl kompilov<6F>n.';
|
||||||
$strShowStatusNot_flushed_delayed_rowsDescr = 'Po<50>et <20><>dk<64> <20>ekaj<61>c<EFBFBD>ch na zaps<70>n<EFBFBD> ve front<6E> INSERT DELAYED.';
|
$strShowStatusNot_flushed_delayed_rowsDescr = 'Po<50>et <20><>dk<64> <20>ekaj<61>c<EFBFBD>ch na zaps<70>n<EFBFBD> ve front<6E> INSERT DELAYED.';
|
||||||
$strShowStatusOpened_tablesDescr = 'Celkem otev<65>en<65>ch tabulek. Pokud je tato hodnota p<><70>li<6C> vysok<6F>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> pro tabulky.';
|
$strShowStatusOpened_tablesDescr = 'Celkem otev<65>en<65>ch tabulek. Pokud je tato hodnota p<><70>li<6C> vysok<6F>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> pro tabulky.';
|
||||||
$strShowStatusOpen_filesDescr = 'Po<50>et otev<65>en<65>ch soubor<6F>.';
|
$strShowStatusOpen_filesDescr = 'Po<50>et otev<65>en<65>ch soubor<6F>.';
|
||||||
@@ -824,7 +826,7 @@ $strShowStatusOpen_tablesDescr = 'Po
|
|||||||
$strShowStatusQcache_free_blocksDescr = 'Po<50>et voln<6C>ch blok<6F> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_free_blocksDescr = 'Po<50>et voln<6C>ch blok<6F> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_free_memoryDescr = 'Velikost voln<6C> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_free_memoryDescr = 'Velikost voln<6C> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_hitsDescr = 'Po<50>et z<>sah<61> vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_hitsDescr = 'Po<50>et z<>sah<61> vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_insertsDescr = 'Po<50>et dotaz<61>ch p<>idan<61>ch do vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_insertsDescr = 'Po<50>et dotaz<61> p<>idan<61>ch do vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_lowmem_prunesDescr = 'Po<50>et dotaz<61> odstran<61>n<EFBFBD>ch z vyrovn<76>vac<61> pam<61>ti dotaz<61> aby uvolnily m<>sto pro nov<6F>. Tato hodnota m<><6D>e pomoci v nastaven<65> velikosti vyrovn<76>vac<61> pam<61>ti. Vyrovn<76>vac<61> pam<61><6D> pou<6F><75>v<EFBFBD> strategii LRU (nejd<6A>le nepou<6F>it<69>) pro vy<76>azov<6F>n<EFBFBD> dotaz<61> z vyrovn<76>vac<61> pam<61>ti.';
|
$strShowStatusQcache_lowmem_prunesDescr = 'Po<50>et dotaz<61> odstran<61>n<EFBFBD>ch z vyrovn<76>vac<61> pam<61>ti dotaz<61> aby uvolnily m<>sto pro nov<6F>. Tato hodnota m<><6D>e pomoci v nastaven<65> velikosti vyrovn<76>vac<61> pam<61>ti. Vyrovn<76>vac<61> pam<61><6D> pou<6F><75>v<EFBFBD> strategii LRU (nejd<6A>le nepou<6F>it<69>) pro vy<76>azov<6F>n<EFBFBD> dotaz<61> z vyrovn<76>vac<61> pam<61>ti.';
|
||||||
$strShowStatusQcache_not_cachedDescr = 'Po<50>et necachovan<61>ch dotaz<61> (necachovateln<6C>ch nebo necachovan<61>ch kv<6B>li nastaven<65> query_cache_type).';
|
$strShowStatusQcache_not_cachedDescr = 'Po<50>et necachovan<61>ch dotaz<61> (necachovateln<6C>ch nebo necachovan<61>ch kv<6B>li nastaven<65> query_cache_type).';
|
||||||
$strShowStatusQcache_queries_in_cacheDescr = 'Po<50>et dotaz<61> ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_queries_in_cacheDescr = 'Po<50>et dotaz<61> ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
@@ -834,19 +836,19 @@ $strShowStatusRpl_statusDescr = 'Stav failsafe replikace.';
|
|||||||
$strShowStatusSelect_full_joinDescr = 'Po<50>et spojen<65>, kter<65> nevyu<79><75>valy indexy. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
$strShowStatusSelect_full_joinDescr = 'Po<50>et spojen<65>, kter<65> nevyu<79><75>valy indexy. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
||||||
$strShowStatusSelect_full_range_joinDescr = 'Po<50>et spojen<65>, kter<65> pou<6F><75>valy intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na referen<65>n<EFBFBD> tabulce.';
|
$strShowStatusSelect_full_range_joinDescr = 'Po<50>et spojen<65>, kter<65> pou<6F><75>valy intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na referen<65>n<EFBFBD> tabulce.';
|
||||||
$strShowStatusSelect_range_checkDescr = 'Po<50>et spojen<65> bez kl<6B><6C><EFBFBD>, kter<65> kontrolovaly pou<6F>it<69> kl<6B><6C><EFBFBD> po ka<6B>d<EFBFBD>m <20><>dku. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
$strShowStatusSelect_range_checkDescr = 'Po<50>et spojen<65> bez kl<6B><6C><EFBFBD>, kter<65> kontrolovaly pou<6F>it<69> kl<6B><6C><EFBFBD> po ka<6B>d<EFBFBD>m <20><>dku. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
||||||
$strShowStatusSelect_rangeDescr = 'Po<50>et spojen<65>, kter<65> pou<6F>ivaly intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na prvn<76> tabulce. Tato hodnota obvykle nen<65> kritick<63> i kdy<64> je vysok<6F>.';
|
$strShowStatusSelect_rangeDescr = 'Po<50>et spojen<65>, kter<65> pou<6F><EFBFBD>valy intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na prvn<76> tabulce. Tato hodnota obvykle nen<65> kritick<63> i kdy<64> je vysok<6F>.';
|
||||||
$strShowStatusSelect_scanDescr = 'Po<50>et spojen<65>, kter<65> prov<6F>d<EFBFBD>ly kompletn<74> proch<63>zen<65> prvn<76> tabulky.';
|
$strShowStatusSelect_scanDescr = 'Po<50>et spojen<65>, kter<65> prov<6F>d<EFBFBD>ly kompletn<74> proch<63>zen<65> prvn<76> tabulky.';
|
||||||
$strShowStatusSlave_open_temp_tablesDescr = 'Po<50>et do<64>asn<73>ch tabulek v sou<6F>asn<73> dob<6F> otev<65>en<65>ch pod<6F><64>zen<65>m serverem.';
|
$strShowStatusSlave_open_temp_tablesDescr = 'Po<50>et do<64>asn<73>ch tabulek v sou<6F>asn<73> dob<6F> otev<65>en<65>ch pod<6F><64>zen<65>m serverem.';
|
||||||
$strShowStatusSlave_retried_transactionsDescr = 'Celkov<6F> po<70>ek, kolikr<6B>t musel pod<6F><64>zen<65> server opakovat transakce.';
|
$strShowStatusSlave_retried_transactionsDescr = 'Celkov<6F> po<70>et, kolikr<6B>t musel pod<6F><64>zen<65> server opakovat transakce.';
|
||||||
$strShowStatusSlave_runningDescr = 'Tato polo<6C>ka je zapnut<75>, pokud server pracuje jako pod<6F><64>zen<65>.';
|
$strShowStatusSlave_runningDescr = 'Tato polo<6C>ka je zapnut<75>, pokud server pracuje jako pod<6F><64>zen<65>.';
|
||||||
$strShowStatusSlow_launch_threadsDescr = 'Po<50>et vl<76>ken jejih<69> vytvo<76>en<65> trvalo d<>le ne<6E> slow_launch_time sekund.';
|
$strShowStatusSlow_launch_threadsDescr = 'Po<50>et vl<76>ken jejich<EFBFBD> vytvo<76>en<65> trvalo d<>le ne<6E> slow_launch_time sekund.';
|
||||||
$strShowStatusSlow_queriesDescr = 'Po<50>et dotaz<61>, kter<65> trvaly d<>le ne<6E> long_query_time sekund.';
|
$strShowStatusSlow_queriesDescr = 'Po<50>et dotaz<61>, kter<65> trvaly d<>le ne<6E> long_query_time sekund.';
|
||||||
$strShowStatusSort_merge_passesDescr = 'Po<50>et pr<70>chod<6F> slu<6C>ov<6F>n<EFBFBD>, kter<65> musel prov<6F>st <20>adic<69> algoritmus. P<>i p<><70>li<6C> vysok<6F> hodnot<6F> zva<76>te zv<7A><76>en<65> sort_buffer_size.';
|
$strShowStatusSort_merge_passesDescr = 'Po<50>et pr<70>chod<6F> slu<6C>ov<6F>n<EFBFBD>, kter<65> musel prov<6F>st <20>adic<69> algoritmus. P<>i p<><70>li<6C> vysok<6F> hodnot<6F> zva<76>te zv<7A><76>en<65> sort_buffer_size.';
|
||||||
$strShowStatusSort_rangeDescr = 'Po<50>et <20>azen<65>, kter<65> byly omezeny rozsahem.';
|
$strShowStatusSort_rangeDescr = 'Po<50>et <20>azen<65>, kter<65> byly omezeny rozsahem.';
|
||||||
$strShowStatusSort_rowsDescr = 'Po<50>et <20>azen<65>ch <20><>dek.';
|
$strShowStatusSort_rowsDescr = 'Po<50>et <20>azen<65>ch <20><>dek.';
|
||||||
$strShowStatusSort_scanDescr = 'Po<50>et <20>azen<65> proveden<65>ch proch<63>zen<65>m tabulky.';
|
$strShowStatusSort_scanDescr = 'Po<50>et <20>azen<65> proveden<65>ch proch<63>zen<65>m tabulky.';
|
||||||
$strShowStatusTable_locks_immediateDescr = 'Po<50>ek okam<61>it<69>ch z<>sk<73>n<EFBFBD> z<>mku tabulky.';
|
$strShowStatusTable_locks_immediateDescr = 'Po<50>et okam<61>it<69>ch z<>sk<73>n<EFBFBD> z<>mku tabulky.';
|
||||||
$strShowStatusTable_locks_waitedDescr = 'Po<50>et <20>ek<65>n<EFBFBD> na z<>sk<73>n<EFBFBD> z<>mku tabulky. Pokud je tato hodnota vysok<6F> a m<>te probl<62>my s v<>konem, m<>li byste optimalizovat dostazy a p<><70>padn<64> rozd<7A>lit tabulky nebo pou<6F><75>t replikaci.';
|
$strShowStatusTable_locks_waitedDescr = 'Po<50>et <20>ek<65>n<EFBFBD> na z<>sk<73>n<EFBFBD> z<>mku tabulky. Pokud je tato hodnota vysok<6F> a m<>te probl<62>my s v<>konem, m<>li byste optimalizovat dotazy a p<><70>padn<64> rozd<7A>lit tabulky nebo pou<6F><75>t replikaci.';
|
||||||
$strShowStatusThreads_cachedDescr = 'Po<50>et vl<76>ken ve vyrovn<76>vac<61> pam<61>ti. <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>e b<>t spo<70><6F>t<EFBFBD>na jako Threads_created/Connections. Pokud je tato hodnota <20>erven<65>, m<>li byste zv<7A><76>it thread_cache_size.';
|
$strShowStatusThreads_cachedDescr = 'Po<50>et vl<76>ken ve vyrovn<76>vac<61> pam<61>ti. <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>e b<>t spo<70><6F>t<EFBFBD>na jako Threads_created/Connections. Pokud je tato hodnota <20>erven<65>, m<>li byste zv<7A><76>it thread_cache_size.';
|
||||||
$strShowStatusThreads_connectedDescr = 'Po<50>et aktu<74>ln<6C> otev<65>en<65>ch p<>ipojen<65>.';
|
$strShowStatusThreads_connectedDescr = 'Po<50>et aktu<74>ln<6C> otev<65>en<65>ch p<>ipojen<65>.';
|
||||||
$strShowStatusThreads_createdDescr = 'Po<50>et vl<76>ken vytvo<76>en<65>ch pro obsluhu p<>ipojen<65>. Pokud je hodnota p<><70>li<6C> velk<6C>, m<><6D>ete zv<7A>t<EFBFBD>it parametr thread_cache_size. Na platform<72>ch, kter<65> maj<61> dobrou implementaci vl<76>ken v<>ak toto nem<65> p<><70>li<6C> velk<6C> vliv.';
|
$strShowStatusThreads_createdDescr = 'Po<50>et vl<76>ken vytvo<76>en<65>ch pro obsluhu p<>ipojen<65>. Pokud je hodnota p<><70>li<6C> velk<6C>, m<><6D>ete zv<7A>t<EFBFBD>it parametr thread_cache_size. Na platform<72>ch, kter<65> maj<61> dobrou implementaci vl<76>ken v<>ak toto nem<65> p<><70>li<6C> velk<6C> vliv.';
|
||||||
@@ -863,7 +865,7 @@ $strSlovak = 'Sloven
|
|||||||
$strSlovenian = 'Slovin<69>tina';
|
$strSlovenian = 'Slovin<69>tina';
|
||||||
$strSmallBigAll = 'V<>e mal<61>/velk<6C>';
|
$strSmallBigAll = 'V<>e mal<61>/velk<6C>';
|
||||||
$strSnapToGrid = 'Zachyt<79>vat na m<><6D><EFBFBD>ku';
|
$strSnapToGrid = 'Zachyt<79>vat na m<><6D><EFBFBD>ku';
|
||||||
$strSocketProblem = '(nebo nen<65> sp<73>vn<76> nastaven lok<6F>ln<6C> socket MySQL serveru)';
|
$strSocketProblem = '(nebo nen<65> spr<EFBFBD>vn<EFBFBD> nastaven lok<6F>ln<6C> socket MySQL serveru)';
|
||||||
$strSortByKey = 'Set<65><74>dit podle kl<6B><6C>e';
|
$strSortByKey = 'Set<65><74>dit podle kl<6B><6C>e';
|
||||||
$strSorting = '<27>azen<65>';
|
$strSorting = '<27>azen<65>';
|
||||||
$strSort = '<27>adit';
|
$strSort = '<27>adit';
|
||||||
@@ -934,7 +936,7 @@ $strThisHost = 'Tento po
|
|||||||
$strThreads = 'Po<50>et vl<76>ken';
|
$strThreads = 'Po<50>et vl<76>ken';
|
||||||
$strThreadSuccessfullyKilled = 'Vl<56>kno %s bylo <20>sp<73><70>n<EFBFBD> zabito.';
|
$strThreadSuccessfullyKilled = 'Vl<56>kno %s bylo <20>sp<73><70>n<EFBFBD> zabito.';
|
||||||
$strTime = '<27>as';
|
$strTime = '<27>as';
|
||||||
$strTimeoutInfo = 'P<>edchoz<6F> <20>mport vy<76>erpal ve<76>ker<65> <20>as, po dal<61><6C>m odesl<73>n<EFBFBD> bude import pokra<72>ovat od pozize %d.';
|
$strTimeoutInfo = 'P<>edchoz<6F> <20>mport vy<76>erpal ve<76>ker<65> <20>as, po dal<61><6C>m odesl<73>n<EFBFBD> bude import pokra<72>ovat od pozice %d.';
|
||||||
$strTimeoutNothingParsed = 'Bohu<68>el b<>hem posledn<64>ho pokusu nebyla <20><>dn<64> data na<6E>tena. Toto obvykle znamen<65>, <20>e phpMyAdmin nebude schopen na<6E><61>st tento soubor, pokud nezv<7A><76><EFBFBD>te <20>asov<6F> limity v PHP.';
|
$strTimeoutNothingParsed = 'Bohu<68>el b<>hem posledn<64>ho pokusu nebyla <20><>dn<64> data na<6E>tena. Toto obvykle znamen<65>, <20>e phpMyAdmin nebude schopen na<6E><61>st tento soubor, pokud nezv<7A><76><EFBFBD>te <20>asov<6F> limity v PHP.';
|
||||||
$strTimeoutPassed = 'Limit pro b<>h importu vypr<70>el, pros<6F>m ode<64>lete formul<75><6C> znovu se stejn<6A>m souborem a import bude pokra<72>ovat.';
|
$strTimeoutPassed = 'Limit pro b<>h importu vypr<70>el, pros<6F>m ode<64>lete formul<75><6C> znovu se stejn<6A>m souborem a import bude pokra<72>ovat.';
|
||||||
$strToFromPage = 'do/ze str<74>nky';
|
$strToFromPage = 'do/ze str<74>nky';
|
||||||
@@ -948,7 +950,7 @@ $strTraditionalSpanish = 'Tradi
|
|||||||
$strTraffic = 'Provoz';
|
$strTraffic = 'Provoz';
|
||||||
$strTransactionCoordinator = 'Koordin<69>tor transakc<6B>';
|
$strTransactionCoordinator = 'Koordin<69>tor transakc<6B>';
|
||||||
$strTransformation_application_octetstream__download = 'Zobraz<61> odkaz na st<73>hnut<75> dat. Prvn<76> parametr je jm<6A>no souboru, druh<75> jm<6A>no sloupce v tabulce obsahuj<75>c<EFBFBD> jm<6A>no souboru. Pokud zad<61>te druh<75> parametr, prvn<76> mus<75> b<>t pr<70>zdn<64>.';
|
$strTransformation_application_octetstream__download = 'Zobraz<61> odkaz na st<73>hnut<75> dat. Prvn<76> parametr je jm<6A>no souboru, druh<75> jm<6A>no sloupce v tabulce obsahuj<75>c<EFBFBD> jm<6A>no souboru. Pokud zad<61>te druh<75> parametr, prvn<76> mus<75> b<>t pr<70>zdn<64>.';
|
||||||
$strTransformation_application_octetstream__hex = 'Zobraz<61> data <20>estn<74>ctkov<6F>. Nepovinn<6E> parameter ur<75>uje po kolika znac<61>ch m<> b<>t p<>id<69>na mezera (v<>choz<6F> hodnota je 2).';
|
$strTransformation_application_octetstream__hex = 'Zobraz<61> data <20>estn<74>ctkov<6F>. Nepovinn<6E> parametr ur<75>uje po kolika znac<61>ch m<> b<>t p<>id<69>na mezera (v<>choz<6F> hodnota je 2).';
|
||||||
$strTransformation_image_jpeg__inline = 'Zobraz<61> n<>hled obr<62>zku s odkazem na obr<62>zek; parametry <20><><EFBFBD>ka a v<><76>ka v bodech (pom<6F>r stran obr<62>zku z<>stane zachov<6F>n)';
|
$strTransformation_image_jpeg__inline = 'Zobraz<61> n<>hled obr<62>zku s odkazem na obr<62>zek; parametry <20><><EFBFBD>ka a v<><76>ka v bodech (pom<6F>r stran obr<62>zku z<>stane zachov<6F>n)';
|
||||||
$strTransformation_image_jpeg__link = 'Zobraz<61> odkaz na obr<62>zek (nap<61><70>klad st<73>hnut<75> pole blob).';
|
$strTransformation_image_jpeg__link = 'Zobraz<61> odkaz na obr<62>zek (nap<61><70>klad st<73>hnut<75> pole blob).';
|
||||||
$strTransformation_image_png__inline = 'Viz image/jpeg: inline';
|
$strTransformation_image_png__inline = 'Viz image/jpeg: inline';
|
||||||
@@ -959,6 +961,7 @@ $strTransformation_text_plain__imagelink = 'Zobraz
|
|||||||
$strTransformation_text_plain__link = 'Zobraz<61> odkaz z pole obsahuj<75>c<EFBFBD>ho odkaz. Prvn<76> parametr je prefix URL (nap<61><70>klad „http://mojedomena.cz/“), druh<75> text odkazu.';
|
$strTransformation_text_plain__link = 'Zobraz<61> odkaz z pole obsahuj<75>c<EFBFBD>ho odkaz. Prvn<76> parametr je prefix URL (nap<61><70>klad „http://mojedomena.cz/“), druh<75> text odkazu.';
|
||||||
$strTransformation_text_plain__sql = 'Zobraz<61> text jako SQL dotaz se zv<7A>raz<61>ov<6F>n<EFBFBD>m syntaxe.';
|
$strTransformation_text_plain__sql = 'Zobraz<61> text jako SQL dotaz se zv<7A>raz<61>ov<6F>n<EFBFBD>m syntaxe.';
|
||||||
$strTransformation_text_plain__substr = 'Zobraz<61> jen <20><>st textu. Prvn<76> parametr je posun od za<7A><61>tku (v<>choz<6F> je 0) a druh<75> ur<75>uje d<>lku textu, kter<65> se m<> zobrazit, pokud nen<65> uveden, bude zobrazen zbytek textu. T<>et<65> parametr ur<75>uje, jak<61> text m<> b<>t p<>id<69>n za zkr<6B>cen<65> text (v<>choz<6F> je ...).';
|
$strTransformation_text_plain__substr = 'Zobraz<61> jen <20><>st textu. Prvn<76> parametr je posun od za<7A><61>tku (v<>choz<6F> je 0) a druh<75> ur<75>uje d<>lku textu, kter<65> se m<> zobrazit, pokud nen<65> uveden, bude zobrazen zbytek textu. T<>et<65> parametr ur<75>uje, jak<61> text m<> b<>t p<>id<69>n za zkr<6B>cen<65> text (v<>choz<6F> je ...).';
|
||||||
|
$strTriggers = 'Spou<6F>t<EFBFBD>';
|
||||||
$strTruncateQueries = 'Zobrazit zkr<6B>cen<65> dotazy';
|
$strTruncateQueries = 'Zobrazit zkr<6B>cen<65> dotazy';
|
||||||
$strTurkish = 'Turecky';
|
$strTurkish = 'Turecky';
|
||||||
$strType = 'Typ';
|
$strType = 'Typ';
|
||||||
|
@@ -114,7 +114,7 @@ $strCanNotLoadExportPlugins = 'Nepodařilo se nahrát pluginy pro export, zkontr
|
|||||||
$strCanNotLoadImportPlugins = 'Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!';
|
$strCanNotLoadImportPlugins = 'Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!';
|
||||||
$strCannotLogin = 'Nepodařilo se přihlášení k MySQL serveru';
|
$strCannotLogin = 'Nepodařilo se přihlášení k MySQL serveru';
|
||||||
$strCantLoad = 'nelze nahrát rozšíření %s,<br />zkontrolujte prosím nastavení PHP';
|
$strCantLoad = 'nelze nahrát rozšíření %s,<br />zkontrolujte prosím nastavení PHP';
|
||||||
$strCantLoadRecodeIconv = 'Nelze nahrát rozšíření iconv ani recode potřebná pro převod znakových sad. Upravte nastavení PHP tak, aby umožňovalo použít tyto rozšíření nebo vypněte převod znakových sad v phpMyAdminu.';
|
$strCantLoadRecodeIconv = 'Nelze nahrát rozšíření iconv ani recode potřebná pro převod znakových sad. Upravte nastavení PHP tak, aby umožňovalo použít tyto rozšíření nebo vypněte převod znakových sad v phpMyAdminovi.';
|
||||||
$strCantRenameIdxToPrimary = 'Index nemůžete přejmenovat na „PRIMARY“!';
|
$strCantRenameIdxToPrimary = 'Index nemůžete přejmenovat na „PRIMARY“!';
|
||||||
$strCantUseRecodeIconv = 'Nelze použít funkce iconv ani libiconv ani recode_string, přestože rozšíření jsou nahrána. Zkontrolujte nastavení PHP.';
|
$strCantUseRecodeIconv = 'Nelze použít funkce iconv ani libiconv ani recode_string, přestože rozšíření jsou nahrána. Zkontrolujte nastavení PHP.';
|
||||||
$strCardinality = 'Mohutnost';
|
$strCardinality = 'Mohutnost';
|
||||||
@@ -151,7 +151,7 @@ $strCompatibleHashing = 'Kompatibilní s MySQL 4.0';
|
|||||||
$strCompleteInserts = 'Úplné inserty';
|
$strCompleteInserts = 'Úplné inserty';
|
||||||
$strCompression = 'Komprese';
|
$strCompression = 'Komprese';
|
||||||
$strCompressionWillBeDetected = 'Komprimace importovaného souboru bude automaticky rozpoznána. Podporovány jsou: %s';
|
$strCompressionWillBeDetected = 'Komprimace importovaného souboru bude automaticky rozpoznána. Podporovány jsou: %s';
|
||||||
$strConfigDefaultFileError = 'Nepodařilo se nahrát výchozí konfiguraci ze soubouru: "%1$s"';
|
$strConfigDefaultFileError = 'Nepodařilo se nahrát výchozí konfiguraci ze souboru: "%1$s"';
|
||||||
$strConfigFileError = 'phpMyAdmin nemohl načíst konfigurační soubor!<br />Tato chyba může nastat, pokud v něm PHP najde chybu nebo nemůže tento soubor najít.<br />Po kliknutí na následující odkaz se PHP pokusí přímo interpretovat tento soubor a zobrazí informace o chybě, ke které došlo. Pak opravte tuto chybu (nejčastěji se jedná o chybějící středník).<br />Pokud získáte prázdnou stránku, všechno je v pořádku.';
|
$strConfigFileError = 'phpMyAdmin nemohl načíst konfigurační soubor!<br />Tato chyba může nastat, pokud v něm PHP najde chybu nebo nemůže tento soubor najít.<br />Po kliknutí na následující odkaz se PHP pokusí přímo interpretovat tento soubor a zobrazí informace o chybě, ke které došlo. Pak opravte tuto chybu (nejčastěji se jedná o chybějící středník).<br />Pokud získáte prázdnou stránku, všechno je v pořádku.';
|
||||||
$strConfigureTableCoord = 'Prosím, nastavte souřadnice pro tabulku %s';
|
$strConfigureTableCoord = 'Prosím, nastavte souřadnice pro tabulku %s';
|
||||||
$strConnectionError = 'Nepodařilo se připojit: chybné nastavení.';
|
$strConnectionError = 'Nepodařilo se připojit: chybné nastavení.';
|
||||||
@@ -204,7 +204,7 @@ $strDatabasesStats = 'Statistiky databází';
|
|||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Datový slovník';
|
$strDataDict = 'Datový slovník';
|
||||||
$strDataOnly = ' Jen data';
|
$strDataOnly = ' Jen data';
|
||||||
$strDataPages = 'Stránek obshahujících data';
|
$strDataPages = 'Stránek obsahujících data';
|
||||||
$strDBComment = 'Komentář k databázi: ';
|
$strDBComment = 'Komentář k databázi: ';
|
||||||
$strDBCopy = 'Zkopírovat databázi na';
|
$strDBCopy = 'Zkopírovat databázi na';
|
||||||
$strDbIsEmpty = 'Databáze se zdá být prázdná!';
|
$strDbIsEmpty = 'Databáze se zdá být prázdná!';
|
||||||
@@ -277,6 +277,7 @@ $strErrorSaveTable = 'Chyba při ukládání souřadnic pro Návrháře.';
|
|||||||
$strEscapeWildcards = 'Zástupné znaky _ a % by měly být escapovány pomocí \, pokud je chcete použít jako znak';
|
$strEscapeWildcards = 'Zástupné znaky _ a % by měly být escapovány pomocí \, pokud je chcete použít jako znak';
|
||||||
$strEsperanto = 'Esperanto';
|
$strEsperanto = 'Esperanto';
|
||||||
$strEstonian = 'Estonština';
|
$strEstonian = 'Estonština';
|
||||||
|
$strEvent = 'Událost';
|
||||||
$strExcelEdition = 'Verze Excelu';
|
$strExcelEdition = 'Verze Excelu';
|
||||||
$strExecuteBookmarked = 'Spustit oblíbený dotaz';
|
$strExecuteBookmarked = 'Spustit oblíbený dotaz';
|
||||||
$strExplain = 'Vysvětlit dotaz';
|
$strExplain = 'Vysvětlit dotaz';
|
||||||
@@ -288,7 +289,7 @@ $strExtra = 'Extra';
|
|||||||
|
|
||||||
$strFailedAttempts = 'Nepovedených pokusů';
|
$strFailedAttempts = 'Nepovedených pokusů';
|
||||||
$strFieldHasBeenDropped = 'Sloupec %s byl odstraněn';
|
$strFieldHasBeenDropped = 'Sloupec %s byl odstraněn';
|
||||||
$strFieldInsertFromFileTempDirNotExists = 'Chyba při přejmenování nahrátého soubory, viz FAQ 1.11';
|
$strFieldInsertFromFileTempDirNotExists = 'Chyba při přejmenování nahraného soubory, viz FAQ 1.11';
|
||||||
$strFieldsEmpty = ' Nebyl zadán počet sloupců! ';
|
$strFieldsEmpty = ' Nebyl zadán počet sloupců! ';
|
||||||
$strFieldsEnclosedBy = 'Názvy sloupců uzavřené';
|
$strFieldsEnclosedBy = 'Názvy sloupců uzavřené';
|
||||||
$strFieldsEscapedBy = 'Názvy sloupců escapovány';
|
$strFieldsEscapedBy = 'Názvy sloupců escapovány';
|
||||||
@@ -306,7 +307,7 @@ $strFileNameTemplate = 'Vzor pro jméno souboru';
|
|||||||
$strFiles = 'Soubory';
|
$strFiles = 'Soubory';
|
||||||
$strFileToImport = 'Soubor pro importování';
|
$strFileToImport = 'Soubor pro importování';
|
||||||
$strFixed = 'pevný';
|
$strFixed = 'pevný';
|
||||||
$strFlushPrivilegesNote = 'Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto tabulek se může lišit od oprávnění, která server právě používá, pokud byly tyto tabulky upravovány. V tomto případě je vhodné provést %sznovunačtení oprávnění%s před pokračováním.';
|
$strFlushPrivilegesNote = 'Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto tabulek se může lišit od oprávnění, která server právě používá, pokud byly tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení oprávnění%s před pokračováním.';
|
||||||
$strFlushQueryCache = 'Vyprázdnit vyrovnávací paměť dotazů';
|
$strFlushQueryCache = 'Vyprázdnit vyrovnávací paměť dotazů';
|
||||||
$strFlushTables = 'Zavřít všechny tabulky';
|
$strFlushTables = 'Zavřít všechny tabulky';
|
||||||
$strFlushTable = 'Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)';
|
$strFlushTable = 'Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)';
|
||||||
@@ -484,7 +485,7 @@ $strMyISAMMaxSortFileSizeDesc = 'Maximální velikost dočasných souborů, kter
|
|||||||
$strMyISAMMaxSortFileSize = 'Maximální velikost dočasných souborů pro řazení';
|
$strMyISAMMaxSortFileSize = 'Maximální velikost dočasných souborů pro řazení';
|
||||||
$strMyISAMRecoverOptions = 'Automatický režim obnovy';
|
$strMyISAMRecoverOptions = 'Automatický režim obnovy';
|
||||||
$strMyISAMRecoverOptionsDesc = 'Režim automatické obnovy poškozených MyISAM tabulek. Nastavuje se parametrem --myisam-recover při spouštění serveru.';
|
$strMyISAMRecoverOptionsDesc = 'Režim automatické obnovy poškozených MyISAM tabulek. Nastavuje se parametrem --myisam-recover při spouštění serveru.';
|
||||||
$strMyISAMRepairThreadsDesc = 'Pokud je tato hodnota větší než 1, indexy v MyISAM tabulkách jsou vytvářeny paraleleně (každý index vlastním threadem) při obnově nebo řazení.';
|
$strMyISAMRepairThreadsDesc = 'Pokud je tato hodnota větší než 1, indexy v MyISAM tabulkách jsou vytvářeny paralelně (každý index vlastním threadem) při obnově nebo řazení.';
|
||||||
$strMyISAMRepairThreads = 'Threadů pro opravování';
|
$strMyISAMRepairThreads = 'Threadů pro opravování';
|
||||||
$strMyISAMSortBufferSizeDesc = 'Paměť, která je alokována při řazení MyISAM indexů během jejich vytváření nebo opravování.';
|
$strMyISAMSortBufferSizeDesc = 'Paměť, která je alokována při řazení MyISAM indexů během jejich vytváření nebo opravování.';
|
||||||
$strMyISAMSortBufferSize = 'Velikost paměti pro řazení';
|
$strMyISAMSortBufferSize = 'Velikost paměti pro řazení';
|
||||||
@@ -613,7 +614,7 @@ $strPrivDescMaxUserConnections = 'Omezuje počet současných připojení uživa
|
|||||||
$strPrivDescProcess3 = 'Umožňuje ukončit procesy jiným uživatelům.';
|
$strPrivDescProcess3 = 'Umožňuje ukončit procesy jiným uživatelům.';
|
||||||
$strPrivDescProcess4 = 'Umožňuje vidět celé dotazy v seznamu procesů.';
|
$strPrivDescProcess4 = 'Umožňuje vidět celé dotazy v seznamu procesů.';
|
||||||
$strPrivDescReferences = 'Nemá žádný vliv v této verzi MySQL.';
|
$strPrivDescReferences = 'Nemá žádný vliv v této verzi MySQL.';
|
||||||
$strPrivDescReload = 'Umožňuje znovunačtení nastavení a vyprázdnění vyrovnávacích pamětí MySQL serveru.';
|
$strPrivDescReload = 'Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL serveru.';
|
||||||
$strPrivDescReplClient = 'Umožní uživateli zjistit, kde je hlavní / pomocný server.';
|
$strPrivDescReplClient = 'Umožní uživateli zjistit, kde je hlavní / pomocný server.';
|
||||||
$strPrivDescReplSlave = 'Potřebné pro replikaci pomocných serverů.';
|
$strPrivDescReplSlave = 'Potřebné pro replikaci pomocných serverů.';
|
||||||
$strPrivDescSelect = 'Umožňuje vybírat data.';
|
$strPrivDescSelect = 'Umožňuje vybírat data.';
|
||||||
@@ -624,7 +625,7 @@ $strPrivDescSuper = 'Umožňuje připojení, i když je dosažen maximální po
|
|||||||
$strPrivDescUpdate = 'Umožňuje měnit data.';
|
$strPrivDescUpdate = 'Umožňuje měnit data.';
|
||||||
$strPrivDescUsage = 'Žádná oprávnění.';
|
$strPrivDescUsage = 'Žádná oprávnění.';
|
||||||
$strPrivileges = 'Oprávnění';
|
$strPrivileges = 'Oprávnění';
|
||||||
$strPrivilegesReloaded = 'Oprávnění byla znovunačtena úspěšně.';
|
$strPrivilegesReloaded = 'Oprávnění byla načtena úspěšně.';
|
||||||
$strProcedures = 'Procedury';
|
$strProcedures = 'Procedury';
|
||||||
$strProcesses = 'Procesy';
|
$strProcesses = 'Procesy';
|
||||||
$strProcesslist = 'Seznam procesů';
|
$strProcesslist = 'Seznam procesů';
|
||||||
@@ -656,7 +657,7 @@ $strRelationNotWorking = 'Některé z rozšířených funkcí phpMyAdmina n
|
|||||||
$strRelationsForTable = 'RELACE PRO TABULKU';
|
$strRelationsForTable = 'RELACE PRO TABULKU';
|
||||||
$strRelations = 'Relace';
|
$strRelations = 'Relace';
|
||||||
$strRelationView = 'Zobrazit relace';
|
$strRelationView = 'Zobrazit relace';
|
||||||
$strReloadingThePrivileges = 'Znovunačítám oprávnění';
|
$strReloadingThePrivileges = 'Načítám oprávnění';
|
||||||
$strReloadPrivileges = 'Znovu načíst oprávnění';
|
$strReloadPrivileges = 'Znovu načíst oprávnění';
|
||||||
$strReload = 'Znovu načíst';
|
$strReload = 'Znovu načíst';
|
||||||
$strRemoveSelectedUsers = 'Odstranit vybrané uživatele';
|
$strRemoveSelectedUsers = 'Odstranit vybrané uživatele';
|
||||||
@@ -669,6 +670,7 @@ $strReplaceTable = 'Přepsat data tabulky souborem';
|
|||||||
$strReplication = 'Replikace';
|
$strReplication = 'Replikace';
|
||||||
$strReset = 'Původní';
|
$strReset = 'Původní';
|
||||||
$strResourceLimits = 'Omezení zdrojů';
|
$strResourceLimits = 'Omezení zdrojů';
|
||||||
|
$strRestartInsertion = 'Začít znovu vkládání s %s řádky';
|
||||||
$strReType = 'Heslo znovu';
|
$strReType = 'Heslo znovu';
|
||||||
$strRevokeAndDeleteDescr = 'Uživatelé budou mít oprávnění „USAGE“ (používání), dokud nebudou znovu načtena oprávnění.';
|
$strRevokeAndDeleteDescr = 'Uživatelé budou mít oprávnění „USAGE“ (používání), dokud nebudou znovu načtena oprávnění.';
|
||||||
$strRevokeAndDelete = 'Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek.';
|
$strRevokeAndDelete = 'Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek.';
|
||||||
@@ -761,7 +763,7 @@ $strShowStatusHandler_read_firstDescr = 'Počet přečtení první položky inde
|
|||||||
$strShowStatusHandler_read_keyDescr = 'Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota znamená, že dotazy správně využívají indexy.';
|
$strShowStatusHandler_read_keyDescr = 'Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota znamená, že dotazy správně využívají indexy.';
|
||||||
$strShowStatusHandler_read_nextDescr = 'Počet požadavků na přečtení dalšího řádku podle indexu. Tato hodnota se zvětšuje pokud provádíte dotaz na indexovaný sloupec s omezením rozsahu nebo prohledáváte index.';
|
$strShowStatusHandler_read_nextDescr = 'Počet požadavků na přečtení dalšího řádku podle indexu. Tato hodnota se zvětšuje pokud provádíte dotaz na indexovaný sloupec s omezením rozsahu nebo prohledáváte index.';
|
||||||
$strShowStatusHandler_read_prevDescr = 'Počet požadavků na přečtení předchozího řádku z indexu. Používané pro optimalizaci dotazů ORDER BY ... DESC.';
|
$strShowStatusHandler_read_prevDescr = 'Počet požadavků na přečtení předchozího řádku z indexu. Používané pro optimalizaci dotazů ORDER BY ... DESC.';
|
||||||
$strShowStatusHandler_read_rndDescr = 'Počet požadavků na přečtení konkrétního řádku tabulky. Vysoká hodnota znamená, že provádíte mnoho dotazů, které vyřadují řazení výsledků. Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky nebo používáte spojení tabulek, která nevyužívají indexů.';
|
$strShowStatusHandler_read_rndDescr = 'Počet požadavků na přečtení konkrétního řádku tabulky. Vysoká hodnota znamená, že provádíte mnoho dotazů, které vyžadují řazení výsledků. Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky nebo používáte spojení tabulek, která nevyužívají indexů.';
|
||||||
$strShowStatusHandler_read_rnd_nextDescr = 'Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné indexy.';
|
$strShowStatusHandler_read_rnd_nextDescr = 'Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné indexy.';
|
||||||
$strShowStatusHandler_rollbackDescr = 'Počet interních příkazů ROLLBACK.';
|
$strShowStatusHandler_rollbackDescr = 'Počet interních příkazů ROLLBACK.';
|
||||||
$strShowStatusHandler_updateDescr = 'Počet požadavků na aktualizaci řádku.';
|
$strShowStatusHandler_updateDescr = 'Počet požadavků na aktualizaci řádku.';
|
||||||
@@ -784,8 +786,8 @@ $strShowStatusInnodb_data_pending_fsyncsDescr = 'Počet nevyřízených synchron
|
|||||||
$strShowStatusInnodb_data_pending_readsDescr = 'Počet nevyřízených čtení.';
|
$strShowStatusInnodb_data_pending_readsDescr = 'Počet nevyřízených čtení.';
|
||||||
$strShowStatusInnodb_data_pending_writesDescr = 'Počet nevyřízených zápisů.';
|
$strShowStatusInnodb_data_pending_writesDescr = 'Počet nevyřízených zápisů.';
|
||||||
$strShowStatusInnodb_data_readDescr = 'Velikost přečtených dat, v bajtech.';
|
$strShowStatusInnodb_data_readDescr = 'Velikost přečtených dat, v bajtech.';
|
||||||
$strShowStatusInnodb_data_readsDescr = 'Počet provedenách čtení dat.';
|
$strShowStatusInnodb_data_readsDescr = 'Počet provedených čtení dat.';
|
||||||
$strShowStatusInnodb_data_writesDescr = 'Počet provedenách zápisů dat.';
|
$strShowStatusInnodb_data_writesDescr = 'Počet provedených zápisů dat.';
|
||||||
$strShowStatusInnodb_data_writtenDescr = 'Velikost zapsaných dat, v bajtech.';
|
$strShowStatusInnodb_data_writtenDescr = 'Velikost zapsaných dat, v bajtech.';
|
||||||
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Počet provedených dvojitých zapsání a počet stránek, které byly takto zapsány.';
|
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Počet provedených dvojitých zapsání a počet stránek, které byly takto zapsány.';
|
||||||
$strShowStatusInnodb_dblwr_writesDescr = 'Počet provedených dvojitých zapsání a počet stránek, které byly takto zapsány.';
|
$strShowStatusInnodb_dblwr_writesDescr = 'Počet provedených dvojitých zapsání a počet stránek, které byly takto zapsány.';
|
||||||
@@ -805,18 +807,18 @@ $strShowStatusInnodb_row_lock_time_avgDescr = 'Průměrný čas potřebný pro z
|
|||||||
$strShowStatusInnodb_row_lock_timeDescr = 'Celkový čas strávený čekáním na zámek řádku, v milisekundách.';
|
$strShowStatusInnodb_row_lock_timeDescr = 'Celkový čas strávený čekáním na zámek řádku, v milisekundách.';
|
||||||
$strShowStatusInnodb_row_lock_time_maxDescr = 'Maximální čas potřebný pro získání zámku řádku, v milisekundách.';
|
$strShowStatusInnodb_row_lock_time_maxDescr = 'Maximální čas potřebný pro získání zámku řádku, v milisekundách.';
|
||||||
$strShowStatusInnodb_row_lock_waitsDescr = 'Kolikrát se muselo čekat na zámek řádku.';
|
$strShowStatusInnodb_row_lock_waitsDescr = 'Kolikrát se muselo čekat na zámek řádku.';
|
||||||
$strShowStatusInnodb_rows_deletedDescr = 'Počet řádků ostraněných z InnoDB tabulek.';
|
$strShowStatusInnodb_rows_deletedDescr = 'Počet řádků odstraněných z InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_insertedDescr = 'Počet řádků vložených do InnoDB tabulek.';
|
$strShowStatusInnodb_rows_insertedDescr = 'Počet řádků vložených do InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_readDescr = 'Počet řádků přečtených z InnoDB tabulek.';
|
$strShowStatusInnodb_rows_readDescr = 'Počet řádků přečtených z InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_updatedDescr = 'Počet řádků aktualizovaných v InnoDB tabulkách.';
|
$strShowStatusInnodb_rows_updatedDescr = 'Počet řádků aktualizovaných v InnoDB tabulkách.';
|
||||||
$strShowStatusKey_blocks_not_flushedDescr = 'Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks.';
|
$strShowStatusKey_blocks_not_flushedDescr = 'Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks.';
|
||||||
$strShowStatusKey_blocks_unusedDescr = 'Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodoty poznáte jak moc je vyrovnávací paměť využitá.';
|
$strShowStatusKey_blocks_unusedDescr = 'Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty poznáte jak moc je vyrovnávací paměť využitá.';
|
||||||
$strShowStatusKey_blocks_usedDescr = 'Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje maximum bloků, které kdy byly obsazeny najednou.';
|
$strShowStatusKey_blocks_usedDescr = 'Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje maximum bloků, které kdy byly obsazeny najednou.';
|
||||||
$strShowStatusKey_read_requestsDescr = 'Počet požadavků na přečtení klíče z vyrovnávací paměti.';
|
$strShowStatusKey_read_requestsDescr = 'Počet požadavků na přečtení klíče z vyrovnávací paměti.';
|
||||||
$strShowStatusKey_readsDescr = 'Počet skutečných čtení bloku zklíče z disku. Pokud je hodnota příliš velká, pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests.';
|
$strShowStatusKey_readsDescr = 'Počet skutečných čtení bloku zklíče z disku. Pokud je hodnota příliš velká, pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests.';
|
||||||
$strShowStatusKey_write_requestsDescr = 'Počet požadavků na zápis bloku klíče na disk.';
|
$strShowStatusKey_write_requestsDescr = 'Počet požadavků na zápis bloku klíče na disk.';
|
||||||
$strShowStatusKey_writesDescr = 'Počet skutečných zápisů bloku klíče na disk.';
|
$strShowStatusKey_writesDescr = 'Počet skutečných zápisů bloku klíče na disk.';
|
||||||
$strShowStatusLast_query_costDescr = 'Celková cena posledního kompilovaného dotazu spočítaná optimalizérem dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že žádný dotaz ještě nebyl kompilován.';
|
$strShowStatusLast_query_costDescr = 'Celková cena posledního kompilovaného dotazu spočítaná optimalizátorem dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že žádný dotaz ještě nebyl kompilován.';
|
||||||
$strShowStatusNot_flushed_delayed_rowsDescr = 'Počet řádků čekajících na zapsání ve frontě INSERT DELAYED.';
|
$strShowStatusNot_flushed_delayed_rowsDescr = 'Počet řádků čekajících na zapsání ve frontě INSERT DELAYED.';
|
||||||
$strShowStatusOpened_tablesDescr = 'Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, pravděpodobně máte malou vyrovnávací paměť pro tabulky.';
|
$strShowStatusOpened_tablesDescr = 'Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, pravděpodobně máte malou vyrovnávací paměť pro tabulky.';
|
||||||
$strShowStatusOpen_filesDescr = 'Počet otevřených souborů.';
|
$strShowStatusOpen_filesDescr = 'Počet otevřených souborů.';
|
||||||
@@ -825,7 +827,7 @@ $strShowStatusOpen_tablesDescr = 'Počet aktuálně otevřených tabulek.';
|
|||||||
$strShowStatusQcache_free_blocksDescr = 'Počet volných bloků paměti ve vyrovnávací paměti dotazů.';
|
$strShowStatusQcache_free_blocksDescr = 'Počet volných bloků paměti ve vyrovnávací paměti dotazů.';
|
||||||
$strShowStatusQcache_free_memoryDescr = 'Velikost volné paměti ve vyrovnávací paměti dotazů.';
|
$strShowStatusQcache_free_memoryDescr = 'Velikost volné paměti ve vyrovnávací paměti dotazů.';
|
||||||
$strShowStatusQcache_hitsDescr = 'Počet zásahů vyrovnávací paměti dotazů.';
|
$strShowStatusQcache_hitsDescr = 'Počet zásahů vyrovnávací paměti dotazů.';
|
||||||
$strShowStatusQcache_insertsDescr = 'Počet dotazůch přidaných do vyrovnávací paměti dotazů.';
|
$strShowStatusQcache_insertsDescr = 'Počet dotazů přidaných do vyrovnávací paměti dotazů.';
|
||||||
$strShowStatusQcache_lowmem_prunesDescr = 'Počet dotazů odstraněných z vyrovnávací paměti dotazů aby uvolnily místo pro nové. Tato hodnota může pomoci v nastavení velikosti vyrovnávací paměti. Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování dotazů z vyrovnávací paměti.';
|
$strShowStatusQcache_lowmem_prunesDescr = 'Počet dotazů odstraněných z vyrovnávací paměti dotazů aby uvolnily místo pro nové. Tato hodnota může pomoci v nastavení velikosti vyrovnávací paměti. Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování dotazů z vyrovnávací paměti.';
|
||||||
$strShowStatusQcache_not_cachedDescr = 'Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli nastavení query_cache_type).';
|
$strShowStatusQcache_not_cachedDescr = 'Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli nastavení query_cache_type).';
|
||||||
$strShowStatusQcache_queries_in_cacheDescr = 'Počet dotazů ve vyrovnávací paměti dotazů.';
|
$strShowStatusQcache_queries_in_cacheDescr = 'Počet dotazů ve vyrovnávací paměti dotazů.';
|
||||||
@@ -835,19 +837,19 @@ $strShowStatusRpl_statusDescr = 'Stav failsafe replikace.';
|
|||||||
$strShowStatusSelect_full_joinDescr = 'Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.';
|
$strShowStatusSelect_full_joinDescr = 'Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.';
|
||||||
$strShowStatusSelect_full_range_joinDescr = 'Počet spojení, které používaly intervalové vyhledávání na referenční tabulce.';
|
$strShowStatusSelect_full_range_joinDescr = 'Počet spojení, které používaly intervalové vyhledávání na referenční tabulce.';
|
||||||
$strShowStatusSelect_range_checkDescr = 'Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.';
|
$strShowStatusSelect_range_checkDescr = 'Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.';
|
||||||
$strShowStatusSelect_rangeDescr = 'Počet spojení, které použivaly intervalové vyhledávání na první tabulce. Tato hodnota obvykle není kritická i když je vysoká.';
|
$strShowStatusSelect_rangeDescr = 'Počet spojení, které používaly intervalové vyhledávání na první tabulce. Tato hodnota obvykle není kritická i když je vysoká.';
|
||||||
$strShowStatusSelect_scanDescr = 'Počet spojení, které prováděly kompletní procházení první tabulky.';
|
$strShowStatusSelect_scanDescr = 'Počet spojení, které prováděly kompletní procházení první tabulky.';
|
||||||
$strShowStatusSlave_open_temp_tablesDescr = 'Počet dočasných tabulek v současné době otevřených podřízeným serverem.';
|
$strShowStatusSlave_open_temp_tablesDescr = 'Počet dočasných tabulek v současné době otevřených podřízeným serverem.';
|
||||||
$strShowStatusSlave_retried_transactionsDescr = 'Celkový poček, kolikrát musel podřízený server opakovat transakce.';
|
$strShowStatusSlave_retried_transactionsDescr = 'Celkový počet, kolikrát musel podřízený server opakovat transakce.';
|
||||||
$strShowStatusSlave_runningDescr = 'Tato položka je zapnutá, pokud server pracuje jako podřízený.';
|
$strShowStatusSlave_runningDescr = 'Tato položka je zapnutá, pokud server pracuje jako podřízený.';
|
||||||
$strShowStatusSlow_launch_threadsDescr = 'Počet vláken jejihž vytvoření trvalo déle než slow_launch_time sekund.';
|
$strShowStatusSlow_launch_threadsDescr = 'Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund.';
|
||||||
$strShowStatusSlow_queriesDescr = 'Počet dotazů, které trvaly déle než long_query_time sekund.';
|
$strShowStatusSlow_queriesDescr = 'Počet dotazů, které trvaly déle než long_query_time sekund.';
|
||||||
$strShowStatusSort_merge_passesDescr = 'Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš vysoké hodnotě zvažte zvýšení sort_buffer_size.';
|
$strShowStatusSort_merge_passesDescr = 'Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš vysoké hodnotě zvažte zvýšení sort_buffer_size.';
|
||||||
$strShowStatusSort_rangeDescr = 'Počet řazení, které byly omezeny rozsahem.';
|
$strShowStatusSort_rangeDescr = 'Počet řazení, které byly omezeny rozsahem.';
|
||||||
$strShowStatusSort_rowsDescr = 'Počet řazených řádek.';
|
$strShowStatusSort_rowsDescr = 'Počet řazených řádek.';
|
||||||
$strShowStatusSort_scanDescr = 'Počet řazení provedených procházením tabulky.';
|
$strShowStatusSort_scanDescr = 'Počet řazení provedených procházením tabulky.';
|
||||||
$strShowStatusTable_locks_immediateDescr = 'Poček okamžitých získání zámku tabulky.';
|
$strShowStatusTable_locks_immediateDescr = 'Počet okamžitých získání zámku tabulky.';
|
||||||
$strShowStatusTable_locks_waitedDescr = 'Počet čekání na získání zámku tabulky. Pokud je tato hodnota vysoká a máte problémy s výkonem, měli byste optimalizovat dostazy a případně rozdělit tabulky nebo použít replikaci.';
|
$strShowStatusTable_locks_waitedDescr = 'Počet čekání na získání zámku tabulky. Pokud je tato hodnota vysoká a máte problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit tabulky nebo použít replikaci.';
|
||||||
$strShowStatusThreads_cachedDescr = 'Počet vláken ve vyrovnávací paměti. Úspěšnost vyrovnávací paměti může být spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, měli byste zvýšit thread_cache_size.';
|
$strShowStatusThreads_cachedDescr = 'Počet vláken ve vyrovnávací paměti. Úspěšnost vyrovnávací paměti může být spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, měli byste zvýšit thread_cache_size.';
|
||||||
$strShowStatusThreads_connectedDescr = 'Počet aktuálně otevřených připojení.';
|
$strShowStatusThreads_connectedDescr = 'Počet aktuálně otevřených připojení.';
|
||||||
$strShowStatusThreads_createdDescr = 'Počet vláken vytvořených pro obsluhu připojení. Pokud je hodnota příliš velká, můžete zvětšit parametr thread_cache_size. Na platformách, které mají dobrou implementaci vláken však toto nemá příliš velký vliv.';
|
$strShowStatusThreads_createdDescr = 'Počet vláken vytvořených pro obsluhu připojení. Pokud je hodnota příliš velká, můžete zvětšit parametr thread_cache_size. Na platformách, které mají dobrou implementaci vláken však toto nemá příliš velký vliv.';
|
||||||
@@ -864,7 +866,7 @@ $strSlovak = 'Slovenština';
|
|||||||
$strSlovenian = 'Slovinština';
|
$strSlovenian = 'Slovinština';
|
||||||
$strSmallBigAll = 'Vše malé/velké';
|
$strSmallBigAll = 'Vše malé/velké';
|
||||||
$strSnapToGrid = 'Zachytávat na mřížku';
|
$strSnapToGrid = 'Zachytávat na mřížku';
|
||||||
$strSocketProblem = '(nebo není spávně nastaven lokální socket MySQL serveru)';
|
$strSocketProblem = '(nebo není správně nastaven lokální socket MySQL serveru)';
|
||||||
$strSortByKey = 'Setřídit podle klíče';
|
$strSortByKey = 'Setřídit podle klíče';
|
||||||
$strSorting = 'Řazení';
|
$strSorting = 'Řazení';
|
||||||
$strSort = 'Řadit';
|
$strSort = 'Řadit';
|
||||||
@@ -935,7 +937,7 @@ $strThisHost = 'Tento počítač';
|
|||||||
$strThreads = 'Počet vláken';
|
$strThreads = 'Počet vláken';
|
||||||
$strThreadSuccessfullyKilled = 'Vlákno %s bylo úspěšně zabito.';
|
$strThreadSuccessfullyKilled = 'Vlákno %s bylo úspěšně zabito.';
|
||||||
$strTime = 'Čas';
|
$strTime = 'Čas';
|
||||||
$strTimeoutInfo = 'Předchozí ímport vyčerpal veškerý čas, po dalším odeslání bude import pokračovat od pozize %d.';
|
$strTimeoutInfo = 'Předchozí ímport vyčerpal veškerý čas, po dalším odeslání bude import pokračovat od pozice %d.';
|
||||||
$strTimeoutNothingParsed = 'Bohužel během posledního pokusu nebyla žádná data načtena. Toto obvykle znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte časové limity v PHP.';
|
$strTimeoutNothingParsed = 'Bohužel během posledního pokusu nebyla žádná data načtena. Toto obvykle znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte časové limity v PHP.';
|
||||||
$strTimeoutPassed = 'Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným souborem a import bude pokračovat.';
|
$strTimeoutPassed = 'Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným souborem a import bude pokračovat.';
|
||||||
$strToFromPage = 'do/ze stránky';
|
$strToFromPage = 'do/ze stránky';
|
||||||
@@ -949,7 +951,7 @@ $strTraditionalSpanish = 'Tradiční španělština';
|
|||||||
$strTraffic = 'Provoz';
|
$strTraffic = 'Provoz';
|
||||||
$strTransactionCoordinator = 'Koordinátor transakcí';
|
$strTransactionCoordinator = 'Koordinátor transakcí';
|
||||||
$strTransformation_application_octetstream__download = 'Zobrazí odkaz na stáhnutí dat. První parametr je jméno souboru, druhý jméno sloupce v tabulce obsahující jméno souboru. Pokud zadáte druhý parametr, první musí být prázdný.';
|
$strTransformation_application_octetstream__download = 'Zobrazí odkaz na stáhnutí dat. První parametr je jméno souboru, druhý jméno sloupce v tabulce obsahující jméno souboru. Pokud zadáte druhý parametr, první musí být prázdný.';
|
||||||
$strTransformation_application_octetstream__hex = 'Zobrazí data šestnáctkově. Nepovinný parameter určuje po kolika znacích má být přidána mezera (výchozí hodnota je 2).';
|
$strTransformation_application_octetstream__hex = 'Zobrazí data šestnáctkově. Nepovinný parametr určuje po kolika znacích má být přidána mezera (výchozí hodnota je 2).';
|
||||||
$strTransformation_image_jpeg__inline = 'Zobrazí náhled obrázku s odkazem na obrázek; parametry šířka a výška v bodech (poměr stran obrázku zůstane zachován)';
|
$strTransformation_image_jpeg__inline = 'Zobrazí náhled obrázku s odkazem na obrázek; parametry šířka a výška v bodech (poměr stran obrázku zůstane zachován)';
|
||||||
$strTransformation_image_jpeg__link = 'Zobrazí odkaz na obrázek (například stáhnutí pole blob).';
|
$strTransformation_image_jpeg__link = 'Zobrazí odkaz na obrázek (například stáhnutí pole blob).';
|
||||||
$strTransformation_image_png__inline = 'Viz image/jpeg: inline';
|
$strTransformation_image_png__inline = 'Viz image/jpeg: inline';
|
||||||
@@ -960,6 +962,7 @@ $strTransformation_text_plain__imagelink = 'Zobrazí obrázek a odkaz z pol
|
|||||||
$strTransformation_text_plain__link = 'Zobrazí odkaz z pole obsahujícího odkaz. První parametr je prefix URL (například „http://mojedomena.cz/“), druhý text odkazu.';
|
$strTransformation_text_plain__link = 'Zobrazí odkaz z pole obsahujícího odkaz. První parametr je prefix URL (například „http://mojedomena.cz/“), druhý text odkazu.';
|
||||||
$strTransformation_text_plain__sql = 'Zobrazí text jako SQL dotaz se zvýrazňováním syntaxe.';
|
$strTransformation_text_plain__sql = 'Zobrazí text jako SQL dotaz se zvýrazňováním syntaxe.';
|
||||||
$strTransformation_text_plain__substr = 'Zobrazí jen část textu. První parametr je posun od začátku (výchozí je 0) a druhý určuje délku textu, který se má zobrazit, pokud není uveden, bude zobrazen zbytek textu. Třetí parametr určuje, jaký text má být přidán za zkrácený text (výchozí je ...).';
|
$strTransformation_text_plain__substr = 'Zobrazí jen část textu. První parametr je posun od začátku (výchozí je 0) a druhý určuje délku textu, který se má zobrazit, pokud není uveden, bude zobrazen zbytek textu. Třetí parametr určuje, jaký text má být přidán za zkrácený text (výchozí je ...).';
|
||||||
|
$strTriggers = 'Spouště';
|
||||||
$strTruncateQueries = 'Zobrazit zkrácené dotazy';
|
$strTruncateQueries = 'Zobrazit zkrácené dotazy';
|
||||||
$strTurkish = 'Turecky';
|
$strTurkish = 'Turecky';
|
||||||
$strType = 'Typ';
|
$strType = 'Typ';
|
||||||
|
@@ -113,7 +113,7 @@ $strCanNotLoadExportPlugins = 'Nepoda
|
|||||||
$strCanNotLoadImportPlugins = 'Nepoda<64>ilo se nahr<68>t pluginy pro import, zkontrolujte pros<6F>m va<76><61> instalaci!';
|
$strCanNotLoadImportPlugins = 'Nepoda<64>ilo se nahr<68>t pluginy pro import, zkontrolujte pros<6F>m va<76><61> instalaci!';
|
||||||
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
$strCannotLogin = 'Nepoda<64>ilo se p<>ihl<68><6C>en<65> k MySQL serveru';
|
||||||
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
$strCantLoad = 'nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> %s,<br />zkontrolujte pros<6F>m nastaven<65> PHP';
|
||||||
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> PHP tak, aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminu.';
|
$strCantLoadRecodeIconv = 'Nelze nahr<68>t roz<6F><7A><EFBFBD>en<65> iconv ani recode pot<6F>ebn<62> pro p<>evod znakov<6F>ch sad. Upravte nastaven<65> PHP tak, aby umo<6D><6F>ovalo pou<6F><75>t tyto roz<6F><7A><EFBFBD>en<65> nebo vypn<70>te p<>evod znakov<6F>ch sad v phpMyAdminovi.';
|
||||||
$strCantRenameIdxToPrimary = 'Index nem<65><6D>ete p<>ejmenovat na „PRIMARY“!';
|
$strCantRenameIdxToPrimary = 'Index nem<65><6D>ete p<>ejmenovat na „PRIMARY“!';
|
||||||
$strCantUseRecodeIconv = 'Nelze pou<6F><75>t funkce iconv ani libiconv ani recode_string, p<>esto<74>e roz<6F><7A><EFBFBD>en<65> jsou nahr<68>na. Zkontrolujte nastaven<65> PHP.';
|
$strCantUseRecodeIconv = 'Nelze pou<6F><75>t funkce iconv ani libiconv ani recode_string, p<>esto<74>e roz<6F><7A><EFBFBD>en<65> jsou nahr<68>na. Zkontrolujte nastaven<65> PHP.';
|
||||||
$strCardinality = 'Mohutnost';
|
$strCardinality = 'Mohutnost';
|
||||||
@@ -150,7 +150,7 @@ $strCompatibleHashing = 'Kompatibiln
|
|||||||
$strCompleteInserts = '<27>pln<6C> inserty';
|
$strCompleteInserts = '<27>pln<6C> inserty';
|
||||||
$strCompression = 'Komprese';
|
$strCompression = 'Komprese';
|
||||||
$strCompressionWillBeDetected = 'Komprimace importovan<61>ho souboru bude automaticky rozpozn<7A>na. Podporov<6F>ny jsou: %s';
|
$strCompressionWillBeDetected = 'Komprimace importovan<61>ho souboru bude automaticky rozpozn<7A>na. Podporov<6F>ny jsou: %s';
|
||||||
$strConfigDefaultFileError = 'Nepoda<64>ilo se nahr<68>t v<>choz<6F> konfiguraci ze soubouru: "%1$s"';
|
$strConfigDefaultFileError = 'Nepoda<64>ilo se nahr<68>t v<>choz<6F> konfiguraci ze souboru: "%1$s"';
|
||||||
$strConfigFileError = 'phpMyAdmin nemohl na<6E><61>st konfigura<72>n<EFBFBD> soubor!<br />Tato chyba m<><6D>e nastat, pokud v n<>m PHP najde chybu nebo nem<65><6D>e tento soubor naj<61>t.<br />Po kliknut<75> na n<>sleduj<75>c<EFBFBD> odkaz se PHP pokus<75> p<><70>mo interpretovat tento soubor a zobraz<61> informace o chyb<79>, ke kter<65> do<64>lo. Pak opravte tuto chybu (nej<65>ast<73>ji se jedn<64> o chyb<79>j<EFBFBD>c<EFBFBD> st<73>edn<64>k).<br />Pokud z<>sk<73>te pr<70>zdnou str<74>nku, v<>echno je v po<70><6F>dku.';
|
$strConfigFileError = 'phpMyAdmin nemohl na<6E><61>st konfigura<72>n<EFBFBD> soubor!<br />Tato chyba m<><6D>e nastat, pokud v n<>m PHP najde chybu nebo nem<65><6D>e tento soubor naj<61>t.<br />Po kliknut<75> na n<>sleduj<75>c<EFBFBD> odkaz se PHP pokus<75> p<><70>mo interpretovat tento soubor a zobraz<61> informace o chyb<79>, ke kter<65> do<64>lo. Pak opravte tuto chybu (nej<65>ast<73>ji se jedn<64> o chyb<79>j<EFBFBD>c<EFBFBD> st<73>edn<64>k).<br />Pokud z<>sk<73>te pr<70>zdnou str<74>nku, v<>echno je v po<70><6F>dku.';
|
||||||
$strConfigureTableCoord = 'Pros<6F>m, nastavte sou<6F>adnice pro tabulku %s';
|
$strConfigureTableCoord = 'Pros<6F>m, nastavte sou<6F>adnice pro tabulku %s';
|
||||||
$strConnectionError = 'Nepoda<64>ilo se p<>ipojit: chybn<62> nastaven<65>.';
|
$strConnectionError = 'Nepoda<64>ilo se p<>ipojit: chybn<62> nastaven<65>.';
|
||||||
@@ -203,7 +203,7 @@ $strDatabasesStats = 'Statistiky datab
|
|||||||
$strData = 'Data';
|
$strData = 'Data';
|
||||||
$strDataDict = 'Datov<6F> slovn<76>k';
|
$strDataDict = 'Datov<6F> slovn<76>k';
|
||||||
$strDataOnly = ' Jen data';
|
$strDataOnly = ' Jen data';
|
||||||
$strDataPages = 'Str<74>nek obshahuj<EFBFBD>c<EFBFBD>ch data';
|
$strDataPages = 'Str<74>nek obsahuj<75>c<EFBFBD>ch data';
|
||||||
$strDBComment = 'Koment<6E><74> k datab<61>zi: ';
|
$strDBComment = 'Koment<6E><74> k datab<61>zi: ';
|
||||||
$strDBCopy = 'Zkop<6F>rovat datab<61>zi na';
|
$strDBCopy = 'Zkop<6F>rovat datab<61>zi na';
|
||||||
$strDbIsEmpty = 'Datab<61>ze se zd<7A> b<>t pr<70>zdn<64>!';
|
$strDbIsEmpty = 'Datab<61>ze se zd<7A> b<>t pr<70>zdn<64>!';
|
||||||
@@ -276,6 +276,7 @@ $strErrorSaveTable = 'Chyba p
|
|||||||
$strEscapeWildcards = 'Z<>stupn<70> znaky _ a % by m<>ly b<>t escapov<6F>ny pomoc<6F> \, pokud je chcete pou<6F><75>t jako znak';
|
$strEscapeWildcards = 'Z<>stupn<70> znaky _ a % by m<>ly b<>t escapov<6F>ny pomoc<6F> \, pokud je chcete pou<6F><75>t jako znak';
|
||||||
$strEsperanto = 'Esperanto';
|
$strEsperanto = 'Esperanto';
|
||||||
$strEstonian = 'Eston<6F>tina';
|
$strEstonian = 'Eston<6F>tina';
|
||||||
|
$strEvent = 'Ud<55>lost';
|
||||||
$strExcelEdition = 'Verze Excelu';
|
$strExcelEdition = 'Verze Excelu';
|
||||||
$strExecuteBookmarked = 'Spustit obl<62>ben<65> dotaz';
|
$strExecuteBookmarked = 'Spustit obl<62>ben<65> dotaz';
|
||||||
$strExplain = 'Vysv<73>tlit dotaz';
|
$strExplain = 'Vysv<73>tlit dotaz';
|
||||||
@@ -287,7 +288,7 @@ $strExtra = 'Extra';
|
|||||||
|
|
||||||
$strFailedAttempts = 'Nepoveden<65>ch pokus<75>';
|
$strFailedAttempts = 'Nepoveden<65>ch pokus<75>';
|
||||||
$strFieldHasBeenDropped = 'Sloupec %s byl odstran<61>n';
|
$strFieldHasBeenDropped = 'Sloupec %s byl odstran<61>n';
|
||||||
$strFieldInsertFromFileTempDirNotExists = 'Chyba p<>i p<>ejmenov<6F>n<EFBFBD> nahr<EFBFBD>t<EFBFBD>ho soubory, viz FAQ 1.11';
|
$strFieldInsertFromFileTempDirNotExists = 'Chyba p<>i p<>ejmenov<6F>n<EFBFBD> nahran<EFBFBD>ho soubory, viz FAQ 1.11';
|
||||||
$strFieldsEmpty = ' Nebyl zad<61>n po<70>et sloupc<70>! ';
|
$strFieldsEmpty = ' Nebyl zad<61>n po<70>et sloupc<70>! ';
|
||||||
$strFieldsEnclosedBy = 'N<>zvy sloupc<70> uzav<61>en<65>';
|
$strFieldsEnclosedBy = 'N<>zvy sloupc<70> uzav<61>en<65>';
|
||||||
$strFieldsEscapedBy = 'N<>zvy sloupc<70> escapov<6F>ny';
|
$strFieldsEscapedBy = 'N<>zvy sloupc<70> escapov<6F>ny';
|
||||||
@@ -305,7 +306,7 @@ $strFileNameTemplate = 'Vzor pro jm
|
|||||||
$strFiles = 'Soubory';
|
$strFiles = 'Soubory';
|
||||||
$strFileToImport = 'Soubor pro importov<6F>n<EFBFBD>';
|
$strFileToImport = 'Soubor pro importov<6F>n<EFBFBD>';
|
||||||
$strFixed = 'pevn<76>';
|
$strFixed = 'pevn<76>';
|
||||||
$strFlushPrivilegesNote = 'Pozn<7A>mka: phpMyAdmin z<>sk<73>v<EFBFBD> opr<70>vn<76>n<EFBFBD> p<><70>mo z tabulek MySQL. Obsah t<>chto tabulek se m<><6D>e li<6C>it od opr<70>vn<76>n<EFBFBD>, kter<65> server pr<70>v<EFBFBD> pou<6F><75>v<EFBFBD>, pokud byly tyto tabulky upravov<6F>ny. V tomto p<><70>pad<61> je vhodn<64> prov<6F>st %sznovuna<EFBFBD>ten<EFBFBD> opr<70>vn<76>n<EFBFBD>%s p<>ed pokra<72>ov<6F>n<EFBFBD>m.';
|
$strFlushPrivilegesNote = 'Pozn<7A>mka: phpMyAdmin z<>sk<73>v<EFBFBD> opr<70>vn<76>n<EFBFBD> p<><70>mo z tabulek MySQL. Obsah t<>chto tabulek se m<><6D>e li<6C>it od opr<70>vn<76>n<EFBFBD>, kter<65> server pr<70>v<EFBFBD> pou<6F><75>v<EFBFBD>, pokud byly tyto tabulky upravov<6F>ny. V tomto p<><70>pad<61> je vhodn<64> prov<6F>st %snov<EFBFBD> na<EFBFBD>ten<EFBFBD> opr<70>vn<76>n<EFBFBD>%s p<>ed pokra<72>ov<6F>n<EFBFBD>m.';
|
||||||
$strFlushQueryCache = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> dotaz<61>';
|
$strFlushQueryCache = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> dotaz<61>';
|
||||||
$strFlushTables = 'Zav<61><76>t v<>echny tabulky';
|
$strFlushTables = 'Zav<61><76>t v<>echny tabulky';
|
||||||
$strFlushTable = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> pro tabulku („FLUSH“)';
|
$strFlushTable = 'Vypr<70>zdnit vyrovn<76>vac<61> pam<61><6D> pro tabulku („FLUSH“)';
|
||||||
@@ -483,7 +484,7 @@ $strMyISAMMaxSortFileSizeDesc = 'Maxim
|
|||||||
$strMyISAMMaxSortFileSize = 'Maxim<69>ln<6C> velikost do<64>asn<73>ch soubor<6F> pro <20>azen<65>';
|
$strMyISAMMaxSortFileSize = 'Maxim<69>ln<6C> velikost do<64>asn<73>ch soubor<6F> pro <20>azen<65>';
|
||||||
$strMyISAMRecoverOptions = 'Automatick<63> re<72>im obnovy';
|
$strMyISAMRecoverOptions = 'Automatick<63> re<72>im obnovy';
|
||||||
$strMyISAMRecoverOptionsDesc = 'Re<52>im automatick<63> obnovy po<70>kozen<65>ch MyISAM tabulek. Nastavuje se parametrem --myisam-recover p<>i spou<6F>t<EFBFBD>n<EFBFBD> serveru.';
|
$strMyISAMRecoverOptionsDesc = 'Re<52>im automatick<63> obnovy po<70>kozen<65>ch MyISAM tabulek. Nastavuje se parametrem --myisam-recover p<>i spou<6F>t<EFBFBD>n<EFBFBD> serveru.';
|
||||||
$strMyISAMRepairThreadsDesc = 'Pokud je tato hodnota v<>t<EFBFBD><74> ne<6E> 1, indexy v MyISAM tabulk<6C>ch jsou vytv<74><76>eny paralelen<EFBFBD> (ka<6B>d<EFBFBD> index vlastn<74>m threadem) p<>i obnov<6F> nebo <20>azen<65>.';
|
$strMyISAMRepairThreadsDesc = 'Pokud je tato hodnota v<>t<EFBFBD><74> ne<6E> 1, indexy v MyISAM tabulk<6C>ch jsou vytv<74><76>eny paraleln<6C> (ka<6B>d<EFBFBD> index vlastn<74>m threadem) p<>i obnov<6F> nebo <20>azen<65>.';
|
||||||
$strMyISAMRepairThreads = 'Thread<61> pro opravov<6F>n<EFBFBD>';
|
$strMyISAMRepairThreads = 'Thread<61> pro opravov<6F>n<EFBFBD>';
|
||||||
$strMyISAMSortBufferSizeDesc = 'Pam<61><6D>, kter<65> je alokov<6F>na p<>i <20>azen<65> MyISAM index<65> b<>hem jejich vytv<74><76>en<65> nebo opravov<6F>n<EFBFBD>.';
|
$strMyISAMSortBufferSizeDesc = 'Pam<61><6D>, kter<65> je alokov<6F>na p<>i <20>azen<65> MyISAM index<65> b<>hem jejich vytv<74><76>en<65> nebo opravov<6F>n<EFBFBD>.';
|
||||||
$strMyISAMSortBufferSize = 'Velikost pam<61>ti pro <20>azen<65>';
|
$strMyISAMSortBufferSize = 'Velikost pam<61>ti pro <20>azen<65>';
|
||||||
@@ -612,7 +613,7 @@ $strPrivDescMaxUserConnections = 'Omezuje po
|
|||||||
$strPrivDescProcess3 = 'Umo<6D><6F>uje ukon<6F>it procesy jin<69>m u<>ivatel<65>m.';
|
$strPrivDescProcess3 = 'Umo<6D><6F>uje ukon<6F>it procesy jin<69>m u<>ivatel<65>m.';
|
||||||
$strPrivDescProcess4 = 'Umo<6D><6F>uje vid<69>t cel<65> dotazy v seznamu proces<65>.';
|
$strPrivDescProcess4 = 'Umo<6D><6F>uje vid<69>t cel<65> dotazy v seznamu proces<65>.';
|
||||||
$strPrivDescReferences = 'Nem<65> <20><>dn<64> vliv v t<>to verzi MySQL.';
|
$strPrivDescReferences = 'Nem<65> <20><>dn<64> vliv v t<>to verzi MySQL.';
|
||||||
$strPrivDescReload = 'Umo<6D><6F>uje znovuna<6E>ten<EFBFBD> nastaven<65> a vypr<70>zdn<64>n<EFBFBD> vyrovn<76>vac<61>ch pam<61>t<EFBFBD> MySQL serveru.';
|
$strPrivDescReload = 'Umo<6D><6F>uje znovu na<EFBFBD><EFBFBD>st nastaven<65> a vypr<70>zdn<64>n<EFBFBD> vyrovn<76>vac<61>ch pam<61>t<EFBFBD> MySQL serveru.';
|
||||||
$strPrivDescReplClient = 'Umo<6D>n<EFBFBD> u<>ivateli zjistit, kde je hlavn<76> / pomocn<63> server.';
|
$strPrivDescReplClient = 'Umo<6D>n<EFBFBD> u<>ivateli zjistit, kde je hlavn<76> / pomocn<63> server.';
|
||||||
$strPrivDescReplSlave = 'Pot<6F>ebn<62> pro replikaci pomocn<63>ch server<65>.';
|
$strPrivDescReplSlave = 'Pot<6F>ebn<62> pro replikaci pomocn<63>ch server<65>.';
|
||||||
$strPrivDescSelect = 'Umo<6D><6F>uje vyb<79>rat data.';
|
$strPrivDescSelect = 'Umo<6D><6F>uje vyb<79>rat data.';
|
||||||
@@ -623,7 +624,7 @@ $strPrivDescSuper = 'Umo
|
|||||||
$strPrivDescUpdate = 'Umo<6D><6F>uje m<>nit data.';
|
$strPrivDescUpdate = 'Umo<6D><6F>uje m<>nit data.';
|
||||||
$strPrivDescUsage = '<27><>dn<64> opr<70>vn<76>n<EFBFBD>.';
|
$strPrivDescUsage = '<27><>dn<64> opr<70>vn<76>n<EFBFBD>.';
|
||||||
$strPrivileges = 'Opr<70>vn<76>n<EFBFBD>';
|
$strPrivileges = 'Opr<70>vn<76>n<EFBFBD>';
|
||||||
$strPrivilegesReloaded = 'Opr<70>vn<76>n<EFBFBD> byla znovuna<EFBFBD>tena <20>sp<73><70>n<EFBFBD>.';
|
$strPrivilegesReloaded = 'Opr<70>vn<76>n<EFBFBD> byla na<6E>tena <20>sp<73><70>n<EFBFBD>.';
|
||||||
$strProcedures = 'Procedury';
|
$strProcedures = 'Procedury';
|
||||||
$strProcesses = 'Procesy';
|
$strProcesses = 'Procesy';
|
||||||
$strProcesslist = 'Seznam proces<65>';
|
$strProcesslist = 'Seznam proces<65>';
|
||||||
@@ -655,7 +656,7 @@ $strRelationNotWorking = 'N
|
|||||||
$strRelationsForTable = 'RELACE PRO TABULKU';
|
$strRelationsForTable = 'RELACE PRO TABULKU';
|
||||||
$strRelations = 'Relace';
|
$strRelations = 'Relace';
|
||||||
$strRelationView = 'Zobrazit relace';
|
$strRelationView = 'Zobrazit relace';
|
||||||
$strReloadingThePrivileges = 'Znovuna<EFBFBD><EFBFBD>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
$strReloadingThePrivileges = 'Na<EFBFBD><EFBFBD>t<EFBFBD>m opr<70>vn<76>n<EFBFBD>';
|
||||||
$strReloadPrivileges = 'Znovu na<6E><61>st opr<70>vn<76>n<EFBFBD>';
|
$strReloadPrivileges = 'Znovu na<6E><61>st opr<70>vn<76>n<EFBFBD>';
|
||||||
$strReload = 'Znovu na<6E><61>st';
|
$strReload = 'Znovu na<6E><61>st';
|
||||||
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
$strRemoveSelectedUsers = 'Odstranit vybran<61> u<>ivatele';
|
||||||
@@ -668,6 +669,7 @@ $strReplaceTable = 'P
|
|||||||
$strReplication = 'Replikace';
|
$strReplication = 'Replikace';
|
||||||
$strReset = 'P<>vodn<64>';
|
$strReset = 'P<>vodn<64>';
|
||||||
$strResourceLimits = 'Omezen<65> zdroj<6F>';
|
$strResourceLimits = 'Omezen<65> zdroj<6F>';
|
||||||
|
$strRestartInsertion = 'Za<5A><61>t znovu vkl<6B>d<EFBFBD>n<EFBFBD> s %s <20><>dky';
|
||||||
$strReType = 'Heslo znovu';
|
$strReType = 'Heslo znovu';
|
||||||
$strRevokeAndDeleteDescr = 'U<>ivatel<65> budou m<>t opr<70>vn<76>n<EFBFBD> „USAGE“ (pou<6F><75>v<EFBFBD>n<EFBFBD>), dokud nebudou znovu na<6E>tena opr<70>vn<76>n<EFBFBD>.';
|
$strRevokeAndDeleteDescr = 'U<>ivatel<65> budou m<>t opr<70>vn<76>n<EFBFBD> „USAGE“ (pou<6F><75>v<EFBFBD>n<EFBFBD>), dokud nebudou znovu na<6E>tena opr<70>vn<76>n<EFBFBD>.';
|
||||||
$strRevokeAndDelete = 'Odebrat u<>ivatel<65>m ve<76>ker<65> opr<70>vn<76>n<EFBFBD> a pot<6F> je odstranit z tabulek.';
|
$strRevokeAndDelete = 'Odebrat u<>ivatel<65>m ve<76>ker<65> opr<70>vn<76>n<EFBFBD> a pot<6F> je odstranit z tabulek.';
|
||||||
@@ -760,7 +762,7 @@ $strShowStatusHandler_read_firstDescr = 'Po
|
|||||||
$strShowStatusHandler_read_keyDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> <20><>dku vych<63>zej<65>c<EFBFBD> z indexu. Vysok<6F> hodnota znamen<65>, <20>e dotazy spr<70>vn<76> vyu<79><75>vaj<61> indexy.';
|
$strShowStatusHandler_read_keyDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> <20><>dku vych<63>zej<65>c<EFBFBD> z indexu. Vysok<6F> hodnota znamen<65>, <20>e dotazy spr<70>vn<76> vyu<79><75>vaj<61> indexy.';
|
||||||
$strShowStatusHandler_read_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku podle indexu. Tato hodnota se zv<7A>t<EFBFBD>uje pokud prov<6F>d<EFBFBD>te dotaz na indexovan<61> sloupec s omezen<65>m rozsahu nebo prohled<65>v<EFBFBD>te index.';
|
$strShowStatusHandler_read_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku podle indexu. Tato hodnota se zv<7A>t<EFBFBD>uje pokud prov<6F>d<EFBFBD>te dotaz na indexovan<61> sloupec s omezen<65>m rozsahu nebo prohled<65>v<EFBFBD>te index.';
|
||||||
$strShowStatusHandler_read_prevDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> p<>edchoz<6F>ho <20><>dku z indexu. Pou<6F><75>van<61> pro optimalizaci dotaz<61> ORDER BY ... DESC.';
|
$strShowStatusHandler_read_prevDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> p<>edchoz<6F>ho <20><>dku z indexu. Pou<6F><75>van<61> pro optimalizaci dotaz<61> ORDER BY ... DESC.';
|
||||||
$strShowStatusHandler_read_rndDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> konkr<6B>tn<74>ho <20><>dku tabulky. Vysok<6F> hodnota znamen<65>, <20>e prov<6F>d<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> <20>azen<65> v<>sledk<64>. Pravd<76>podobn<62> pou<6F><75>v<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> prohl<68><6C>en<65> cel<65> tabulky nebo pou<6F><75>v<EFBFBD>te spojen<65> tabulek, kter<65> nevyu<79><75>vaj<61> index<65>.';
|
$strShowStatusHandler_read_rndDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> konkr<6B>tn<74>ho <20><>dku tabulky. Vysok<6F> hodnota znamen<65>, <20>e prov<6F>d<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> <20>azen<65> v<>sledk<64>. Pravd<76>podobn<62> pou<6F><75>v<EFBFBD>te mnoho dotaz<61>, kter<65> vy<76>aduj<75> prohl<68><6C>en<65> cel<65> tabulky nebo pou<6F><75>v<EFBFBD>te spojen<65> tabulek, kter<65> nevyu<79><75>vaj<61> index<65>.';
|
||||||
$strShowStatusHandler_read_rnd_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku ze souboru. Tato hodnota je vysok<6F> pokud dotazy proch<63>zej<65> cel<65> tabulky, pravd<76>podobn<62> tedy nemaj<61> vhodn<64> indexy.';
|
$strShowStatusHandler_read_rnd_nextDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> dal<61><6C>ho <20><>dku ze souboru. Tato hodnota je vysok<6F> pokud dotazy proch<63>zej<65> cel<65> tabulky, pravd<76>podobn<62> tedy nemaj<61> vhodn<64> indexy.';
|
||||||
$strShowStatusHandler_rollbackDescr = 'Po<50>et intern<72>ch p<><70>kaz<61> ROLLBACK.';
|
$strShowStatusHandler_rollbackDescr = 'Po<50>et intern<72>ch p<><70>kaz<61> ROLLBACK.';
|
||||||
$strShowStatusHandler_updateDescr = 'Po<50>et po<70>adavk<76> na aktualizaci <20><>dku.';
|
$strShowStatusHandler_updateDescr = 'Po<50>et po<70>adavk<76> na aktualizaci <20><>dku.';
|
||||||
@@ -783,8 +785,8 @@ $strShowStatusInnodb_data_pending_fsyncsDescr = 'Po
|
|||||||
$strShowStatusInnodb_data_pending_readsDescr = 'Po<50>et nevy<76><79>zen<65>ch <20>ten<65>.';
|
$strShowStatusInnodb_data_pending_readsDescr = 'Po<50>et nevy<76><79>zen<65>ch <20>ten<65>.';
|
||||||
$strShowStatusInnodb_data_pending_writesDescr = 'Po<50>et nevy<76><79>zen<65>ch z<>pis<69>.';
|
$strShowStatusInnodb_data_pending_writesDescr = 'Po<50>et nevy<76><79>zen<65>ch z<>pis<69>.';
|
||||||
$strShowStatusInnodb_data_readDescr = 'Velikost p<>e<EFBFBD>ten<65>ch dat, v bajtech.';
|
$strShowStatusInnodb_data_readDescr = 'Velikost p<>e<EFBFBD>ten<65>ch dat, v bajtech.';
|
||||||
$strShowStatusInnodb_data_readsDescr = 'Po<50>et proveden<65>ch <20>ten<65> dat.';
|
$strShowStatusInnodb_data_readsDescr = 'Po<50>et proveden<65>ch <20>ten<65> dat.';
|
||||||
$strShowStatusInnodb_data_writesDescr = 'Po<50>et proveden<65>ch z<>pis<69> dat.';
|
$strShowStatusInnodb_data_writesDescr = 'Po<50>et proveden<65>ch z<>pis<69> dat.';
|
||||||
$strShowStatusInnodb_data_writtenDescr = 'Velikost zapsan<61>ch dat, v bajtech.';
|
$strShowStatusInnodb_data_writtenDescr = 'Velikost zapsan<61>ch dat, v bajtech.';
|
||||||
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
$strShowStatusInnodb_dblwr_pages_writtenDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
||||||
$strShowStatusInnodb_dblwr_writesDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
$strShowStatusInnodb_dblwr_writesDescr = 'Po<50>et proveden<65>ch dvojit<69>ch zaps<70>n<EFBFBD> a po<70>et str<74>nek, kter<65> byly takto zaps<70>ny.';
|
||||||
@@ -804,18 +806,18 @@ $strShowStatusInnodb_row_lock_time_avgDescr = 'Pr
|
|||||||
$strShowStatusInnodb_row_lock_timeDescr = 'Celkov<6F> <20>as str<74>ven<65> <20>ek<65>n<EFBFBD>m na z<>mek <20><>dku, v milisekund<6E>ch.';
|
$strShowStatusInnodb_row_lock_timeDescr = 'Celkov<6F> <20>as str<74>ven<65> <20>ek<65>n<EFBFBD>m na z<>mek <20><>dku, v milisekund<6E>ch.';
|
||||||
$strShowStatusInnodb_row_lock_time_maxDescr = 'Maxim<69>ln<6C> <20>as pot<6F>ebn<62> pro z<>sk<73>n<EFBFBD> z<>mku <20><>dku, v milisekund<6E>ch.';
|
$strShowStatusInnodb_row_lock_time_maxDescr = 'Maxim<69>ln<6C> <20>as pot<6F>ebn<62> pro z<>sk<73>n<EFBFBD> z<>mku <20><>dku, v milisekund<6E>ch.';
|
||||||
$strShowStatusInnodb_row_lock_waitsDescr = 'Kolikr<6B>t se muselo <20>ekat na z<>mek <20><>dku.';
|
$strShowStatusInnodb_row_lock_waitsDescr = 'Kolikr<6B>t se muselo <20>ekat na z<>mek <20><>dku.';
|
||||||
$strShowStatusInnodb_rows_deletedDescr = 'Po<50>et <20><>dk<64> ostran<61>n<EFBFBD>ch z InnoDB tabulek.';
|
$strShowStatusInnodb_rows_deletedDescr = 'Po<50>et <20><>dk<64> odstran<EFBFBD>n<EFBFBD>ch z InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_insertedDescr = 'Po<50>et <20><>dk<64> vlo<6C>en<65>ch do InnoDB tabulek.';
|
$strShowStatusInnodb_rows_insertedDescr = 'Po<50>et <20><>dk<64> vlo<6C>en<65>ch do InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_readDescr = 'Po<50>et <20><>dk<64> p<>e<EFBFBD>ten<65>ch z InnoDB tabulek.';
|
$strShowStatusInnodb_rows_readDescr = 'Po<50>et <20><>dk<64> p<>e<EFBFBD>ten<65>ch z InnoDB tabulek.';
|
||||||
$strShowStatusInnodb_rows_updatedDescr = 'Po<50>et <20><>dk<64> aktualizovan<61>ch v InnoDB tabulk<6C>ch.';
|
$strShowStatusInnodb_rows_updatedDescr = 'Po<50>et <20><>dk<64> aktualizovan<61>ch v InnoDB tabulk<6C>ch.';
|
||||||
$strShowStatusKey_blocks_not_flushedDescr = 'Po<50>et blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>, kter<65> byly zm<7A>n<EFBFBD>ny, ale nebyly zaps<70>ny na disk. D<><44>ve se tato hodnota jmenovala Not_flushed_key_blocks.';
|
$strShowStatusKey_blocks_not_flushedDescr = 'Po<50>et blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>, kter<65> byly zm<7A>n<EFBFBD>ny, ale nebyly zaps<70>ny na disk. D<><44>ve se tato hodnota jmenovala Not_flushed_key_blocks.';
|
||||||
$strShowStatusKey_blocks_unusedDescr = 'Po<50>et nepou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Pomoc<6F> t<>to hodoty pozn<7A>te jak moc je vyrovn<76>vac<61> pam<61><6D> vyu<79>it<69>.';
|
$strShowStatusKey_blocks_unusedDescr = 'Po<50>et nepou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Pomoc<6F> t<>to hodnoty pozn<7A>te jak moc je vyrovn<76>vac<61> pam<61><6D> vyu<79>it<69>.';
|
||||||
$strShowStatusKey_blocks_usedDescr = 'Po<50>et pou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Tato hodnota ur<75>uje maximum blok<6F>, kter<65> kdy byly obsazeny najednou.';
|
$strShowStatusKey_blocks_usedDescr = 'Po<50>et pou<6F>it<69>ch blok<6F> ve vyrovn<76>vac<61> pam<61>ti kl<6B><6C><EFBFBD>. Tato hodnota ur<75>uje maximum blok<6F>, kter<65> kdy byly obsazeny najednou.';
|
||||||
$strShowStatusKey_read_requestsDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> kl<6B><6C>e z vyrovn<76>vac<61> pam<61>ti.';
|
$strShowStatusKey_read_requestsDescr = 'Po<50>et po<70>adavk<76> na p<>e<EFBFBD>ten<65> kl<6B><6C>e z vyrovn<76>vac<61> pam<61>ti.';
|
||||||
$strShowStatusKey_readsDescr = 'Po<50>et skute<74>n<EFBFBD>ch <20>ten<65> bloku zkl<6B><6C>e z disku. Pokud je hodnota p<><70>li<6C> velk<6C>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> (key_buffer_size). <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>ete spo<70><6F>tat jako Key_reads/Key_read_requests.';
|
$strShowStatusKey_readsDescr = 'Po<50>et skute<74>n<EFBFBD>ch <20>ten<65> bloku zkl<6B><6C>e z disku. Pokud je hodnota p<><70>li<6C> velk<6C>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> (key_buffer_size). <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>ete spo<70><6F>tat jako Key_reads/Key_read_requests.';
|
||||||
$strShowStatusKey_write_requestsDescr = 'Po<50>et po<70>adavk<76> na z<>pis bloku kl<6B><6C>e na disk.';
|
$strShowStatusKey_write_requestsDescr = 'Po<50>et po<70>adavk<76> na z<>pis bloku kl<6B><6C>e na disk.';
|
||||||
$strShowStatusKey_writesDescr = 'Po<50>et skute<74>n<EFBFBD>ch z<>pis<69> bloku kl<6B><6C>e na disk.';
|
$strShowStatusKey_writesDescr = 'Po<50>et skute<74>n<EFBFBD>ch z<>pis<69> bloku kl<6B><6C>e na disk.';
|
||||||
$strShowStatusLast_query_costDescr = 'Celkov<6F> cena posledn<64>ho kompilovan<61>ho dotazu spo<70><6F>tan<61> optimaliz<69>rem dotaz<61>. U<>ite<74>n<EFBFBD> pro porovn<76>n<EFBFBD> r<>zn<7A>ch dotaz<61>. V<>choz<6F> hodnota 0 znamen<65>, <20>e <20><>dn<64> dotaz je<6A>t<EFBFBD> nebyl kompilov<6F>n.';
|
$strShowStatusLast_query_costDescr = 'Celkov<6F> cena posledn<64>ho kompilovan<61>ho dotazu spo<70><6F>tan<61> optimaliz<69>torem dotaz<61>. U<>ite<74>n<EFBFBD> pro porovn<76>n<EFBFBD> r<>zn<7A>ch dotaz<61>. V<>choz<6F> hodnota 0 znamen<65>, <20>e <20><>dn<64> dotaz je<6A>t<EFBFBD> nebyl kompilov<6F>n.';
|
||||||
$strShowStatusNot_flushed_delayed_rowsDescr = 'Po<50>et <20><>dk<64> <20>ekaj<61>c<EFBFBD>ch na zaps<70>n<EFBFBD> ve front<6E> INSERT DELAYED.';
|
$strShowStatusNot_flushed_delayed_rowsDescr = 'Po<50>et <20><>dk<64> <20>ekaj<61>c<EFBFBD>ch na zaps<70>n<EFBFBD> ve front<6E> INSERT DELAYED.';
|
||||||
$strShowStatusOpened_tablesDescr = 'Celkem otev<65>en<65>ch tabulek. Pokud je tato hodnota p<><70>li<6C> vysok<6F>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> pro tabulky.';
|
$strShowStatusOpened_tablesDescr = 'Celkem otev<65>en<65>ch tabulek. Pokud je tato hodnota p<><70>li<6C> vysok<6F>, pravd<76>podobn<62> m<>te malou vyrovn<76>vac<61> pam<61><6D> pro tabulky.';
|
||||||
$strShowStatusOpen_filesDescr = 'Po<50>et otev<65>en<65>ch soubor<6F>.';
|
$strShowStatusOpen_filesDescr = 'Po<50>et otev<65>en<65>ch soubor<6F>.';
|
||||||
@@ -824,7 +826,7 @@ $strShowStatusOpen_tablesDescr = 'Po
|
|||||||
$strShowStatusQcache_free_blocksDescr = 'Po<50>et voln<6C>ch blok<6F> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_free_blocksDescr = 'Po<50>et voln<6C>ch blok<6F> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_free_memoryDescr = 'Velikost voln<6C> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_free_memoryDescr = 'Velikost voln<6C> pam<61>ti ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_hitsDescr = 'Po<50>et z<>sah<61> vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_hitsDescr = 'Po<50>et z<>sah<61> vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_insertsDescr = 'Po<50>et dotaz<61>ch p<>idan<61>ch do vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_insertsDescr = 'Po<50>et dotaz<61> p<>idan<61>ch do vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
$strShowStatusQcache_lowmem_prunesDescr = 'Po<50>et dotaz<61> odstran<61>n<EFBFBD>ch z vyrovn<76>vac<61> pam<61>ti dotaz<61> aby uvolnily m<>sto pro nov<6F>. Tato hodnota m<><6D>e pomoci v nastaven<65> velikosti vyrovn<76>vac<61> pam<61>ti. Vyrovn<76>vac<61> pam<61><6D> pou<6F><75>v<EFBFBD> strategii LRU (nejd<6A>le nepou<6F>it<69>) pro vy<76>azov<6F>n<EFBFBD> dotaz<61> z vyrovn<76>vac<61> pam<61>ti.';
|
$strShowStatusQcache_lowmem_prunesDescr = 'Po<50>et dotaz<61> odstran<61>n<EFBFBD>ch z vyrovn<76>vac<61> pam<61>ti dotaz<61> aby uvolnily m<>sto pro nov<6F>. Tato hodnota m<><6D>e pomoci v nastaven<65> velikosti vyrovn<76>vac<61> pam<61>ti. Vyrovn<76>vac<61> pam<61><6D> pou<6F><75>v<EFBFBD> strategii LRU (nejd<6A>le nepou<6F>it<69>) pro vy<76>azov<6F>n<EFBFBD> dotaz<61> z vyrovn<76>vac<61> pam<61>ti.';
|
||||||
$strShowStatusQcache_not_cachedDescr = 'Po<50>et necachovan<61>ch dotaz<61> (necachovateln<6C>ch nebo necachovan<61>ch kv<6B>li nastaven<65> query_cache_type).';
|
$strShowStatusQcache_not_cachedDescr = 'Po<50>et necachovan<61>ch dotaz<61> (necachovateln<6C>ch nebo necachovan<61>ch kv<6B>li nastaven<65> query_cache_type).';
|
||||||
$strShowStatusQcache_queries_in_cacheDescr = 'Po<50>et dotaz<61> ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
$strShowStatusQcache_queries_in_cacheDescr = 'Po<50>et dotaz<61> ve vyrovn<76>vac<61> pam<61>ti dotaz<61>.';
|
||||||
@@ -834,19 +836,19 @@ $strShowStatusRpl_statusDescr = 'Stav failsafe replikace.';
|
|||||||
$strShowStatusSelect_full_joinDescr = 'Po<50>et spojen<65>, kter<65> nevyu<79><75>valy indexy. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
$strShowStatusSelect_full_joinDescr = 'Po<50>et spojen<65>, kter<65> nevyu<79><75>valy indexy. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
||||||
$strShowStatusSelect_full_range_joinDescr = 'Po<50>et spojen<65>, kter<65> pou<6F><75>valy intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na referen<65>n<EFBFBD> tabulce.';
|
$strShowStatusSelect_full_range_joinDescr = 'Po<50>et spojen<65>, kter<65> pou<6F><75>valy intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na referen<65>n<EFBFBD> tabulce.';
|
||||||
$strShowStatusSelect_range_checkDescr = 'Po<50>et spojen<65> bez kl<6B><6C><EFBFBD>, kter<65> kontrolovaly pou<6F>it<69> kl<6B><6C><EFBFBD> po ka<6B>d<EFBFBD>m <20><>dku. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
$strShowStatusSelect_range_checkDescr = 'Po<50>et spojen<65> bez kl<6B><6C><EFBFBD>, kter<65> kontrolovaly pou<6F>it<69> kl<6B><6C><EFBFBD> po ka<6B>d<EFBFBD>m <20><>dku. Pokud tato hodnota nen<65> 0, m<>li byste zkontrolovat indexy tabulek.';
|
||||||
$strShowStatusSelect_rangeDescr = 'Po<50>et spojen<65>, kter<65> pou<6F>ivaly intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na prvn<76> tabulce. Tato hodnota obvykle nen<65> kritick<63> i kdy<64> je vysok<6F>.';
|
$strShowStatusSelect_rangeDescr = 'Po<50>et spojen<65>, kter<65> pou<6F><EFBFBD>valy intervalov<6F> vyhled<65>v<EFBFBD>n<EFBFBD> na prvn<76> tabulce. Tato hodnota obvykle nen<65> kritick<63> i kdy<64> je vysok<6F>.';
|
||||||
$strShowStatusSelect_scanDescr = 'Po<50>et spojen<65>, kter<65> prov<6F>d<EFBFBD>ly kompletn<74> proch<63>zen<65> prvn<76> tabulky.';
|
$strShowStatusSelect_scanDescr = 'Po<50>et spojen<65>, kter<65> prov<6F>d<EFBFBD>ly kompletn<74> proch<63>zen<65> prvn<76> tabulky.';
|
||||||
$strShowStatusSlave_open_temp_tablesDescr = 'Po<50>et do<64>asn<73>ch tabulek v sou<6F>asn<73> dob<6F> otev<65>en<65>ch pod<6F><64>zen<65>m serverem.';
|
$strShowStatusSlave_open_temp_tablesDescr = 'Po<50>et do<64>asn<73>ch tabulek v sou<6F>asn<73> dob<6F> otev<65>en<65>ch pod<6F><64>zen<65>m serverem.';
|
||||||
$strShowStatusSlave_retried_transactionsDescr = 'Celkov<6F> po<70>ek, kolikr<6B>t musel pod<6F><64>zen<65> server opakovat transakce.';
|
$strShowStatusSlave_retried_transactionsDescr = 'Celkov<6F> po<70>et, kolikr<6B>t musel pod<6F><64>zen<65> server opakovat transakce.';
|
||||||
$strShowStatusSlave_runningDescr = 'Tato polo<6C>ka je zapnut<75>, pokud server pracuje jako pod<6F><64>zen<65>.';
|
$strShowStatusSlave_runningDescr = 'Tato polo<6C>ka je zapnut<75>, pokud server pracuje jako pod<6F><64>zen<65>.';
|
||||||
$strShowStatusSlow_launch_threadsDescr = 'Po<50>et vl<76>ken jejih<69> vytvo<76>en<65> trvalo d<>le ne<6E> slow_launch_time sekund.';
|
$strShowStatusSlow_launch_threadsDescr = 'Po<50>et vl<76>ken jejich<EFBFBD> vytvo<76>en<65> trvalo d<>le ne<6E> slow_launch_time sekund.';
|
||||||
$strShowStatusSlow_queriesDescr = 'Po<50>et dotaz<61>, kter<65> trvaly d<>le ne<6E> long_query_time sekund.';
|
$strShowStatusSlow_queriesDescr = 'Po<50>et dotaz<61>, kter<65> trvaly d<>le ne<6E> long_query_time sekund.';
|
||||||
$strShowStatusSort_merge_passesDescr = 'Po<50>et pr<70>chod<6F> slu<6C>ov<6F>n<EFBFBD>, kter<65> musel prov<6F>st <20>adic<69> algoritmus. P<>i p<><70>li<6C> vysok<6F> hodnot<6F> zva<76>te zv<7A><76>en<65> sort_buffer_size.';
|
$strShowStatusSort_merge_passesDescr = 'Po<50>et pr<70>chod<6F> slu<6C>ov<6F>n<EFBFBD>, kter<65> musel prov<6F>st <20>adic<69> algoritmus. P<>i p<><70>li<6C> vysok<6F> hodnot<6F> zva<76>te zv<7A><76>en<65> sort_buffer_size.';
|
||||||
$strShowStatusSort_rangeDescr = 'Po<50>et <20>azen<65>, kter<65> byly omezeny rozsahem.';
|
$strShowStatusSort_rangeDescr = 'Po<50>et <20>azen<65>, kter<65> byly omezeny rozsahem.';
|
||||||
$strShowStatusSort_rowsDescr = 'Po<50>et <20>azen<65>ch <20><>dek.';
|
$strShowStatusSort_rowsDescr = 'Po<50>et <20>azen<65>ch <20><>dek.';
|
||||||
$strShowStatusSort_scanDescr = 'Po<50>et <20>azen<65> proveden<65>ch proch<63>zen<65>m tabulky.';
|
$strShowStatusSort_scanDescr = 'Po<50>et <20>azen<65> proveden<65>ch proch<63>zen<65>m tabulky.';
|
||||||
$strShowStatusTable_locks_immediateDescr = 'Po<50>ek okam<61>it<69>ch z<>sk<73>n<EFBFBD> z<>mku tabulky.';
|
$strShowStatusTable_locks_immediateDescr = 'Po<50>et okam<61>it<69>ch z<>sk<73>n<EFBFBD> z<>mku tabulky.';
|
||||||
$strShowStatusTable_locks_waitedDescr = 'Po<50>et <20>ek<65>n<EFBFBD> na z<>sk<73>n<EFBFBD> z<>mku tabulky. Pokud je tato hodnota vysok<6F> a m<>te probl<62>my s v<>konem, m<>li byste optimalizovat dostazy a p<><70>padn<64> rozd<7A>lit tabulky nebo pou<6F><75>t replikaci.';
|
$strShowStatusTable_locks_waitedDescr = 'Po<50>et <20>ek<65>n<EFBFBD> na z<>sk<73>n<EFBFBD> z<>mku tabulky. Pokud je tato hodnota vysok<6F> a m<>te probl<62>my s v<>konem, m<>li byste optimalizovat dotazy a p<><70>padn<64> rozd<7A>lit tabulky nebo pou<6F><75>t replikaci.';
|
||||||
$strShowStatusThreads_cachedDescr = 'Po<50>et vl<76>ken ve vyrovn<76>vac<61> pam<61>ti. <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>e b<>t spo<70><6F>t<EFBFBD>na jako Threads_created/Connections. Pokud je tato hodnota <20>erven<65>, m<>li byste zv<7A><76>it thread_cache_size.';
|
$strShowStatusThreads_cachedDescr = 'Po<50>et vl<76>ken ve vyrovn<76>vac<61> pam<61>ti. <20>sp<73><70>nost vyrovn<76>vac<61> pam<61>ti m<><6D>e b<>t spo<70><6F>t<EFBFBD>na jako Threads_created/Connections. Pokud je tato hodnota <20>erven<65>, m<>li byste zv<7A><76>it thread_cache_size.';
|
||||||
$strShowStatusThreads_connectedDescr = 'Po<50>et aktu<74>ln<6C> otev<65>en<65>ch p<>ipojen<65>.';
|
$strShowStatusThreads_connectedDescr = 'Po<50>et aktu<74>ln<6C> otev<65>en<65>ch p<>ipojen<65>.';
|
||||||
$strShowStatusThreads_createdDescr = 'Po<50>et vl<76>ken vytvo<76>en<65>ch pro obsluhu p<>ipojen<65>. Pokud je hodnota p<><70>li<6C> velk<6C>, m<><6D>ete zv<7A>t<EFBFBD>it parametr thread_cache_size. Na platform<72>ch, kter<65> maj<61> dobrou implementaci vl<76>ken v<>ak toto nem<65> p<><70>li<6C> velk<6C> vliv.';
|
$strShowStatusThreads_createdDescr = 'Po<50>et vl<76>ken vytvo<76>en<65>ch pro obsluhu p<>ipojen<65>. Pokud je hodnota p<><70>li<6C> velk<6C>, m<><6D>ete zv<7A>t<EFBFBD>it parametr thread_cache_size. Na platform<72>ch, kter<65> maj<61> dobrou implementaci vl<76>ken v<>ak toto nem<65> p<><70>li<6C> velk<6C> vliv.';
|
||||||
@@ -863,7 +865,7 @@ $strSlovak = 'Sloven
|
|||||||
$strSlovenian = 'Slovin<69>tina';
|
$strSlovenian = 'Slovin<69>tina';
|
||||||
$strSmallBigAll = 'V<>e mal<61>/velk<6C>';
|
$strSmallBigAll = 'V<>e mal<61>/velk<6C>';
|
||||||
$strSnapToGrid = 'Zachyt<79>vat na m<><6D><EFBFBD>ku';
|
$strSnapToGrid = 'Zachyt<79>vat na m<><6D><EFBFBD>ku';
|
||||||
$strSocketProblem = '(nebo nen<65> sp<73>vn<76> nastaven lok<6F>ln<6C> socket MySQL serveru)';
|
$strSocketProblem = '(nebo nen<65> spr<EFBFBD>vn<EFBFBD> nastaven lok<6F>ln<6C> socket MySQL serveru)';
|
||||||
$strSortByKey = 'Set<65><74>dit podle kl<6B><6C>e';
|
$strSortByKey = 'Set<65><74>dit podle kl<6B><6C>e';
|
||||||
$strSorting = '<27>azen<65>';
|
$strSorting = '<27>azen<65>';
|
||||||
$strSort = '<27>adit';
|
$strSort = '<27>adit';
|
||||||
@@ -934,7 +936,7 @@ $strThisHost = 'Tento po
|
|||||||
$strThreads = 'Po<50>et vl<76>ken';
|
$strThreads = 'Po<50>et vl<76>ken';
|
||||||
$strThreadSuccessfullyKilled = 'Vl<56>kno %s bylo <20>sp<73><70>n<EFBFBD> zabito.';
|
$strThreadSuccessfullyKilled = 'Vl<56>kno %s bylo <20>sp<73><70>n<EFBFBD> zabito.';
|
||||||
$strTime = '<27>as';
|
$strTime = '<27>as';
|
||||||
$strTimeoutInfo = 'P<>edchoz<6F> <20>mport vy<76>erpal ve<76>ker<65> <20>as, po dal<61><6C>m odesl<73>n<EFBFBD> bude import pokra<72>ovat od pozize %d.';
|
$strTimeoutInfo = 'P<>edchoz<6F> <20>mport vy<76>erpal ve<76>ker<65> <20>as, po dal<61><6C>m odesl<73>n<EFBFBD> bude import pokra<72>ovat od pozice %d.';
|
||||||
$strTimeoutNothingParsed = 'Bohu<68>el b<>hem posledn<64>ho pokusu nebyla <20><>dn<64> data na<6E>tena. Toto obvykle znamen<65>, <20>e phpMyAdmin nebude schopen na<6E><61>st tento soubor, pokud nezv<7A><76><EFBFBD>te <20>asov<6F> limity v PHP.';
|
$strTimeoutNothingParsed = 'Bohu<68>el b<>hem posledn<64>ho pokusu nebyla <20><>dn<64> data na<6E>tena. Toto obvykle znamen<65>, <20>e phpMyAdmin nebude schopen na<6E><61>st tento soubor, pokud nezv<7A><76><EFBFBD>te <20>asov<6F> limity v PHP.';
|
||||||
$strTimeoutPassed = 'Limit pro b<>h importu vypr<70>el, pros<6F>m ode<64>lete formul<75><6C> znovu se stejn<6A>m souborem a import bude pokra<72>ovat.';
|
$strTimeoutPassed = 'Limit pro b<>h importu vypr<70>el, pros<6F>m ode<64>lete formul<75><6C> znovu se stejn<6A>m souborem a import bude pokra<72>ovat.';
|
||||||
$strToFromPage = 'do/ze str<74>nky';
|
$strToFromPage = 'do/ze str<74>nky';
|
||||||
@@ -948,7 +950,7 @@ $strTraditionalSpanish = 'Tradi
|
|||||||
$strTraffic = 'Provoz';
|
$strTraffic = 'Provoz';
|
||||||
$strTransactionCoordinator = 'Koordin<69>tor transakc<6B>';
|
$strTransactionCoordinator = 'Koordin<69>tor transakc<6B>';
|
||||||
$strTransformation_application_octetstream__download = 'Zobraz<61> odkaz na st<73>hnut<75> dat. Prvn<76> parametr je jm<6A>no souboru, druh<75> jm<6A>no sloupce v tabulce obsahuj<75>c<EFBFBD> jm<6A>no souboru. Pokud zad<61>te druh<75> parametr, prvn<76> mus<75> b<>t pr<70>zdn<64>.';
|
$strTransformation_application_octetstream__download = 'Zobraz<61> odkaz na st<73>hnut<75> dat. Prvn<76> parametr je jm<6A>no souboru, druh<75> jm<6A>no sloupce v tabulce obsahuj<75>c<EFBFBD> jm<6A>no souboru. Pokud zad<61>te druh<75> parametr, prvn<76> mus<75> b<>t pr<70>zdn<64>.';
|
||||||
$strTransformation_application_octetstream__hex = 'Zobraz<61> data <20>estn<74>ctkov<6F>. Nepovinn<6E> parameter ur<75>uje po kolika znac<61>ch m<> b<>t p<>id<69>na mezera (v<>choz<6F> hodnota je 2).';
|
$strTransformation_application_octetstream__hex = 'Zobraz<61> data <20>estn<74>ctkov<6F>. Nepovinn<6E> parametr ur<75>uje po kolika znac<61>ch m<> b<>t p<>id<69>na mezera (v<>choz<6F> hodnota je 2).';
|
||||||
$strTransformation_image_jpeg__inline = 'Zobraz<61> n<>hled obr<62>zku s odkazem na obr<62>zek; parametry <20><><EFBFBD>ka a v<><76>ka v bodech (pom<6F>r stran obr<62>zku z<>stane zachov<6F>n)';
|
$strTransformation_image_jpeg__inline = 'Zobraz<61> n<>hled obr<62>zku s odkazem na obr<62>zek; parametry <20><><EFBFBD>ka a v<><76>ka v bodech (pom<6F>r stran obr<62>zku z<>stane zachov<6F>n)';
|
||||||
$strTransformation_image_jpeg__link = 'Zobraz<61> odkaz na obr<62>zek (nap<61><70>klad st<73>hnut<75> pole blob).';
|
$strTransformation_image_jpeg__link = 'Zobraz<61> odkaz na obr<62>zek (nap<61><70>klad st<73>hnut<75> pole blob).';
|
||||||
$strTransformation_image_png__inline = 'Viz image/jpeg: inline';
|
$strTransformation_image_png__inline = 'Viz image/jpeg: inline';
|
||||||
@@ -959,6 +961,7 @@ $strTransformation_text_plain__imagelink = 'Zobraz
|
|||||||
$strTransformation_text_plain__link = 'Zobraz<61> odkaz z pole obsahuj<75>c<EFBFBD>ho odkaz. Prvn<76> parametr je prefix URL (nap<61><70>klad „http://mojedomena.cz/“), druh<75> text odkazu.';
|
$strTransformation_text_plain__link = 'Zobraz<61> odkaz z pole obsahuj<75>c<EFBFBD>ho odkaz. Prvn<76> parametr je prefix URL (nap<61><70>klad „http://mojedomena.cz/“), druh<75> text odkazu.';
|
||||||
$strTransformation_text_plain__sql = 'Zobraz<61> text jako SQL dotaz se zv<7A>raz<61>ov<6F>n<EFBFBD>m syntaxe.';
|
$strTransformation_text_plain__sql = 'Zobraz<61> text jako SQL dotaz se zv<7A>raz<61>ov<6F>n<EFBFBD>m syntaxe.';
|
||||||
$strTransformation_text_plain__substr = 'Zobraz<61> jen <20><>st textu. Prvn<76> parametr je posun od za<7A><61>tku (v<>choz<6F> je 0) a druh<75> ur<75>uje d<>lku textu, kter<65> se m<> zobrazit, pokud nen<65> uveden, bude zobrazen zbytek textu. T<>et<65> parametr ur<75>uje, jak<61> text m<> b<>t p<>id<69>n za zkr<6B>cen<65> text (v<>choz<6F> je ...).';
|
$strTransformation_text_plain__substr = 'Zobraz<61> jen <20><>st textu. Prvn<76> parametr je posun od za<7A><61>tku (v<>choz<6F> je 0) a druh<75> ur<75>uje d<>lku textu, kter<65> se m<> zobrazit, pokud nen<65> uveden, bude zobrazen zbytek textu. T<>et<65> parametr ur<75>uje, jak<61> text m<> b<>t p<>id<69>n za zkr<6B>cen<65> text (v<>choz<6F> je ...).';
|
||||||
|
$strTriggers = 'Spou<6F>t<EFBFBD>';
|
||||||
$strTruncateQueries = 'Zobrazit zkr<6B>cen<65> dotazy';
|
$strTruncateQueries = 'Zobrazit zkr<6B>cen<65> dotazy';
|
||||||
$strTurkish = 'Turecky';
|
$strTurkish = 'Turecky';
|
||||||
$strType = 'Typ';
|
$strType = 'Typ';
|
||||||
|
@@ -1031,4 +1031,7 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Bem<65>rk: Indstilling af disse v<>rdier til 0 (nul) fjerner begr<67>nsningen.';
|
$strZeroRemovesTheLimit = 'Bem<65>rk: Indstilling af disse v<>rdier til 0 (nul) fjerner begr<67>nsningen.';
|
||||||
$strZip = '"zippet"';
|
$strZip = '"zippet"';
|
||||||
|
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1032,4 +1032,7 @@ $strYes = 'Ja';
|
|||||||
$strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.';
|
$strZeroRemovesTheLimit = 'Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen.';
|
||||||
$strZip = '"zippet"';
|
$strZip = '"zippet"';
|
||||||
|
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -91,7 +91,7 @@ $strBzip = '"ge-bzipt"';
|
|||||||
|
|
||||||
$strCalendar = 'Kalender';
|
$strCalendar = 'Kalender';
|
||||||
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
|
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
|
||||||
$strCantLoad = 'Kan de %s extentie niet laden,<br />Controleer de PHP Configuratie';
|
$strCantLoad = 'Kan de [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a]-extensie niet laden. Controleer de PHP configuratie.';
|
||||||
$strCantLoadRecodeIconv = 'Kan iconv of recode extensies niet laden die nodig zijn voor de Karakterset conversie, configureer php om deze extensies toe te laten of schakel Karakterset conversie uit in phpMyAdmin';
|
$strCantLoadRecodeIconv = 'Kan iconv of recode extensies niet laden die nodig zijn voor de Karakterset conversie, configureer php om deze extensies toe te laten of schakel Karakterset conversie uit in phpMyAdmin';
|
||||||
$strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
|
$strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
|
||||||
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
|
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
|
||||||
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -91,7 +91,7 @@ $strBzip = '"ge-bzipt"';
|
|||||||
|
|
||||||
$strCalendar = 'Kalender';
|
$strCalendar = 'Kalender';
|
||||||
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
|
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
|
||||||
$strCantLoad = 'Kan de %s extentie niet laden,<br />Controleer de PHP Configuratie';
|
$strCantLoad = 'Kan de [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a]-extensie niet laden. Controleer de PHP configuratie.';
|
||||||
$strCantLoadRecodeIconv = 'Kan iconv of recode extensies niet laden die nodig zijn voor de Karakterset conversie, configureer php om deze extensies toe te laten of schakel Karakterset conversie uit in phpMyAdmin';
|
$strCantLoadRecodeIconv = 'Kan iconv of recode extensies niet laden die nodig zijn voor de Karakterset conversie, configureer php om deze extensies toe te laten of schakel Karakterset conversie uit in phpMyAdmin';
|
||||||
$strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
|
$strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
|
||||||
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
|
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
|
||||||
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -92,7 +92,7 @@ $strBzip = '"ge-bzipt"';
|
|||||||
|
|
||||||
$strCalendar = 'Kalender';
|
$strCalendar = 'Kalender';
|
||||||
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
|
$strCannotLogin = 'Kan niet inloggen op de MySQL server';
|
||||||
$strCantLoad = 'Kan de %s extentie niet laden,<br />Controleer de PHP Configuratie';
|
$strCantLoad = 'Kan de [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a]-extensie niet laden. Controleer de PHP configuratie.';
|
||||||
$strCantLoadRecodeIconv = 'Kan iconv of recode extensies niet laden die nodig zijn voor de Karakterset conversie, configureer php om deze extensies toe te laten of schakel Karakterset conversie uit in phpMyAdmin';
|
$strCantLoadRecodeIconv = 'Kan iconv of recode extensies niet laden die nodig zijn voor de Karakterset conversie, configureer php om deze extensies toe te laten of schakel Karakterset conversie uit in phpMyAdmin';
|
||||||
$strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
|
$strCantRenameIdxToPrimary = 'Kan index niet naar PRIMARY hernoemen';
|
||||||
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
|
$strCantUseRecodeIconv = 'Kan iconv, libiconv en recode_string functies niet gebruiken zolang de extensies geladen moeten worden. Controleer de php configuratie.';
|
||||||
@@ -1054,4 +1054,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -276,6 +276,7 @@ $strErrorSaveTable = 'Error saving coordinates for Designer.';
|
|||||||
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally';
|
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally';
|
||||||
$strEsperanto = 'Esperanto';
|
$strEsperanto = 'Esperanto';
|
||||||
$strEstonian = 'Estonian';
|
$strEstonian = 'Estonian';
|
||||||
|
$strEvent = 'Event';
|
||||||
$strExcelEdition = 'Excel edition';
|
$strExcelEdition = 'Excel edition';
|
||||||
$strExecuteBookmarked = 'Execute bookmarked query';
|
$strExecuteBookmarked = 'Execute bookmarked query';
|
||||||
$strExplain = 'Explain SQL';
|
$strExplain = 'Explain SQL';
|
||||||
@@ -668,6 +669,7 @@ $strReplaceTable = 'Replace table data with file';
|
|||||||
$strReplication = 'Replication';
|
$strReplication = 'Replication';
|
||||||
$strReset = 'Reset';
|
$strReset = 'Reset';
|
||||||
$strResourceLimits = 'Resource limits';
|
$strResourceLimits = 'Resource limits';
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows';
|
||||||
$strReType = 'Re-type';
|
$strReType = 'Re-type';
|
||||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.';
|
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.';
|
||||||
$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.';
|
$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.';
|
||||||
@@ -959,6 +961,7 @@ $strTransformation_text_plain__imagelink = 'Displays an image and a link; the fi
|
|||||||
$strTransformation_text_plain__link = 'Displays a link; the field contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.';
|
$strTransformation_text_plain__link = 'Displays a link; the field contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.';
|
||||||
$strTransformation_text_plain__sql = 'Formats text as SQL query with syntax highlighting.';
|
$strTransformation_text_plain__sql = 'Formats text as SQL query with syntax highlighting.';
|
||||||
$strTransformation_text_plain__substr = 'Displays a part of a string. The first option is the number of characters to skip from the beginning of the string (Default 0). The second option is the number of characters to return (Default: until end of string). The third option is the string to append and/or prepend when truncation occurs (Default: "...").';
|
$strTransformation_text_plain__substr = 'Displays a part of a string. The first option is the number of characters to skip from the beginning of the string (Default 0). The second option is the number of characters to return (Default: until end of string). The third option is the string to append and/or prepend when truncation occurs (Default: "...").';
|
||||||
|
$strTriggers = 'Triggers';
|
||||||
$strTruncateQueries = 'Truncate Shown Queries';
|
$strTruncateQueries = 'Truncate Shown Queries';
|
||||||
$strTurkish = 'Turkish';
|
$strTurkish = 'Turkish';
|
||||||
$strType = 'Type';
|
$strType = 'Type';
|
||||||
|
@@ -276,6 +276,7 @@ $strErrorSaveTable = 'Error saving coordinates for Designer.';
|
|||||||
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally';
|
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally';
|
||||||
$strEsperanto = 'Esperanto';
|
$strEsperanto = 'Esperanto';
|
||||||
$strEstonian = 'Estonian';
|
$strEstonian = 'Estonian';
|
||||||
|
$strEvent = 'Event';
|
||||||
$strExcelEdition = 'Excel edition';
|
$strExcelEdition = 'Excel edition';
|
||||||
$strExecuteBookmarked = 'Execute bookmarked query';
|
$strExecuteBookmarked = 'Execute bookmarked query';
|
||||||
$strExplain = 'Explain SQL';
|
$strExplain = 'Explain SQL';
|
||||||
@@ -668,6 +669,7 @@ $strReplaceTable = 'Replace table data with file';
|
|||||||
$strReplication = 'Replication';
|
$strReplication = 'Replication';
|
||||||
$strReset = 'Reset';
|
$strReset = 'Reset';
|
||||||
$strResourceLimits = 'Resource limits';
|
$strResourceLimits = 'Resource limits';
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows';
|
||||||
$strReType = 'Re-type';
|
$strReType = 'Re-type';
|
||||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.';
|
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.';
|
||||||
$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.';
|
$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.';
|
||||||
@@ -959,6 +961,7 @@ $strTransformation_text_plain__imagelink = 'Displays an image and a link; the fi
|
|||||||
$strTransformation_text_plain__link = 'Displays a link; the field contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.';
|
$strTransformation_text_plain__link = 'Displays a link; the field contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.';
|
||||||
$strTransformation_text_plain__sql = 'Formats text as SQL query with syntax highlighting.';
|
$strTransformation_text_plain__sql = 'Formats text as SQL query with syntax highlighting.';
|
||||||
$strTransformation_text_plain__substr = 'Displays a part of a string. The first option is the number of characters to skip from the beginning of the string (Default 0). The second option is the number of characters to return (Default: until end of string). The third option is the string to append and/or prepend when truncation occurs (Default: "...").';
|
$strTransformation_text_plain__substr = 'Displays a part of a string. The first option is the number of characters to skip from the beginning of the string (Default 0). The second option is the number of characters to return (Default: until end of string). The third option is the string to append and/or prepend when truncation occurs (Default: "...").';
|
||||||
|
$strTriggers = 'Triggers';
|
||||||
$strTruncateQueries = 'Truncate Shown Queries';
|
$strTruncateQueries = 'Truncate Shown Queries';
|
||||||
$strTurkish = 'Turkish';
|
$strTurkish = 'Turkish';
|
||||||
$strType = 'Type';
|
$strType = 'Type';
|
||||||
|
@@ -277,6 +277,7 @@ $strErrorSaveTable = 'Error saving coordinates for Designer.';
|
|||||||
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally';
|
$strEscapeWildcards = 'Wildcards _ and % should be escaped with a \ to use them literally';
|
||||||
$strEsperanto = 'Esperanto';
|
$strEsperanto = 'Esperanto';
|
||||||
$strEstonian = 'Estonian';
|
$strEstonian = 'Estonian';
|
||||||
|
$strEvent = 'Event';
|
||||||
$strExcelEdition = 'Excel edition';
|
$strExcelEdition = 'Excel edition';
|
||||||
$strExecuteBookmarked = 'Execute bookmarked query';
|
$strExecuteBookmarked = 'Execute bookmarked query';
|
||||||
$strExplain = 'Explain SQL';
|
$strExplain = 'Explain SQL';
|
||||||
@@ -669,6 +670,7 @@ $strReplaceTable = 'Replace table data with file';
|
|||||||
$strReplication = 'Replication';
|
$strReplication = 'Replication';
|
||||||
$strReset = 'Reset';
|
$strReset = 'Reset';
|
||||||
$strResourceLimits = 'Resource limits';
|
$strResourceLimits = 'Resource limits';
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows';
|
||||||
$strReType = 'Re-type';
|
$strReType = 'Re-type';
|
||||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.';
|
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.';
|
||||||
$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.';
|
$strRevokeAndDelete = 'Revoke all active privileges from the users and delete them afterwards.';
|
||||||
@@ -960,6 +962,7 @@ $strTransformation_text_plain__imagelink = 'Displays an image and a link; the fi
|
|||||||
$strTransformation_text_plain__link = 'Displays a link; the field contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.';
|
$strTransformation_text_plain__link = 'Displays a link; the field contains the filename. The first option is a URL prefix like "http://www.example.com/". The second option is a title for the link.';
|
||||||
$strTransformation_text_plain__sql = 'Formats text as SQL query with syntax highlighting.';
|
$strTransformation_text_plain__sql = 'Formats text as SQL query with syntax highlighting.';
|
||||||
$strTransformation_text_plain__substr = 'Displays a part of a string. The first option is the number of characters to skip from the beginning of the string (Default 0). The second option is the number of characters to return (Default: until end of string). The third option is the string to append and/or prepend when truncation occurs (Default: "...").';
|
$strTransformation_text_plain__substr = 'Displays a part of a string. The first option is the number of characters to skip from the beginning of the string (Default 0). The second option is the number of characters to return (Default: until end of string). The third option is the string to append and/or prepend when truncation occurs (Default: "...").';
|
||||||
|
$strTriggers = 'Triggers';
|
||||||
$strTruncateQueries = 'Truncate Shown Queries';
|
$strTruncateQueries = 'Truncate Shown Queries';
|
||||||
$strTurkish = 'Turkish';
|
$strTurkish = 'Turkish';
|
||||||
$strType = 'Type';
|
$strType = 'Type';
|
||||||
|
@@ -1037,4 +1037,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1038,4 +1038,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1034,4 +1034,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1034,4 +1034,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1035,4 +1035,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -154,6 +154,7 @@ $strConnectionError = 'Connexion impossible: r
|
|||||||
$strConnections = 'Connexions';
|
$strConnections = 'Connexions';
|
||||||
$strConstraintsForDumped = 'Contraintes pour les tables export<72>es';
|
$strConstraintsForDumped = 'Contraintes pour les tables export<72>es';
|
||||||
$strConstraintsForTable = 'Contraintes pour la table';
|
$strConstraintsForTable = 'Contraintes pour la table';
|
||||||
|
$strControluserFailed = 'La connexion au "controluser" tel que d<>fini dans votre configuration a <20>chou<6F>.';
|
||||||
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
||||||
$strCopy = 'Copier';
|
$strCopy = 'Copier';
|
||||||
$strCopyDatabaseOK = 'La base de donn<6E>es %s a <20>t<EFBFBD> copi<70>e sur %s';
|
$strCopyDatabaseOK = 'La base de donn<6E>es %s a <20>t<EFBFBD> copi<70>e sur %s';
|
||||||
@@ -298,6 +299,7 @@ $strFileNameTemplateDescriptionServer = 'nom de serveur';
|
|||||||
$strFileNameTemplateDescriptionTable = 'nom de table';
|
$strFileNameTemplateDescriptionTable = 'nom de table';
|
||||||
$strFileNameTemplate = 'Mod<6F>le de nom de fichier';
|
$strFileNameTemplate = 'Mod<6F>le de nom de fichier';
|
||||||
$strFileNameTemplateRemember = 'se souvenir du mod<6F>le';
|
$strFileNameTemplateRemember = 'se souvenir du mod<6F>le';
|
||||||
|
$strFiles = 'Fichiers';
|
||||||
$strFileToImport = 'Fichier <20> importer';
|
$strFileToImport = 'Fichier <20> importer';
|
||||||
$strFixed = 'fixe';
|
$strFixed = 'fixe';
|
||||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privil<69>ges directement <20> partir des tables MySQL. Le contenu de ces tables peut <20>tre diff<66>rent des privil<69>ges effectifs, si des changements manuels ont <20>t<EFBFBD> apport<72>s. Dans ce cas, vous devriez %srecharger les privil<69>ges%s avant de continuer.';
|
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privil<69>ges directement <20> partir des tables MySQL. Le contenu de ces tables peut <20>tre diff<66>rent des privil<69>ges effectifs, si des changements manuels ont <20>t<EFBFBD> apport<72>s. Dans ce cas, vous devriez %srecharger les privil<69>ges%s avant de continuer.';
|
||||||
@@ -334,6 +336,7 @@ $strHasBeenCreated = 'a
|
|||||||
$strHaveToShow = 'Vous devez choisir au moins une colonne <20> afficher';
|
$strHaveToShow = 'Vous devez choisir au moins une colonne <20> afficher';
|
||||||
$strHebrew = 'h<>breu';
|
$strHebrew = 'h<>breu';
|
||||||
$strHelp = 'Aide';
|
$strHelp = 'Aide';
|
||||||
|
$strHexForBLOB = 'Utiliser l\'hexadecimal pour les BLOB';
|
||||||
$strHide = 'Cacher';
|
$strHide = 'Cacher';
|
||||||
$strHideShowAll = 'Cacher/montrer tout';
|
$strHideShowAll = 'Cacher/montrer tout';
|
||||||
$strHideShowNoRelation = 'Cacher/montrer les tables sans liens';
|
$strHideShowNoRelation = 'Cacher/montrer les tables sans liens';
|
||||||
@@ -358,6 +361,7 @@ $strImportFormat = 'Format du fichier d\'importation';
|
|||||||
$strImport = 'Importer';
|
$strImport = 'Importer';
|
||||||
$strImportSuccessfullyFinished = 'L\'importation s\'est termin<69>e avec succ<63>s, %d requ<71>tes ex<65>cut<75>es.';
|
$strImportSuccessfullyFinished = 'L\'importation s\'est termin<69>e avec succ<63>s, %d requ<71>tes ex<65>cut<75>es.';
|
||||||
$strIndexes = 'Index';
|
$strIndexes = 'Index';
|
||||||
|
$strIndexesSeemEqual = 'Les index suivants semblent <20>quivalents, vous devriez en <20>liminer un.';
|
||||||
$strIndexHasBeenDropped = 'L\'index %s a <20>t<EFBFBD> effac<61>';
|
$strIndexHasBeenDropped = 'L\'index %s a <20>t<EFBFBD> effac<61>';
|
||||||
$strIndex = 'Index';
|
$strIndex = 'Index';
|
||||||
$strIndexName = 'Nom de la clef :';
|
$strIndexName = 'Nom de la clef :';
|
||||||
@@ -483,6 +487,7 @@ $strMyISAMSortBufferSize = 'Taille de la m
|
|||||||
$strMySQLCharset = 'Jeu de caract<63>res pour MySQL';
|
$strMySQLCharset = 'Jeu de caract<63>res pour MySQL';
|
||||||
$strMysqlClientVersion = 'Version du client MySQL';
|
$strMysqlClientVersion = 'Version du client MySQL';
|
||||||
$strMySQLConnectionCollation = 'Interclassement pour la connexion MySQL';
|
$strMySQLConnectionCollation = 'Interclassement pour la connexion MySQL';
|
||||||
|
$strMysqlLibDiffersServerVersion = 'La version de votre biblioth<74>que MySQL (%s) diff<66>re de la version de votre serveur MySQL (%s). Ceci peut occasionner un comportement impr<70>visible.';
|
||||||
$strMySQLSaid = 'MySQL a r<>pondu:';
|
$strMySQLSaid = 'MySQL a r<>pondu:';
|
||||||
$strMySQLShowProcess = 'Afficher les processus';
|
$strMySQLShowProcess = 'Afficher les processus';
|
||||||
$strMySQLShowStatus = 'Afficher l\'<27>tat du serveur';
|
$strMySQLShowStatus = 'Afficher l\'<27>tat du serveur';
|
||||||
@@ -666,6 +671,8 @@ $strRevokeAndDelete = 'Effacer tous les privil
|
|||||||
$strRevokeMessage = 'Vous avez r<>voqu<71> les privil<69>ges pour %s';
|
$strRevokeMessage = 'Vous avez r<>voqu<71> les privil<69>ges pour %s';
|
||||||
$strRevoke = 'R<>voquer';
|
$strRevoke = 'R<>voquer';
|
||||||
$strRomanian = 'roumain';
|
$strRomanian = 'roumain';
|
||||||
|
$strRoutineReturnType = 'Type retourn<72>';
|
||||||
|
$strRoutines = 'Proc<6F>dures stock<63>es';
|
||||||
$strRowLength = 'Longueur enr.';
|
$strRowLength = 'Longueur enr.';
|
||||||
$strRows = 'Enregistrements';
|
$strRows = 'Enregistrements';
|
||||||
$strRowsFrom = 'enregistrement(s) <20> partir de l\'enregistrement n<>';
|
$strRowsFrom = 'enregistrement(s) <20> partir de l\'enregistrement n<>';
|
||||||
@@ -1021,11 +1028,7 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
||||||
$strZip = '"zipp<70>"';
|
$strZip = '"zipp<70>"';
|
||||||
|
|
||||||
$strFiles = 'Files'; //to translate
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
$strIndexesSeemEqual = 'The following indexes appear to be equal and one of them should be removed:'; //to translate
|
$strTriggers = 'Triggers'; //to translate
|
||||||
$strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'; //to translate
|
$strEvent = 'Event'; //to translate
|
||||||
$strRoutines = 'Routines'; //to translate
|
|
||||||
$strRoutineReturnType = 'Return type'; //to translate
|
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -154,6 +154,7 @@ $strConnectionError = 'Connexion impossible: r
|
|||||||
$strConnections = 'Connexions';
|
$strConnections = 'Connexions';
|
||||||
$strConstraintsForDumped = 'Contraintes pour les tables export<72>es';
|
$strConstraintsForDumped = 'Contraintes pour les tables export<72>es';
|
||||||
$strConstraintsForTable = 'Contraintes pour la table';
|
$strConstraintsForTable = 'Contraintes pour la table';
|
||||||
|
$strControluserFailed = 'La connexion au "controluser" tel que d<>fini dans votre configuration a <20>chou<6F>.';
|
||||||
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
||||||
$strCopy = 'Copier';
|
$strCopy = 'Copier';
|
||||||
$strCopyDatabaseOK = 'La base de donn<6E>es %s a <20>t<EFBFBD> copi<70>e sur %s';
|
$strCopyDatabaseOK = 'La base de donn<6E>es %s a <20>t<EFBFBD> copi<70>e sur %s';
|
||||||
@@ -298,6 +299,7 @@ $strFileNameTemplateDescriptionServer = 'nom de serveur';
|
|||||||
$strFileNameTemplateDescriptionTable = 'nom de table';
|
$strFileNameTemplateDescriptionTable = 'nom de table';
|
||||||
$strFileNameTemplate = 'Mod<6F>le de nom de fichier';
|
$strFileNameTemplate = 'Mod<6F>le de nom de fichier';
|
||||||
$strFileNameTemplateRemember = 'se souvenir du mod<6F>le';
|
$strFileNameTemplateRemember = 'se souvenir du mod<6F>le';
|
||||||
|
$strFiles = 'Fichiers';
|
||||||
$strFileToImport = 'Fichier <20> importer';
|
$strFileToImport = 'Fichier <20> importer';
|
||||||
$strFixed = 'fixe';
|
$strFixed = 'fixe';
|
||||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privil<69>ges directement <20> partir des tables MySQL. Le contenu de ces tables peut <20>tre diff<66>rent des privil<69>ges effectifs, si des changements manuels ont <20>t<EFBFBD> apport<72>s. Dans ce cas, vous devriez %srecharger les privil<69>ges%s avant de continuer.';
|
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privil<69>ges directement <20> partir des tables MySQL. Le contenu de ces tables peut <20>tre diff<66>rent des privil<69>ges effectifs, si des changements manuels ont <20>t<EFBFBD> apport<72>s. Dans ce cas, vous devriez %srecharger les privil<69>ges%s avant de continuer.';
|
||||||
@@ -334,6 +336,7 @@ $strHasBeenCreated = 'a
|
|||||||
$strHaveToShow = 'Vous devez choisir au moins une colonne <20> afficher';
|
$strHaveToShow = 'Vous devez choisir au moins une colonne <20> afficher';
|
||||||
$strHebrew = 'h<>breu';
|
$strHebrew = 'h<>breu';
|
||||||
$strHelp = 'Aide';
|
$strHelp = 'Aide';
|
||||||
|
$strHexForBLOB = 'Utiliser l\'hexadecimal pour les BLOB';
|
||||||
$strHide = 'Cacher';
|
$strHide = 'Cacher';
|
||||||
$strHideShowAll = 'Cacher/montrer tout';
|
$strHideShowAll = 'Cacher/montrer tout';
|
||||||
$strHideShowNoRelation = 'Cacher/montrer les tables sans liens';
|
$strHideShowNoRelation = 'Cacher/montrer les tables sans liens';
|
||||||
@@ -358,6 +361,7 @@ $strImportFormat = 'Format du fichier d\'importation';
|
|||||||
$strImport = 'Importer';
|
$strImport = 'Importer';
|
||||||
$strImportSuccessfullyFinished = 'L\'importation s\'est termin<69>e avec succ<63>s, %d requ<71>tes ex<65>cut<75>es.';
|
$strImportSuccessfullyFinished = 'L\'importation s\'est termin<69>e avec succ<63>s, %d requ<71>tes ex<65>cut<75>es.';
|
||||||
$strIndexes = 'Index';
|
$strIndexes = 'Index';
|
||||||
|
$strIndexesSeemEqual = 'Les index suivants semblent <20>quivalents, vous devriez en <20>liminer un.';
|
||||||
$strIndexHasBeenDropped = 'L\'index %s a <20>t<EFBFBD> effac<61>';
|
$strIndexHasBeenDropped = 'L\'index %s a <20>t<EFBFBD> effac<61>';
|
||||||
$strIndex = 'Index';
|
$strIndex = 'Index';
|
||||||
$strIndexName = 'Nom de la clef :';
|
$strIndexName = 'Nom de la clef :';
|
||||||
@@ -483,6 +487,7 @@ $strMyISAMSortBufferSize = 'Taille de la m
|
|||||||
$strMySQLCharset = 'Jeu de caract<63>res pour MySQL';
|
$strMySQLCharset = 'Jeu de caract<63>res pour MySQL';
|
||||||
$strMysqlClientVersion = 'Version du client MySQL';
|
$strMysqlClientVersion = 'Version du client MySQL';
|
||||||
$strMySQLConnectionCollation = 'Interclassement pour la connexion MySQL';
|
$strMySQLConnectionCollation = 'Interclassement pour la connexion MySQL';
|
||||||
|
$strMysqlLibDiffersServerVersion = 'La version de votre biblioth<74>que MySQL (%s) diff<66>re de la version de votre serveur MySQL (%s). Ceci peut occasionner un comportement impr<70>visible.';
|
||||||
$strMySQLSaid = 'MySQL a r<>pondu:';
|
$strMySQLSaid = 'MySQL a r<>pondu:';
|
||||||
$strMySQLShowProcess = 'Afficher les processus';
|
$strMySQLShowProcess = 'Afficher les processus';
|
||||||
$strMySQLShowStatus = 'Afficher l\'<27>tat du serveur';
|
$strMySQLShowStatus = 'Afficher l\'<27>tat du serveur';
|
||||||
@@ -666,6 +671,8 @@ $strRevokeAndDelete = 'Effacer tous les privil
|
|||||||
$strRevokeMessage = 'Vous avez r<>voqu<71> les privil<69>ges pour %s';
|
$strRevokeMessage = 'Vous avez r<>voqu<71> les privil<69>ges pour %s';
|
||||||
$strRevoke = 'R<>voquer';
|
$strRevoke = 'R<>voquer';
|
||||||
$strRomanian = 'roumain';
|
$strRomanian = 'roumain';
|
||||||
|
$strRoutineReturnType = 'Type retourn<72>';
|
||||||
|
$strRoutines = 'Proc<6F>dures stock<63>es';
|
||||||
$strRowLength = 'Longueur enr.';
|
$strRowLength = 'Longueur enr.';
|
||||||
$strRows = 'Enregistrements';
|
$strRows = 'Enregistrements';
|
||||||
$strRowsFrom = 'enregistrement(s) <20> partir de l\'enregistrement n<>';
|
$strRowsFrom = 'enregistrement(s) <20> partir de l\'enregistrement n<>';
|
||||||
@@ -1021,11 +1028,7 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl<6E>ve la limite.';
|
||||||
$strZip = '"zipp<70>"';
|
$strZip = '"zipp<70>"';
|
||||||
|
|
||||||
$strFiles = 'Files'; //to translate
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
$strIndexesSeemEqual = 'The following indexes appear to be equal and one of them should be removed:'; //to translate
|
$strTriggers = 'Triggers'; //to translate
|
||||||
$strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'; //to translate
|
$strEvent = 'Event'; //to translate
|
||||||
$strRoutines = 'Routines'; //to translate
|
|
||||||
$strRoutineReturnType = 'Return type'; //to translate
|
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -155,6 +155,7 @@ $strConnectionError = 'Connexion impossible: réglages incorrects.';
|
|||||||
$strConnections = 'Connexions';
|
$strConnections = 'Connexions';
|
||||||
$strConstraintsForDumped = 'Contraintes pour les tables exportées';
|
$strConstraintsForDumped = 'Contraintes pour les tables exportées';
|
||||||
$strConstraintsForTable = 'Contraintes pour la table';
|
$strConstraintsForTable = 'Contraintes pour la table';
|
||||||
|
$strControluserFailed = 'La connexion au "controluser" tel que défini dans votre configuration a échoué.';
|
||||||
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
||||||
$strCopy = 'Copier';
|
$strCopy = 'Copier';
|
||||||
$strCopyDatabaseOK = 'La base de données %s a été copiée sur %s';
|
$strCopyDatabaseOK = 'La base de données %s a été copiée sur %s';
|
||||||
@@ -299,6 +300,7 @@ $strFileNameTemplateDescriptionServer = 'nom de serveur';
|
|||||||
$strFileNameTemplateDescriptionTable = 'nom de table';
|
$strFileNameTemplateDescriptionTable = 'nom de table';
|
||||||
$strFileNameTemplate = 'Modèle de nom de fichier';
|
$strFileNameTemplate = 'Modèle de nom de fichier';
|
||||||
$strFileNameTemplateRemember = 'se souvenir du modèle';
|
$strFileNameTemplateRemember = 'se souvenir du modèle';
|
||||||
|
$strFiles = 'Fichiers';
|
||||||
$strFileToImport = 'Fichier à importer';
|
$strFileToImport = 'Fichier à importer';
|
||||||
$strFixed = 'fixe';
|
$strFixed = 'fixe';
|
||||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privilèges directement à partir des tables MySQL. Le contenu de ces tables peut être différent des privilèges effectifs, si des changements manuels ont été apportés. Dans ce cas, vous devriez %srecharger les privilèges%s avant de continuer.';
|
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privilèges directement à partir des tables MySQL. Le contenu de ces tables peut être différent des privilèges effectifs, si des changements manuels ont été apportés. Dans ce cas, vous devriez %srecharger les privilèges%s avant de continuer.';
|
||||||
@@ -335,6 +337,7 @@ $strHasBeenCreated = 'a été créé(e).';
|
|||||||
$strHaveToShow = 'Vous devez choisir au moins une colonne à afficher';
|
$strHaveToShow = 'Vous devez choisir au moins une colonne à afficher';
|
||||||
$strHebrew = 'hébreu';
|
$strHebrew = 'hébreu';
|
||||||
$strHelp = 'Aide';
|
$strHelp = 'Aide';
|
||||||
|
$strHexForBLOB = 'Utiliser l\'hexadecimal pour les BLOB';
|
||||||
$strHide = 'Cacher';
|
$strHide = 'Cacher';
|
||||||
$strHideShowAll = 'Cacher/montrer tout';
|
$strHideShowAll = 'Cacher/montrer tout';
|
||||||
$strHideShowNoRelation = 'Cacher/montrer les tables sans liens';
|
$strHideShowNoRelation = 'Cacher/montrer les tables sans liens';
|
||||||
@@ -359,6 +362,7 @@ $strImportFormat = 'Format du fichier d\'importation';
|
|||||||
$strImport = 'Importer';
|
$strImport = 'Importer';
|
||||||
$strImportSuccessfullyFinished = 'L\'importation s\'est terminée avec succès, %d requêtes exécutées.';
|
$strImportSuccessfullyFinished = 'L\'importation s\'est terminée avec succès, %d requêtes exécutées.';
|
||||||
$strIndexes = 'Index';
|
$strIndexes = 'Index';
|
||||||
|
$strIndexesSeemEqual = 'Les index suivants semblent équivalents, vous devriez en éliminer un.';
|
||||||
$strIndexHasBeenDropped = 'L\'index %s a été effacé';
|
$strIndexHasBeenDropped = 'L\'index %s a été effacé';
|
||||||
$strIndex = 'Index';
|
$strIndex = 'Index';
|
||||||
$strIndexName = 'Nom de la clef :';
|
$strIndexName = 'Nom de la clef :';
|
||||||
@@ -484,6 +488,7 @@ $strMyISAMSortBufferSize = 'Taille de la mémoire tampon';
|
|||||||
$strMySQLCharset = 'Jeu de caractères pour MySQL';
|
$strMySQLCharset = 'Jeu de caractères pour MySQL';
|
||||||
$strMysqlClientVersion = 'Version du client MySQL';
|
$strMysqlClientVersion = 'Version du client MySQL';
|
||||||
$strMySQLConnectionCollation = 'Interclassement pour la connexion MySQL';
|
$strMySQLConnectionCollation = 'Interclassement pour la connexion MySQL';
|
||||||
|
$strMysqlLibDiffersServerVersion = 'La version de votre bibliothèque MySQL (%s) diffère de la version de votre serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible.';
|
||||||
$strMySQLSaid = 'MySQL a répondu:';
|
$strMySQLSaid = 'MySQL a répondu:';
|
||||||
$strMySQLShowProcess = 'Afficher les processus';
|
$strMySQLShowProcess = 'Afficher les processus';
|
||||||
$strMySQLShowStatus = 'Afficher l\'état du serveur';
|
$strMySQLShowStatus = 'Afficher l\'état du serveur';
|
||||||
@@ -667,6 +672,8 @@ $strRevokeAndDelete = 'Effacer tous les privilèges de ces utilisateurs, puis le
|
|||||||
$strRevokeMessage = 'Vous avez révoqué les privilèges pour %s';
|
$strRevokeMessage = 'Vous avez révoqué les privilèges pour %s';
|
||||||
$strRevoke = 'Révoquer';
|
$strRevoke = 'Révoquer';
|
||||||
$strRomanian = 'roumain';
|
$strRomanian = 'roumain';
|
||||||
|
$strRoutineReturnType = 'Type retourné';
|
||||||
|
$strRoutines = 'Procédures stockées';
|
||||||
$strRowLength = 'Longueur enr.';
|
$strRowLength = 'Longueur enr.';
|
||||||
$strRows = 'Enregistrements';
|
$strRows = 'Enregistrements';
|
||||||
$strRowsFrom = 'enregistrement(s) à partir de l\'enregistrement n°';
|
$strRowsFrom = 'enregistrement(s) à partir de l\'enregistrement n°';
|
||||||
@@ -1022,11 +1029,7 @@ $strYes = 'Oui';
|
|||||||
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
$strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||||
$strZip = '"zippé"';
|
$strZip = '"zippé"';
|
||||||
|
|
||||||
$strFiles = 'Files'; //to translate
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
$strIndexesSeemEqual = 'The following indexes appear to be equal and one of them should be removed:'; //to translate
|
$strTriggers = 'Triggers'; //to translate
|
||||||
$strMysqlLibDiffersServerVersion = 'Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'; //to translate
|
$strEvent = 'Event'; //to translate
|
||||||
$strRoutines = 'Routines'; //to translate
|
|
||||||
$strRoutineReturnType = 'Return type'; //to translate
|
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
|
||||||
?>
|
?>
|
||||||
|
@@ -1034,4 +1034,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1035,4 +1035,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1058,4 +1058,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1034,4 +1034,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1034,4 +1034,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1035,4 +1035,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1054,4 +1054,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1055,4 +1055,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1049,4 +1049,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1050,4 +1050,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1058,4 +1058,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1049,4 +1049,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1050,4 +1050,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1047,4 +1047,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1048,4 +1048,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1031,4 +1031,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1031,4 +1031,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1032,4 +1032,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1036,4 +1036,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1036,4 +1036,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1036,4 +1036,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1055,4 +1055,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1054,4 +1054,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1048,4 +1048,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1047,4 +1047,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1069,4 +1069,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1070,4 +1070,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1029,4 +1029,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1030,4 +1030,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1055,4 +1055,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1054,4 +1054,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1025,4 +1025,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1026,4 +1026,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1025,4 +1025,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1058,4 +1058,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1058,4 +1058,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1059,4 +1059,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1050,4 +1050,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1051,4 +1051,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1052,4 +1052,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1054,4 +1054,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -1053,4 +1053,7 @@ $strRoutines = 'Routines'; //to translate
|
|||||||
$strRoutineReturnType = 'Return type'; //to translate
|
$strRoutineReturnType = 'Return type'; //to translate
|
||||||
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
$strControluserFailed = 'Connection for controluser as defined in your configuration failed.'; //to translate
|
||||||
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
$strHexForBLOB = 'Use hexadecimal for BLOB'; //to translate
|
||||||
|
$strRestartInsertion = 'Restart insertion with %s rows'; //to translate
|
||||||
|
$strTriggers = 'Triggers'; //to translate
|
||||||
|
$strEvent = 'Event'; //to translate
|
||||||
?>
|
?>
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user