Fixed bug #590863 (Importing an SQL dump fails when using UTF-8) by allowing the user to specify the charset of an uploaded SQL file.

This commit is contained in:
Alexander M. Turek 2002-08-06 21:04:02 +00:00
parent cfdde46abd
commit ccb62f3234
89 changed files with 315 additions and 178 deletions

View File

@ -15,6 +15,9 @@ $Source$
2002-08-06 Alexander M. Turek <rabus@users.sourceforge.net>
* lang/english-*.inc.php3: Typo.
* db_details.php3, read_dump.php3, tbl_query_box.php3, lang/*.inc.php3:
Fixed bug #590863 (Importing an SQL dump fails when using UTF-8) by
allowing the user to specify the charset of an uploaded SQL file.
2002-08-05 Loïc Chapeaux <lolo@phpheaven.net>
* tbl_indexes.php3, ldi_check.php3, libraries/sqlparser.lib.php3:

View File

@ -35,7 +35,7 @@ if (isset($show_query) && $show_query == '1') {
$sub_part = '';
require('./db_details_db_info.php3');
if ($num_tables == 0 && empty($db_query_force)) {
$is_info = TRUE;
$is_info = TRUE;
include('./db_details_structure.php3');
exit();
}
@ -75,6 +75,26 @@ if ($is_upload) {
?>
<div style="margin-bottom: 5px">
<input type="file" name="sql_file" class="textfield" /><br />
<?php
if ($cfg['AllowAnywhereRecoding'] && $allow_recoding) {
$temp_charset = reset($cfg['AvailableCharsets']);
echo $strCharsetOfFile . "\n"
. ' <select name="charset_of_file" size="1">' . "\n"
. ' <option value="' . $temp_charset . '"';
if ($temp_charset == $charset) {
echo ' selected="selected"';
}
echo '>' . $temp_charset . '</option>' . "\n";
while ($temp_charset = next($cfg['AvailableCharsets'])) {
echo ' <option value="' . $temp_charset . '"';
if ($temp_charset == $charset) {
echo ' selected="selected"';
}
echo '>' . $temp_charset . '</option>' . "\n";
}
echo ' </select>';
}
?>
</div>
<?php
} // end if

View File

@ -421,4 +421,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -422,4 +422,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -421,4 +421,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -421,4 +421,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -414,4 +414,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -415,4 +415,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -421,4 +421,5 @@ $strYes = ' 是 ';
$strZip = '"zipped"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strYes = '
$strZip = '"zipped"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -418,4 +418,5 @@ $strYes = '是';
$strZip = '"zipped"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strYes = '
$strZip = '"zipped"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -413,4 +413,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -414,4 +414,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -155,7 +155,7 @@ $strFullText = 'Volledige teksten';
$strFunction = 'Functie';
$strGenBy = 'Gegenereerd door';
$strGeneralRelationFeat = 'Basis relatie opties';
$strGeneralRelationFeat = 'Basis relatie opties';
$strGenTime = 'Generatie Tijd';
$strGo = 'Start';
$strGrants = 'Toekennen';
@ -415,4 +415,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -156,7 +156,7 @@ $strFullText = 'Volledige teksten';
$strFunction = 'Functie';
$strGenBy = 'Gegenereerd door';
$strGeneralRelationFeat = 'Basis relatie opties';
$strGeneralRelationFeat = 'Basis relatie opties';
$strGenTime = 'Generatie Tijd';
$strGo = 'Start';
$strGrants = 'Toekennen';
@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -70,6 +70,7 @@ $strCarriage = 'Carriage return: \\r';
$strChange = 'Change';
$strChangeDisplay = 'Choose Field to display';
$strChangePassword = 'Change password';
$strCharsetOfFile = 'Character set of the file:';
$strCheckAll = 'Check All';
$strCheckDbPriv = 'Check Database Privileges';
$strCheckTable = 'Check table';
@ -412,4 +413,6 @@ $strWrongUser = 'Wrong username/password. Access denied.';
$strYes = 'Yes';
$strZip = '"zipped"';
//New
?>

View File

@ -68,9 +68,11 @@ $strCantRenameIdxToPrimary = 'Can\'t rename index to PRIMARY!';
$strCantUseRecodeIconv = 'Can not use iconv nor libiconv nor recode_string function while extension reports to be loaded. Check your php configuration.';
$strCardinality = 'Cardinality';
$strCarriage = 'Carriage return: \\r';
$strCharsetOfFile = 'Character set of the file:';
$strChange = 'Change';
$strChangeDisplay = 'Choose Field to display';
$strChangePassword = 'Change password';
$strCharsetOfFile = 'Character set of the file:';
$strCheckAll = 'Check All';
$strCheckDbPriv = 'Check Database Privileges';
$strCheckTable = 'Check table';
@ -413,4 +415,6 @@ $strWrongUser = 'Wrong username/password. Access denied.';
$strYes = 'Yes';
$strZip = '"zipped"';
// New
?>

View File

@ -398,22 +398,23 @@ $strYes = 'Jah';
$strZip = '"zipitud"';
$strRelationNotWorking = 'Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda miks see nii on, vajutage %ssiia%s.';
$strAllTableSameWidth = 'kuva kõik tabelid sama laiusega?';
$strRelationNotWorking = 'Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda miks see nii on, vajutage %ssiia%s.';
$strAllTableSameWidth = 'kuva kõik tabelid sama laiusega?';
$strPdfNoTables = 'Pole tabeleid';
$strDisplayFeat = 'Kuva võimalused';
$strCreatePdfFeat = 'PDF-ide tegemine';
$strColComFeat = 'Näitan veeru kommentaare';
$strPdfNoTables = 'Pole tabeleid';
$strDisplayFeat = 'Kuva võimalused';
$strCreatePdfFeat = 'PDF-ide tegemine';
$strColComFeat = 'Näitan veeru kommentaare';
$strDisabled = 'Keelatud';
$strEnabled = 'Lubatud';
$strEnabled = 'Lubatud';
$strOK = 'OK'; //to translate
$strNotOK = 'Ei ole OK';
$strGeneralRelationFeat = 'Peamised seoste võimalused';
$strNotOK = 'Ei ole OK';
$strGeneralRelationFeat = 'Peamised seoste võimalused';
// To translate
$strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -399,22 +399,23 @@ $strYes = 'Jah';
$strZip = '"zipitud"';
$strRelationNotWorking = 'Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda miks see nii on, vajutage %ssiia%s.';
$strAllTableSameWidth = 'kuva kõik tabelid sama laiusega?';
$strRelationNotWorking = 'Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda miks see nii on, vajutage %ssiia%s.';
$strAllTableSameWidth = 'kuva kõik tabelid sama laiusega?';
$strPdfNoTables = 'Pole tabeleid';
$strDisplayFeat = 'Kuva võimalused';
$strCreatePdfFeat = 'PDF-ide tegemine';
$strColComFeat = 'Näitan veeru kommentaare';
$strPdfNoTables = 'Pole tabeleid';
$strDisplayFeat = 'Kuva võimalused';
$strCreatePdfFeat = 'PDF-ide tegemine';
$strColComFeat = 'Näitan veeru kommentaare';
$strDisabled = 'Keelatud';
$strEnabled = 'Lubatud';
$strEnabled = 'Lubatud';
$strOK = 'OK'; //to translate
$strNotOK = 'Ei ole OK';
$strGeneralRelationFeat = 'Peamised seoste võimalused';
$strNotOK = 'Ei ole OK';
$strGeneralRelationFeat = 'Peamised seoste võimalused';
// To translate
$strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -70,6 +70,7 @@ $strCarriage = 'Retour de chariot : \\r';
$strChange = 'Modifier';
$strChangeDisplay = 'Champ à afficher';
$strChangePassword = 'Modifier le mot de passe';
$strCharsetOfFile = 'Jeu de caractères du fichier:';
$strCheckAll = 'Tout cocher';
$strCheckDbPriv = 'Afficher les privilèges sur';
$strCheckTable = 'Vérifier la table';

View File

@ -71,6 +71,7 @@ $strCarriage = 'Retour de chariot : \\r';
$strChange = 'Modifier';
$strChangeDisplay = 'Champ à afficher';
$strChangePassword = 'Modifier le mot de passe';
$strCharsetOfFile = 'Jeu de caractères du fichier:';
$strCheckAll = 'Tout cocher';
$strCheckDbPriv = 'Afficher les privilèges sur';
$strCheckTable = 'Vérifier la table';

View File

@ -78,7 +78,7 @@ $strCheckAll = 'Marc
$strCheckDbPriv = 'Verificar os privilexios do banco de datos';
$strCheckTable = 'Verificar a tabela';
$strChoosePage = 'Escolla unha páxina para modificar';
$strColComFeat = 'Mostrando os comentarios das columnas';
$strColComFeat = 'Mostrando os comentarios das columnas';
$strColumn = 'Columna';
$strColumnNames = 'Nomes das Columnas';
$strComments = 'Comentarios';
@ -95,7 +95,7 @@ $strCreateIndexTopic = 'Crear un novo
$strCreateNewDatabase = 'Crear un novo banco de datos';
$strCreateNewTable = 'Crear unha tabela nova na base de datos %s';
$strCreatePage = 'Crear unha páxina nova';
$strCreatePdfFeat = 'Creación de PDFs';
$strCreatePdfFeat = 'Creación de PDFs';
$strCriteria = 'Criterio';
$strData = 'Datos';
@ -112,9 +112,9 @@ $strDeletedRows = 'Filas borradas:';
$strDeleteFailed = 'Non foi posible eliminar!';
$strDeleteUserMessage = 'Acaba de eliminar o usuario %s.';
$strDescending = 'Descendente';
$strDisabled = 'Desactivado';
$strDisabled = 'Desactivado';
$strDisplay = 'Mostrar';
$strDisplayFeat = 'Mostrar as características';
$strDisplayFeat = 'Mostrar as características';
$strDisplayOrder = 'Mostrar en orde:';
$strDisplayPDF = 'Mostrar o esquema PDF';
$strDoAQuery = 'Faga unha "procura por exemplo" (o comodín é "%")';
@ -133,7 +133,7 @@ $strEditPrivileges = 'Modificar privilexios';
$strEffective = 'Efectivo';
$strEmpty = 'Borrar';
$strEmptyResultSet = 'MySQL retornou um conxunto vacío (ex. cero rexistros).';
$strEnabled = 'Activado';
$strEnabled = 'Activado';
$strEnd = 'Fin';
$strEnglishPrivileges = ' Nota: os nomes de privilexios do MySQL están en inglés';
$strError = 'Erro';
@ -157,7 +157,7 @@ $strFullText = 'Textos completos';
$strFunction = 'Funcións';
$strGenBy = 'Xerado por';
$strGeneralRelationFeat = 'Características xerais das relacións';
$strGeneralRelationFeat = 'Características xerais das relacións';
$strGenTime = 'Xerado en';
$strGo = 'Executar';
$strGrants = 'Conceder';
@ -237,7 +237,7 @@ $strNoPrivileges = 'Sen Privilexios';
$strNoQuery = 'Non hai procura SQL!';
$strNoRights = 'Non ten direitos suficientes para estar aquí agora!';
$strNoTablesFound = 'Non se achou nengunha tabela no banco de datos';
$strNotOK = 'non conforme';
$strNotOK = 'non conforme';
$strNotSet = 'Non se atopou a tabela <b>%s</b>ou non se indicou en %s';
$strNotNumber = 'Non é un número!';
$strNotValidNumber = ' non é un número válido para unha fila!';
@ -247,7 +247,7 @@ $strNumSearchResultsInTable = '%s ocorrencias(s) dentro da tabela <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> ocorrencia(s)';
$strOftenQuotation = 'Xeralmente son aspas. OPCIONAL significa que só os campos de caracteres son delimitados por caracteres "delimitadores"';
$strOK = 'Conforme';
$strOK = 'Conforme';
$strOperations = 'Operacións';
$strOptimizeTable = 'Optimizar a tabela';
$strOptionalControls = 'Opcional. Controla como se han de ler e escreber os caracteres especiais.';
@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -79,7 +79,7 @@ $strCheckAll = 'Marcá-los todos';
$strCheckDbPriv = 'Verificar os privilexios do banco de datos';
$strCheckTable = 'Verificar a tabela';
$strChoosePage = 'Escolla unha páxina para modificar';
$strColComFeat = 'Mostrando os comentarios das columnas';
$strColComFeat = 'Mostrando os comentarios das columnas';
$strColumn = 'Columna';
$strColumnNames = 'Nomes das Columnas';
$strComments = 'Comentarios';
@ -96,7 +96,7 @@ $strCreateIndexTopic = 'Crear un novo índice';
$strCreateNewDatabase = 'Crear un novo banco de datos';
$strCreateNewTable = 'Crear unha tabela nova na base de datos %s';
$strCreatePage = 'Crear unha páxina nova';
$strCreatePdfFeat = 'Creación de PDFs';
$strCreatePdfFeat = 'Creación de PDFs';
$strCriteria = 'Criterio';
$strData = 'Datos';
@ -113,9 +113,9 @@ $strDeletedRows = 'Filas borradas:';
$strDeleteFailed = 'Non foi posible eliminar!';
$strDeleteUserMessage = 'Acaba de eliminar o usuario %s.';
$strDescending = 'Descendente';
$strDisabled = 'Desactivado';
$strDisabled = 'Desactivado';
$strDisplay = 'Mostrar';
$strDisplayFeat = 'Mostrar as características';
$strDisplayFeat = 'Mostrar as características';
$strDisplayOrder = 'Mostrar en orde:';
$strDisplayPDF = 'Mostrar o esquema PDF';
$strDoAQuery = 'Faga unha "procura por exemplo" (o comodín é "%")';
@ -134,7 +134,7 @@ $strEditPrivileges = 'Modificar privilexios';
$strEffective = 'Efectivo';
$strEmpty = 'Borrar';
$strEmptyResultSet = 'MySQL retornou um conxunto vacío (ex. cero rexistros).';
$strEnabled = 'Activado';
$strEnabled = 'Activado';
$strEnd = 'Fin';
$strEnglishPrivileges = ' Nota: os nomes de privilexios do MySQL están en inglés';
$strError = 'Erro';
@ -158,7 +158,7 @@ $strFullText = 'Textos completos';
$strFunction = 'Funcións';
$strGenBy = 'Xerado por';
$strGeneralRelationFeat = 'Características xerais das relacións';
$strGeneralRelationFeat = 'Características xerais das relacións';
$strGenTime = 'Xerado en';
$strGo = 'Executar';
$strGrants = 'Conceder';
@ -238,7 +238,7 @@ $strNoPrivileges = 'Sen Privilexios';
$strNoQuery = 'Non hai procura SQL!';
$strNoRights = 'Non ten direitos suficientes para estar aquí agora!';
$strNoTablesFound = 'Non se achou nengunha tabela no banco de datos';
$strNotOK = 'non conforme';
$strNotOK = 'non conforme';
$strNotSet = 'Non se atopou a tabela <b>%s</b>ou non se indicou en %s';
$strNotNumber = 'Non é un número!';
$strNotValidNumber = ' non é un número válido para unha fila!';
@ -248,7 +248,7 @@ $strNumSearchResultsInTable = '%s ocorrencias(s) dentro da tabela <i>%s</i>';
$strNumSearchResultsTotal = '<b>Total:</b> <i>%s</i> ocorrencia(s)';
$strOftenQuotation = 'Xeralmente son aspas. OPCIONAL significa que só os campos de caracteres son delimitados por caracteres "delimitadores"';
$strOK = 'Conforme';
$strOK = 'Conforme';
$strOperations = 'Operacións';
$strOptimizeTable = 'Optimizar a tabela';
$strOptionalControls = 'Opcional. Controla como se han de ler e escreber os caracteres especiais.';
@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -83,7 +83,7 @@ $strColumnNames = 'სვეტის სახელები';
$strComments = 'კომენტარი';
$strCompleteInserts = 'სრულყოფილი ჩამატება';
$strConfigFileError = 'phpMyAdmin-მა ვერ შეძლო კონფიგურაციის ფაილის წაკითხვა!<br/>ეს მაშინ ხდება თუ php-მ იპოვა parse შეცდომა, ან php-მ ვერ იპოვა ფაილი.<br />გამოიძახეთ კონფიგურაციის ფაილი და ქვევით ჩამოწერილი შეცდომები გაასწორეთ. უმეტეს შემთხვევაში წერტილ-მძიმე აკლია ხოლმე.<br />თუ ცარიელი გვერდი ჩამოიტვირთა, ესეიგი ყველაფერი რიგზეა.';
$strConfigureTableCoord = 'საჭიროა %s ცხრილის კოორდინატების კონფიგურირება';
$strConfigureTableCoord = 'საჭიროა %s ცხრილის კოორდინატების კონფიგურირება';
$strConfirm = 'თქვენ დარწმუნებული ხართ რომ გინდათ ამის გაკეთება?';
$strCookiesRequired = 'ამ ადგილის შემდეგ Cookies უნდა ჩართოთ.';
$strCopyTable = 'ცხრილის კოპირება (ბაზა<b>.</b>ცხრილი):';
@ -396,4 +396,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -78,6 +78,7 @@ $strCarriage = 'Wagenr
$strChange = 'Ändern';
$strChangeDisplay = 'Anzuzeigende Spalte bestimmen';
$strChangePassword = 'Kennwort ändern';
$strCharsetOfFile = 'Zeichencodierung der Datei:';
$strCheckAll = 'Alle auswählen';
$strCheckDbPriv = 'Rechte einer Datenbank prüfen';
$strCheckTable = 'Überprüfe Tabelle';

View File

@ -79,6 +79,7 @@ $strCarriage = 'Wagenrücklauf \\r';
$strChange = 'Ändern';
$strChangeDisplay = 'Anzuzeigende Spalte bestimmen';
$strChangePassword = 'Kennwort ändern';
$strCharsetOfFile = 'Zeichencodierung der Datei:';
$strCheckAll = 'Alle auswählen';
$strCheckDbPriv = 'Rechte einer Datenbank prüfen';
$strCheckTable = 'Überprüfe Tabelle';

View File

@ -390,4 +390,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -391,4 +391,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -65,12 +65,12 @@ $strCantRenameIdxToPrimary = '
$strCardinality = 'Cardinality';
$strCarriage = 'תו החזרת גררה: \\r';
$strChange = 'שנה';
$strChangeDisplay = 'áçø ùãä ìäöâä';
$strChangeDisplay = 'áçø ùãä ìäöâä';
$strChangePassword = 'שנה סיסמה';
$strCheckAll = 'סמן הכל';
$strCheckDbPriv = 'בדוק את הרשאות מסד הנתונים';
$strCheckTable = 'בדוק טבלה';
$strChoosePage = 'àðà áçø òîåã ìòøéëä';
$strChoosePage = 'àðà áçø òîåã ìòøéëä';
$strColumn = 'עמודה';
$strColumnNames = 'שמות השורות';
$strComments = 'הערות';
@ -85,7 +85,7 @@ $strCreateIndex = '
$strCreateIndexTopic = 'צור אינקס חדש';
$strCreateNewDatabase = 'צור מסד נתונים חדש';
$strCreateNewTable = 'צור טבלה חדשה על מסד הנתונים %s';
$strCreatePage = 'öåø òîåã çãù';
$strCreatePage = 'öåø òîåã çãù';
$strCriteria = 'קריטריון';
$strData = 'מידע';
@ -104,7 +104,7 @@ $strDeletedRows = '
$strDescending = 'יורד';
$strDisplay = 'הצג';
$strDisplayOrder = 'סדר הצגה:';
$strDisplayPDF = 'äöâ ñëîä áôåøîè PDF';
$strDisplayPDF = 'äöâ ñëîä áôåøîè PDF';
$strDoAQuery = 'צור "שאילתה לדוגמה" (תו כללי: "%")';
$strDoYouReally = 'האם אתה באמת רוצה לבצע ';
$strDocu = 'תיעוד';
@ -115,7 +115,7 @@ $strDumpingData = '
$strDynamic = 'דינאמי';
$strEdit = 'ערוך';
$strEditPDFPages = 'òøåê ãôé PDF';
$strEditPDFPages = 'òøåê ãôé PDF';
$strEditPrivileges = 'ערוך הרשאות';
$strEffective = 'אפקטיבי';
$strEmpty = 'רוקן';
@ -123,8 +123,8 @@ $strEmptyResultSet = 'MySQL
$strEnd = 'סוף';
$strEnglishPrivileges = ' הערה: הרשאות MySQL נכתבים באנגלית ';
$strError = 'תקלה';
$strExport = 'ééöà';
$strExportToXML = 'ééöà ìôåøîè XML';
$strExport = 'ééöà';
$strExportToXML = 'ééöà ìôåøîè XML';
$strExtendedInserts = 'הכנסות מורחבות';
$strExtra = 'נוסף';
@ -184,7 +184,7 @@ $strLineFeed = '
$strLines = 'שורות';
$strLinesTerminatedBy = 'שורות נגמרות על-ידי';
$strLinkNotFound = 'קישור לא נמצא';
$strLinksTo = '÷éùåøéí ì-';
$strLinksTo = '÷éùåøéí ì-';
$strLocationTextfile = 'מיקום קובץ הטקסט';
$strLogPassword = 'סיסמה:';
$strLogUsername = 'שם משתמש:';
@ -215,7 +215,7 @@ $strNoIndex = '
$strNoIndexPartsDefined = 'אין חלקי אינדקס מוגדרים !';
$strNoModification = 'אין שינוי';
$strNoPassword = 'אין סיסמה';
$strNoPhp = 'ììà ÷åã PHP';
$strNoPhp = 'ììà ÷åã PHP';
$strNoPrivileges = 'אין הרשאות';
$strNoQuery = 'אין שאילתת SQL !';
$strNoRights = 'אין לך מספיק זכויות כדי להיות כאן עכשיו !';
@ -223,30 +223,30 @@ $strNoTablesFound = '
$strNoUsersFound = 'אף משתמש/משתמשים נמצאו.';
$strNone = 'NULL';
$strNotNumber = 'זהו לא מספר !';
$strNotSet = 'äèáìä <b>%s</b> ìà ðîöàä á- %s';
$strNotSet = 'äèáìä <b>%s</b> ìà ðîöàä á- %s';
$strNotValidNumber = ' הוא לא מספר שורה בר תוקף !';
$strNull = 'NULL';
$strNumSearchResultsInTable = '%s תוצאה/תוצאות בתוך הטבלה <i>%s</i>';
$strOftenQuotation = 'מרכאות נפוצות. בתור אופציה מתכוון שרק שדות char ו- varchar נסגרים על ידי מרכאות.';
$strOperations = 'ôòåìåú';
$strOperations = 'ôòåìåú';
$strOptimizeTable = 'ייעל טבלה';
$strOptionalControls = 'אופציה. בקרה על קריאה וכתיבה של סימנים מיוחדים.';
$strOptionally = 'בתור אופציה';
$strOptions = 'àôùøåéåú';
$strOptions = 'àôùøåéåú';
$strOr = 'או';
$strOverhead = 'תקורה';
$strPHPVersion = 'גרסת PHP';
$strPageNumber = 'îñôø òîåã:';
$strPageNumber = 'îñôø òîåã:';
$strPartialText = 'טקסטים חלקיים';
$strPassword = 'סיסמה';
$strPasswordEmpty = 'הסיסמה ריקה !';
$strPasswordNotSame = 'הסיסמאות אינן זהות !';
$strPdfDbSchema = 'ñëîú îñã äðúåðéí "%s" - òîåã %s';
$strPdfInvalidPageNum = 'îñôø òîåã ùì PDF ìà îåâãø!';
$strPdfInvalidTblName = 'äèáìä "%s" ìà ÷ééîú!';
$strPhp = 'öåø ÷åã PHP';
$strPdfDbSchema = 'ñëîú îñã äðúåðéí "%s" - òîåã %s';
$strPdfInvalidPageNum = 'îñôø òîåã ùì PDF ìà îåâãø!';
$strPdfInvalidTblName = 'äèáìä "%s" ìà ÷ééîú!';
$strPhp = 'öåø ÷åã PHP';
$strPmaDocumentation = 'דוקומנטצית phpMyAdmin';
$strPmaUriError = 'הנחיית ה- <tt>$cfg[\'PmaAbsoluteUri\']</tt> חייבת להיות ממוקמת בקובץ הקונפיגורציה שלך!';
$strPos1 = 'התחל';
@ -268,7 +268,7 @@ $strQueryOnDb = '
$strReType = 'הכנס מחדש';
$strRecords = 'רשומות';
$strReferentialIntegrity = 'בדוק את ה- Referential Integrity:';
$strRelationView = 'úöåâú éçñ';
$strRelationView = 'úöåâú éçñ';
$strReloadFailed = 'טעינה מחדש של MySQL נכשלה.';
$strReloadMySQL = 'טען מחדש את MySQL';
$strRememberReload = 'זכור לטעון מחדש את השרת.';
@ -295,9 +295,9 @@ $strRunQuery = '
$strRunSQLQuery = 'הרץ את שאילתה/שאילתות על מסד הנתונים %s';
$strRunning = 'רץ על %s';
$strSQL = 'SQL';
$strSQL = 'SQL';
$strSQLQuery = 'שאילתת SQL';
$strSQLResult = 'úåöàåú SQL';
$strSQLResult = 'úåöàåú SQL';
$strSave = 'שמור';
$strSearch = 'חפש';
$strSearchFormTitle = 'חפש במסד הנתונים';
@ -313,14 +313,14 @@ $strSelectADb = '
$strSelectAll = 'בחר הכל';
$strSelectFields = 'בחר שדות (לפחות אחד):';
$strSelectNumRows = 'מבצע שאילתה';
$strSelectTables = 'áçø èáìàåú';
$strSelectTables = 'áçø èáìàåú';
$strSend = 'שמור כקובץ';
$strServerChoice = 'בחירת שרת';
$strServerVersion = 'גרסת שרת';
$strSetEnumVal = 'אם סוג השדה הוא enum או set, הכנס בבקשה ערכים המשתמשים בפורמט הבא: \'a\',\'b\',\'c\'...<br />אם תשים אי פעם סימן \ או מרכאה אחת יחד עם הערכים הללו, הוסף \ לפניו.';
$strShow = 'הראה';
$strShowAll = 'הראה הכל';
$strShowColor = 'äöâ öáò';
$strShowColor = 'äöâ öáò';
$strShowCols = 'הראה טורים';
$strShowPHPInfo = 'הראה מידע PHP';
$strShowTables = 'הראה טבלאות';
@ -337,8 +337,8 @@ $strStrucData = '
$strStrucDrop = 'הוסף \'מחק טבלה\'';
$strStrucExcelCSV = 'CVS למידע Ms Excel';
$strStrucOnly = 'מבנה בלבד';
$strStructPropose = 'äöò îáðé èáìä';
$strStructure = 'îáðéí';
$strStructPropose = 'äöò îáðé èáìä';
$strStructure = 'îáðéí';
$strSubmit = 'שלח';
$strSuccess = 'שאילתת ה- SQL שלך בוצעה בהצלחה';
$strSum = 'סיכום';
@ -414,4 +414,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -34,7 +34,7 @@ $strAfter = '%s ut
$strAfterInsertBack = 'Vissza az el&#0337z&#0337 oldalra';
$strAfterInsertNewInsert = 'Új sor beszúrása';
$strAll = 'Mind';
$strAllTableSameWidth = 'minden tábla ezzel a szélességgel jelenjen meg?';
$strAllTableSameWidth = 'minden tábla ezzel a szélességgel jelenjen meg?';
$strAlterOrderBy = 'Tábla megváltozása rendezve e szerint:';
$strAnalyzeTable = 'Tábla vizsgálat';
$strAnd = 'És';
@ -77,9 +77,9 @@ $strCheckTable = 'T
$strChoosePage = 'Válassz oldalt a szerkesztéshez';
$strColumn = 'Oszlop';
$strColumnNames = 'Oszlop nevek';
$strComments = 'Megjegyzések';
$strComments = 'Megjegyzések';
$strCompleteInserts = 'Mez&#0337neveket is hozzáadja';
$strConfigFileError = 'A phpMyAdmin nem tudja olvasni a konfigurációs fájlt!<br />Lehet, hogy a php szintaktikai hibát talált benne, vagy nem találja a fájlt.<br />Használd az alsó linket a konfigurációs fájl helyreállításához, olvasd el a kapott php hibaüzeneteket. Többnyire egy idéz&#0337jel vagy egy pontosvessz&#0337 hiányzik valahol.<br />Ha üres oldalt kapsz, minden rendben.';
$strConfigFileError = 'A phpMyAdmin nem tudja olvasni a konfigurációs fájlt!<br />Lehet, hogy a php szintaktikai hibát talált benne, vagy nem találja a fájlt.<br />Használd az alsó linket a konfigurációs fájl helyreállításához, olvasd el a kapott php hibaüzeneteket. Többnyire egy idéz&#0337jel vagy egy pontosvessz&#0337 hiányzik valahol.<br />Ha üres oldalt kapsz, minden rendben.';
$strConfigureTableCoord = 'Állítsd be a(z) $s tábla koordinátáit';
$strConfirm = 'Biztos, hogy végre akarod hajtani?';
$strCookiesRequired = 'A Cookie-kat most engedélyeznek kell.';
@ -198,13 +198,13 @@ $strLogout = 'Kil
$strLogPassword = 'Jelszó:';
$strLogUsername = 'Felhasználói név:';
$strMissingBracket = 'Hiányzó szögletes zárójel';
$strMissingBracket = 'Hiányzó szögletes zárójel';
$strModifications = 'A változásokat elmentettem';
$strModify = 'Változás';
$strModifyIndexTopic = 'Index változása';
$strMoveTable = 'Tábla áthelyezése ide (adatbázis<b>.</b>tábla):';
$strMoveTableOK = '%s táblát áthelyeztem ide: %s.';
$strMySQLCharset = 'MySQL karakterkészlet';
$strMySQLCharset = 'MySQL karakterkészlet';
$strMySQLReloaded = 'MySQL újratöltve.';
$strMySQLSaid = 'MySQL jelzi: ';
$strMySQLServerProcess = 'MySQL %pma_s1%, szerver: %pma_s2%, felhasználó: %pma_s3%';
@ -344,7 +344,7 @@ $strSpaceUsage = 'Helyfoglal
$strSplitWordsWithSpace = 'A szavak fel vannak osztva szóköz karakter szerint (" ").';
$strSQL = 'SQL';
$strSQLQuery = 'SQL-kérés';
$strSQLResult = 'SQL eredmény';
$strSQLResult = 'SQL eredmény';
$strStatement = 'Adatok';
$strStrucCSV = 'CSV adat';
$strStrucData = 'Szerkezet és adatok';
@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -35,7 +35,7 @@ $strAfter = '%s után';
$strAfterInsertBack = 'Vissza az el&#0337z&#0337 oldalra';
$strAfterInsertNewInsert = 'Új sor beszúrása';
$strAll = 'Mind';
$strAllTableSameWidth = 'minden tábla ezzel a szélességgel jelenjen meg?';
$strAllTableSameWidth = 'minden tábla ezzel a szélességgel jelenjen meg?';
$strAlterOrderBy = 'Tábla megváltozása rendezve e szerint:';
$strAnalyzeTable = 'Tábla vizsgálat';
$strAnd = 'És';
@ -78,9 +78,9 @@ $strCheckTable = 'Tábla ellen&#0337rzés';
$strChoosePage = 'Válassz oldalt a szerkesztéshez';
$strColumn = 'Oszlop';
$strColumnNames = 'Oszlop nevek';
$strComments = 'Megjegyzések';
$strComments = 'Megjegyzések';
$strCompleteInserts = 'Mez&#0337neveket is hozzáadja';
$strConfigFileError = 'A phpMyAdmin nem tudja olvasni a konfigurációs fájlt!<br />Lehet, hogy a php szintaktikai hibát talált benne, vagy nem találja a fájlt.<br />Használd az alsó linket a konfigurációs fájl helyreállításához, olvasd el a kapott php hibaüzeneteket. Többnyire egy idéz&#0337jel vagy egy pontosvessz&#0337 hiányzik valahol.<br />Ha üres oldalt kapsz, minden rendben.';
$strConfigFileError = 'A phpMyAdmin nem tudja olvasni a konfigurációs fájlt!<br />Lehet, hogy a php szintaktikai hibát talált benne, vagy nem találja a fájlt.<br />Használd az alsó linket a konfigurációs fájl helyreállításához, olvasd el a kapott php hibaüzeneteket. Többnyire egy idéz&#0337jel vagy egy pontosvessz&#0337 hiányzik valahol.<br />Ha üres oldalt kapsz, minden rendben.';
$strConfigureTableCoord = 'Állítsd be a(z) $s tábla koordinátáit';
$strConfirm = 'Biztos, hogy végre akarod hajtani?';
$strCookiesRequired = 'A Cookie-kat most engedélyeznek kell.';
@ -199,13 +199,13 @@ $strLogout = 'Kilépés';
$strLogPassword = 'Jelszó:';
$strLogUsername = 'Felhasználói név:';
$strMissingBracket = 'Hiányzó szögletes zárójel';
$strMissingBracket = 'Hiányzó szögletes zárójel';
$strModifications = 'A változásokat elmentettem';
$strModify = 'Változás';
$strModifyIndexTopic = 'Index változása';
$strMoveTable = 'Tábla áthelyezése ide (adatbázis<b>.</b>tábla):';
$strMoveTableOK = '%s táblát áthelyeztem ide: %s.';
$strMySQLCharset = 'MySQL karakterkészlet';
$strMySQLCharset = 'MySQL karakterkészlet';
$strMySQLReloaded = 'MySQL újratöltve.';
$strMySQLSaid = 'MySQL jelzi: ';
$strMySQLServerProcess = 'MySQL %pma_s1%, szerver: %pma_s2%, felhasználó: %pma_s3%';
@ -345,7 +345,7 @@ $strSpaceUsage = 'Helyfoglalás';
$strSplitWordsWithSpace = 'A szavak fel vannak osztva szóköz karakter szerint (" ").';
$strSQL = 'SQL';
$strSQLQuery = 'SQL-kérés';
$strSQLResult = 'SQL eredmény';
$strSQLResult = 'SQL eredmény';
$strStatement = 'Adatok';
$strStrucCSV = 'CSV adat';
$strStrucData = 'Szerkezet és adatok';
@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strYes = ' Si ';
$strZip = '"compresso con zip"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -421,4 +421,5 @@ $strYes = ' Si ';
$strZip = '"compresso con zip"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -423,4 +423,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -423,4 +423,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -424,4 +424,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -415,4 +415,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -415,4 +415,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -414,4 +414,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -36,7 +36,7 @@ $strAfter = 'Etter %s';
$strAfterInsertBack = 'Returner';
$strAfterInsertNewInsert = 'Sett inn en ny post';
$strAll = 'Alle';
$strAllTableSameWidth = 'vis alle tabeller med samme bredde?';
$strAllTableSameWidth = 'vis alle tabeller med samme bredde?';
$strAlterOrderBy = 'Endre tabell rekkefølge ved';
$strAnalyzeTable = 'Analyser tabell';
$strAnd = 'Og';
@ -79,7 +79,7 @@ $strCheckTable = 'Kontroller tabell';
$strChoosePage = 'Vennligst velg en side for redigering';
$strColumn = 'Kolonne';
$strColumnNames = 'Kolonnenavn';
$strComments = 'Kommentarer';
$strComments = 'Kommentarer';
$strCompleteInserts = 'Komplette innlegg';
$strConfigFileError = 'phpMyAdmin kunne ikke lese din konfigurasjonsfil!<br />Dette kan skje hvis PHP finner en syntaksfeil eller ikke kan finne filen.<br />Vennligst kall opp konfigurasjonsfilen direkte via linken under og les PHP feilmeldingen(e) som du vil få. I de fleste tilfeller så mangler det et anførselstegn eller et semikolon et sted.<br />Hvis du får en blank side så er alt ok.';
$strConfigureTableCoord = 'Vennligst konfigurer koordinatene for tabell %s';
@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -37,7 +37,7 @@ $strAfter = 'Etter %s';
$strAfterInsertBack = 'Returner';
$strAfterInsertNewInsert = 'Sett inn en ny post';
$strAll = 'Alle';
$strAllTableSameWidth = 'vis alle tabeller med samme bredde?';
$strAllTableSameWidth = 'vis alle tabeller med samme bredde?';
$strAlterOrderBy = 'Endre tabell rekkefølge ved';
$strAnalyzeTable = 'Analyser tabell';
$strAnd = 'Og';
@ -80,7 +80,7 @@ $strCheckTable = 'Kontroller tabell';
$strChoosePage = 'Vennligst velg en side for redigering';
$strColumn = 'Kolonne';
$strColumnNames = 'Kolonnenavn';
$strComments = 'Kommentarer';
$strComments = 'Kommentarer';
$strCompleteInserts = 'Komplette innlegg';
$strConfigFileError = 'phpMyAdmin kunne ikke lese din konfigurasjonsfil!<br />Dette kan skje hvis PHP finner en syntaksfeil eller ikke kan finne filen.<br />Vennligst kall opp konfigurasjonsfilen direkte via linken under og les PHP feilmeldingen(e) som du vil få. I de fleste tilfeller så mangler det et anførselstegn eller et semikolon et sted.<br />Hvis du får en blank side så er alt ok.';
$strConfigureTableCoord = 'Vennligst konfigurer koordinatene for tabell %s';
@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -414,4 +414,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -415,4 +415,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -73,19 +73,19 @@ $strCantUseRecodeIconv = 'N
$strCardinality = 'Quantidade';
$strCarriage = 'Fim de linha: \\r';
$strChange = 'Muda';
$strChangeDisplay = 'Escolha campo para mostrar';
$strChangeDisplay = 'Escolha campo para mostrar';
$strChangePassword = 'Alterar a senha';
$strCheckAll = 'Todos';
$strCheckDbPriv = 'Visualiza os Privilégios da Base de Dados';
$strCheckTable = 'Verificar tabela';
$strChoosePage = 'Escolha uma Página para editar';
$strChoosePage = 'Escolha uma Página para editar';
$strColComFeat = 'Mostrando comentários das Colunas';
$strColumn = 'Campo';
$strColumnNames = 'Nome dos Campos';
$strComments = 'Comentários';
$strComments = 'Comentários';
$strCompleteInserts = 'Instrucções de inserção completas';
$strConfigFileError = 'O phpMyAdmin não foi capaz de ler o ficheiro de configuração!<br />Isto pode acontecer se o php encontrar um erro no <i>parsing</i> ou se não conseguir encontrar o ficheiro.<br />Chame o ficheiro de configuração directamente usando o <i>link</i> a baixo e leia a(s) mensagem(ns) de erro do php. Na maior parte dos casos, trata-se de uma falta de aspas ou de um ponto e vírgula algures.<br />Se receber uma página em branco, está tudo correcto.';
$strConfigureTableCoord = 'Configure as cordenadas para a tabela %s';
$strConfigureTableCoord = 'Configure as cordenadas para a tabela %s';
$strConfirm = 'Confirma a sua opção?';
$strCookiesRequired = 'O mecanismo de "Cookies" tem de estar ligado a partir deste ponto.';
$strCopyTable = 'Copia tabela para (base-de-dados<b>.</b>tabela):';
@ -95,7 +95,7 @@ $strCreateIndex = 'Criar um
$strCreateIndexTopic = 'Criar um novo índice';
$strCreateNewDatabase = 'Criar nova base de dados';
$strCreateNewTable = 'Criar nova tabela na base de dados %s';
$strCreatePage = 'Criar uma Página nova';
$strCreatePage = 'Criar uma Página nova';
$strCreatePdfFeat = 'Criação de PDFs';
$strCriteria = 'Critérios';
@ -117,7 +117,7 @@ $strDisabled = 'Desactidado';
$strDisplay = 'Mostra';
$strDisplayFeat = 'Mostrar Características';
$strDisplayOrder = 'Ordem de visualização:';
$strDisplayPDF = 'Mostrar o esquema de PDF';
$strDisplayPDF = 'Mostrar o esquema de PDF';
$strDoAQuery = 'Faça uma "pesquisa por formulário" (caractere universal: "%")';
$strDoYouReally = 'Confirma : ';
$strDocu = 'Documentação';
@ -129,7 +129,7 @@ $strDumpingData = 'Extraindo dados da tabela';
$strDynamic = 'dinâmico';
$strEdit = 'Edita';
$strEditPDFPages = 'Editar páginas PDF';
$strEditPDFPages = 'Editar páginas PDF';
$strEditPrivileges = 'Alterar Privilegios';
$strEffective = 'Em uso';
$strEmpty = 'Limpa';
@ -157,7 +157,7 @@ $strFormat = 'Formato';
$strFullText = 'Texto inteiro';
$strFunction = 'Funções';
$strGenBy = 'Gerado por';
$strGenBy = 'Gerado por';
$strGenTime = 'Data de Criação';
$strGeneralRelationFeat = 'Características gerais de Relação';
$strGo = 'Executa';
@ -166,7 +166,7 @@ $strGzip = '"Compress
$strHasBeenAltered = 'foi alterado(a).';
$strHasBeenCreated = 'foi criado(a).';
$strHaveToShow = 'Tem que escolher pelo menos uma coluna para mostrar';
$strHaveToShow = 'Tem que escolher pelo menos uma coluna para mostrar';
$strHome = 'Início';
$strHomepageOfficial = 'Página Oficial do phpMyAdmin';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin - Página de Download';
@ -200,7 +200,7 @@ $strLimitNumRows = 'N
$strLineFeed = 'Mudança de linha: \\n';
$strLines = 'Linhas';
$strLinesTerminatedBy = 'Linhas terminadas por';
$strLinkNotFound = 'Link não encontrado';
$strLinkNotFound = 'Link não encontrado';
$strLinksTo = 'Links para';
$strLocationTextfile = 'Localização do arquivo de texto';
$strLogPassword = 'Senha&nbsp;:';
@ -214,7 +214,7 @@ $strModify = 'Modifica';
$strModifyIndexTopic = 'Modificar um índice';
$strMoveTable = 'Move tabela para (base de dados<b>.</b>tabela):';
$strMoveTableOK = 'A tabela %s foi movida para %s.';
$strMySQLCharset = 'Mapa de Caracteres do mySQL';
$strMySQLCharset = 'Mapa de Caracteres do mySQL';
$strMySQLReloaded = 'MySQL reiniciado.';
$strMySQLSaid = 'Mensagens do MySQL : ';
$strMySQLServerProcess = 'MySQL %pma_s1% a correr em %pma_s2% como %pma_s3%';
@ -226,14 +226,14 @@ $strName = 'Nome';
$strNext = 'Próximo';
$strNo = 'Não';
$strNoDatabases = 'Sem bases de dados';
$strNoDescription = 'sem Descrição';
$strNoDescription = 'sem Descrição';
$strNoDropDatabases = 'Os comandos "DROP DATABASE" estão inibidos.';
$strNoFrames = 'O phpMyAdmin torna-se mais agradável se usado num browser que suporte <b>frames</b>.';
$strNoIndex = 'Nenhum indíce definido!';
$strNoIndexPartsDefined = 'Nenhuma parte do índice definida!';
$strNoModification = 'Sem alterações';
$strNoPassword = 'Sem Senha';
$strNoPhp = 'sem código PHP';
$strNoPhp = 'sem código PHP';
$strNoPrivileges = 'Sem Privilégios';
$strNoQuery = 'Nenhum comando SQL encontrado!';
$strNoRights = 'Não tem permissões suficientes para aceder aqui, neste momento!';
@ -242,7 +242,7 @@ $strNoUsersFound = 'Nenhum utilizador encontrado.';
$strNone = 'Nenhum';
$strNotNumber = 'Isto não é um número!';
$strNotOK = 'não está OK';
$strNotSet = 'A Tabela <b>%s</b> não foi encontrada ou não foi definida em %s';
$strNotSet = 'A Tabela <b>%s</b> não foi encontrada ou não foi definida em %s';
$strNotValidNumber = ' não é um número de registo válido!';
$strNull = 'Nulo';
$strNumSearchResultsInTable = '%s resultado(s) na tabela <i>%s</i>';
@ -259,16 +259,16 @@ $strOr = 'Ou';
$strOverhead = 'Suspenso';
$strPHPVersion = 'versão do PHP';
$strPageNumber = 'Página número:';
$strPageNumber = 'Página número:';
$strPartialText = 'Texto parcial';
$strPassword = 'Senha';
$strPasswordEmpty = 'Indique a Senha!';
$strPasswordNotSame = 'As senhas são diferentes!\nLembre-se de confirmar a senha!';
$strPdfDbSchema = 'Esquema da base de dados "%s" - Página %s';
$strPdfInvalidPageNum = 'Numero da página do PDF indefinido!';
$strPdfInvalidTblName = 'A tabela "%s" não existe!';
$strPdfDbSchema = 'Esquema da base de dados "%s" - Página %s';
$strPdfInvalidPageNum = 'Numero da página do PDF indefinido!';
$strPdfInvalidTblName = 'A tabela "%s" não existe!';
$strPdfNoTables = 'Sem tablelas';
$strPhp = 'Criar código PHP';
$strPhp = 'Criar código PHP';
$strPmaDocumentation = 'Documentação do phpMyAdmin';
$strPmaUriError = 'A directiva <tt>$cfg[\'PmaAbsoluteUri\']</tt> TEM que ser definida no ficheiro de configuração!';
$strPos1 = 'Inicio';
@ -291,7 +291,7 @@ $strReType = 'Confirma';
$strRecords = 'Registos';
$strReferentialIntegrity = 'Verificar Integridade referencial:';
$strRelationNotWorking = 'As Características adicionais para trabalhar com ligações entre Tabelas foram desactivadas. Para saber porquê carregue %saqui%s.';
$strRelationView = 'Vista de Relação';
$strRelationView = 'Vista de Relação';
$strReloadFailed = 'Reiniciação do MySQL falhou.';
$strReloadMySQL = 'Reiniciar o MySQL';
$strRememberReload = 'Lembre-se de reiniciar o servidor.';
@ -320,9 +320,9 @@ $strRunning = 'a correr em %s';
$strSQL = 'SQL';
$strSQLQuery = 'Comando SQL';
$strSQLResult = 'Resultado SQL';
$strSQLResult = 'Resultado SQL';
$strSave = 'Guarda';
$strScaleFactorSmall = 'O factor escala é muito pequeno para encaixar o esquema numa página';
$strScaleFactorSmall = 'O factor escala é muito pequeno para encaixar o esquema numa página';
$strSearch = 'Pesquisar';
$strSearchFormTitle = 'Pesquisar na Base de Dados';
$strSearchInTables = 'Dentro de Tabela(s):';
@ -338,18 +338,18 @@ $strSelectADb = 'Por favor seleccione uma base de dados';
$strSelectAll = 'Selecciona Todas';
$strSelectFields = 'Seleccione os campos (no mínimo 1)';
$strSelectNumRows = 'na pesquisa';
$strSelectTables = 'Seleccionar Tabelas';
$strSelectTables = 'Seleccionar Tabelas';
$strSend = 'envia';
$strServerChoice = 'Escolha do Servidor';
$strServerVersion = 'Versão do servidor';
$strSetEnumVal = 'Se o tipo de campo é "enum" ou "set", por favor introduza os valores no seguinte formato: \'a\',\'b\',\'c\'...<br />Se precisar de colocar uma barra invertida ("\") ou um apóstrofe ("\'") entre esses valores, coloque uma barra invertida antes (por exemplo \'\\\\xyz\' ou \'a\\\'b\').';
$strShow = 'Mostra';
$strShowAll = 'Mostrar tudo';
$strShowColor = 'Mostrar côr';
$strShowColor = 'Mostrar côr';
$strShowCols = 'Mostra Colunas';
$strShowGrid = 'Mostrar grelha';
$strShowGrid = 'Mostrar grelha';
$strShowPHPInfo = 'Mostra informação do PHP';
$strShowTableDimension = 'Mostrar dimensão das tabelas';
$strShowTableDimension = 'Mostrar dimensão das tabelas';
$strShowTables = 'Mostra tabelas';
$strShowThisQuery = ' Mostrar de novo aqui este comando ';
$strShowingRecords = 'Mostrando registos ';
@ -364,7 +364,7 @@ $strStrucData = 'Estrutura e dados';
$strStrucDrop = 'Adiciona \'drop table\'';
$strStrucExcelCSV = 'dados CSV para Ms Excel';
$strStrucOnly = 'Somente estrutura';
$strStructPropose = 'Propor uma estrutura de tabela';
$strStructPropose = 'Propor uma estrutura de tabela';
$strStructure = 'Estrutura';
$strSubmit = 'Submete';
$strSuccess = 'O seu comando SQL foi executado com sucesso';
@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -74,19 +74,19 @@ $strCantUseRecodeIconv = 'Não é possível usar <i>iconv</i> nem <i>libiconv</i
$strCardinality = 'Quantidade';
$strCarriage = 'Fim de linha: \\r';
$strChange = 'Muda';
$strChangeDisplay = 'Escolha campo para mostrar';
$strChangeDisplay = 'Escolha campo para mostrar';
$strChangePassword = 'Alterar a senha';
$strCheckAll = 'Todos';
$strCheckDbPriv = 'Visualiza os Privilégios da Base de Dados';
$strCheckTable = 'Verificar tabela';
$strChoosePage = 'Escolha uma Página para editar';
$strChoosePage = 'Escolha uma Página para editar';
$strColComFeat = 'Mostrando comentários das Colunas';
$strColumn = 'Campo';
$strColumnNames = 'Nome dos Campos';
$strComments = 'Comentários';
$strComments = 'Comentários';
$strCompleteInserts = 'Instrucções de inserção completas';
$strConfigFileError = 'O phpMyAdmin não foi capaz de ler o ficheiro de configuração!<br />Isto pode acontecer se o php encontrar um erro no <i>parsing</i> ou se não conseguir encontrar o ficheiro.<br />Chame o ficheiro de configuração directamente usando o <i>link</i> a baixo e leia a(s) mensagem(ns) de erro do php. Na maior parte dos casos, trata-se de uma falta de aspas ou de um ponto e vírgula algures.<br />Se receber uma página em branco, está tudo correcto.';
$strConfigureTableCoord = 'Configure as cordenadas para a tabela %s';
$strConfigureTableCoord = 'Configure as cordenadas para a tabela %s';
$strConfirm = 'Confirma a sua opção?';
$strCookiesRequired = 'O mecanismo de "Cookies" tem de estar ligado a partir deste ponto.';
$strCopyTable = 'Copia tabela para (base-de-dados<b>.</b>tabela):';
@ -96,7 +96,7 @@ $strCreateIndex = 'Criar um índice com&nbsp;%s&nbsp;coluna(s)';
$strCreateIndexTopic = 'Criar um novo índice';
$strCreateNewDatabase = 'Criar nova base de dados';
$strCreateNewTable = 'Criar nova tabela na base de dados %s';
$strCreatePage = 'Criar uma Página nova';
$strCreatePage = 'Criar uma Página nova';
$strCreatePdfFeat = 'Criação de PDFs';
$strCriteria = 'Critérios';
@ -118,7 +118,7 @@ $strDisabled = 'Desactidado';
$strDisplay = 'Mostra';
$strDisplayFeat = 'Mostrar Características';
$strDisplayOrder = 'Ordem de visualização:';
$strDisplayPDF = 'Mostrar o esquema de PDF';
$strDisplayPDF = 'Mostrar o esquema de PDF';
$strDoAQuery = 'Faça uma "pesquisa por formulário" (caractere universal: "%")';
$strDoYouReally = 'Confirma : ';
$strDocu = 'Documentação';
@ -130,7 +130,7 @@ $strDumpingData = 'Extraindo dados da tabela';
$strDynamic = 'dinâmico';
$strEdit = 'Edita';
$strEditPDFPages = 'Editar páginas PDF';
$strEditPDFPages = 'Editar páginas PDF';
$strEditPrivileges = 'Alterar Privilegios';
$strEffective = 'Em uso';
$strEmpty = 'Limpa';
@ -158,7 +158,7 @@ $strFormat = 'Formato';
$strFullText = 'Texto inteiro';
$strFunction = 'Funções';
$strGenBy = 'Gerado por';
$strGenBy = 'Gerado por';
$strGenTime = 'Data de Criação';
$strGeneralRelationFeat = 'Características gerais de Relação';
$strGo = 'Executa';
@ -167,7 +167,7 @@ $strGzip = '"Compressão gzip"';
$strHasBeenAltered = 'foi alterado(a).';
$strHasBeenCreated = 'foi criado(a).';
$strHaveToShow = 'Tem que escolher pelo menos uma coluna para mostrar';
$strHaveToShow = 'Tem que escolher pelo menos uma coluna para mostrar';
$strHome = 'Início';
$strHomepageOfficial = 'Página Oficial do phpMyAdmin';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin - Página de Download';
@ -201,7 +201,7 @@ $strLimitNumRows = 'Número de registos por página';
$strLineFeed = 'Mudança de linha: \\n';
$strLines = 'Linhas';
$strLinesTerminatedBy = 'Linhas terminadas por';
$strLinkNotFound = 'Link não encontrado';
$strLinkNotFound = 'Link não encontrado';
$strLinksTo = 'Links para';
$strLocationTextfile = 'Localização do arquivo de texto';
$strLogPassword = 'Senha&nbsp;:';
@ -215,7 +215,7 @@ $strModify = 'Modifica';
$strModifyIndexTopic = 'Modificar um índice';
$strMoveTable = 'Move tabela para (base de dados<b>.</b>tabela):';
$strMoveTableOK = 'A tabela %s foi movida para %s.';
$strMySQLCharset = 'Mapa de Caracteres do mySQL';
$strMySQLCharset = 'Mapa de Caracteres do mySQL';
$strMySQLReloaded = 'MySQL reiniciado.';
$strMySQLSaid = 'Mensagens do MySQL : ';
$strMySQLServerProcess = 'MySQL %pma_s1% a correr em %pma_s2% como %pma_s3%';
@ -227,14 +227,14 @@ $strName = 'Nome';
$strNext = 'Próximo';
$strNo = 'Não';
$strNoDatabases = 'Sem bases de dados';
$strNoDescription = 'sem Descrição';
$strNoDescription = 'sem Descrição';
$strNoDropDatabases = 'Os comandos "DROP DATABASE" estão inibidos.';
$strNoFrames = 'O phpMyAdmin torna-se mais agradável se usado num browser que suporte <b>frames</b>.';
$strNoIndex = 'Nenhum indíce definido!';
$strNoIndexPartsDefined = 'Nenhuma parte do índice definida!';
$strNoModification = 'Sem alterações';
$strNoPassword = 'Sem Senha';
$strNoPhp = 'sem código PHP';
$strNoPhp = 'sem código PHP';
$strNoPrivileges = 'Sem Privilégios';
$strNoQuery = 'Nenhum comando SQL encontrado!';
$strNoRights = 'Não tem permissões suficientes para aceder aqui, neste momento!';
@ -243,7 +243,7 @@ $strNoUsersFound = 'Nenhum utilizador encontrado.';
$strNone = 'Nenhum';
$strNotNumber = 'Isto não é um número!';
$strNotOK = 'não está OK';
$strNotSet = 'A Tabela <b>%s</b> não foi encontrada ou não foi definida em %s';
$strNotSet = 'A Tabela <b>%s</b> não foi encontrada ou não foi definida em %s';
$strNotValidNumber = ' não é um número de registo válido!';
$strNull = 'Nulo';
$strNumSearchResultsInTable = '%s resultado(s) na tabela <i>%s</i>';
@ -260,16 +260,16 @@ $strOr = 'Ou';
$strOverhead = 'Suspenso';
$strPHPVersion = 'versão do PHP';
$strPageNumber = 'Página número:';
$strPageNumber = 'Página número:';
$strPartialText = 'Texto parcial';
$strPassword = 'Senha';
$strPasswordEmpty = 'Indique a Senha!';
$strPasswordNotSame = 'As senhas são diferentes!\nLembre-se de confirmar a senha!';
$strPdfDbSchema = 'Esquema da base de dados "%s" - Página %s';
$strPdfInvalidPageNum = 'Numero da página do PDF indefinido!';
$strPdfInvalidTblName = 'A tabela "%s" não existe!';
$strPdfDbSchema = 'Esquema da base de dados "%s" - Página %s';
$strPdfInvalidPageNum = 'Numero da página do PDF indefinido!';
$strPdfInvalidTblName = 'A tabela "%s" não existe!';
$strPdfNoTables = 'Sem tablelas';
$strPhp = 'Criar código PHP';
$strPhp = 'Criar código PHP';
$strPmaDocumentation = 'Documentação do phpMyAdmin';
$strPmaUriError = 'A directiva <tt>$cfg[\'PmaAbsoluteUri\']</tt> TEM que ser definida no ficheiro de configuração!';
$strPos1 = 'Inicio';
@ -292,7 +292,7 @@ $strReType = 'Confirma';
$strRecords = 'Registos';
$strReferentialIntegrity = 'Verificar Integridade referencial:';
$strRelationNotWorking = 'As Características adicionais para trabalhar com ligações entre Tabelas foram desactivadas. Para saber porquê carregue %saqui%s.';
$strRelationView = 'Vista de Relação';
$strRelationView = 'Vista de Relação';
$strReloadFailed = 'Reiniciação do MySQL falhou.';
$strReloadMySQL = 'Reiniciar o MySQL';
$strRememberReload = 'Lembre-se de reiniciar o servidor.';
@ -321,9 +321,9 @@ $strRunning = 'a correr em %s';
$strSQL = 'SQL';
$strSQLQuery = 'Comando SQL';
$strSQLResult = 'Resultado SQL';
$strSQLResult = 'Resultado SQL';
$strSave = 'Guarda';
$strScaleFactorSmall = 'O factor escala é muito pequeno para encaixar o esquema numa página';
$strScaleFactorSmall = 'O factor escala é muito pequeno para encaixar o esquema numa página';
$strSearch = 'Pesquisar';
$strSearchFormTitle = 'Pesquisar na Base de Dados';
$strSearchInTables = 'Dentro de Tabela(s):';
@ -339,18 +339,18 @@ $strSelectADb = 'Por favor seleccione uma base de dados';
$strSelectAll = 'Selecciona Todas';
$strSelectFields = 'Seleccione os campos (no mínimo 1)';
$strSelectNumRows = 'na pesquisa';
$strSelectTables = 'Seleccionar Tabelas';
$strSelectTables = 'Seleccionar Tabelas';
$strSend = 'envia';
$strServerChoice = 'Escolha do Servidor';
$strServerVersion = 'Versão do servidor';
$strSetEnumVal = 'Se o tipo de campo é "enum" ou "set", por favor introduza os valores no seguinte formato: \'a\',\'b\',\'c\'...<br />Se precisar de colocar uma barra invertida ("\") ou um apóstrofe ("\'") entre esses valores, coloque uma barra invertida antes (por exemplo \'\\\\xyz\' ou \'a\\\'b\').';
$strShow = 'Mostra';
$strShowAll = 'Mostrar tudo';
$strShowColor = 'Mostrar côr';
$strShowColor = 'Mostrar côr';
$strShowCols = 'Mostra Colunas';
$strShowGrid = 'Mostrar grelha';
$strShowGrid = 'Mostrar grelha';
$strShowPHPInfo = 'Mostra informação do PHP';
$strShowTableDimension = 'Mostrar dimensão das tabelas';
$strShowTableDimension = 'Mostrar dimensão das tabelas';
$strShowTables = 'Mostra tabelas';
$strShowThisQuery = ' Mostrar de novo aqui este comando ';
$strShowingRecords = 'Mostrando registos ';
@ -365,7 +365,7 @@ $strStrucData = 'Estrutura e dados';
$strStrucDrop = 'Adiciona \'drop table\'';
$strStrucExcelCSV = 'dados CSV para Ms Excel';
$strStrucOnly = 'Somente estrutura';
$strStructPropose = 'Propor uma estrutura de tabela';
$strStructPropose = 'Propor uma estrutura de tabela';
$strStructure = 'Estrutura';
$strSubmit = 'Submete';
$strSuccess = 'O seu comando SQL foi executado com sucesso';
@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -414,4 +414,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -418,4 +418,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -421,4 +421,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -420,4 +420,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -419,4 +419,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strYes = 'Da';
$strZip = '"zipano"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strYes = 'Da';
$strZip = '"zipano"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strYes = 'Da';
$strZip = '"zipano"';
// To translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -74,9 +74,9 @@ $strCheckTable = 'Revisar tabla';
$strChoosePage = 'Elija la página a editar';
$strColumn = 'Columna';
$strColumnNames = 'Nombre de las columnas';
$strComments = 'Comentarios';
$strComments = 'Comentarios';
$strCompleteInserts = 'Completar los "Inserts"';
$strConfigFileError = '¡phpMyAdmin no puede leer el fichero de configuración!<br />Esto puede suceder si php encuentra un error sintáctico en él o bien php no puede encontrar el fichero.<br />Intente acceder al fichero de configuración directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de error que reciba. En muchas ocasiones falta una coma o punto y coma en algún sitio.<br />Si recibe una página en blanco, todo está correcto.';
$strConfigFileError = '¡phpMyAdmin no puede leer el fichero de configuración!<br />Esto puede suceder si php encuentra un error sintáctico en él o bien php no puede encontrar el fichero.<br />Intente acceder al fichero de configuración directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de error que reciba. En muchas ocasiones falta una coma o punto y coma en algún sitio.<br />Si recibe una página en blanco, todo está correcto.';
$strConfigureTableCoord = 'Configure las coordenadas para la tabla %s';
$strConfirm = '¿Realmente quiere hacerlo?';
$strCookiesRequired = 'Las "cookies" deben estar habilitadas pasado este punto.';
@ -227,7 +227,7 @@ $strNoTablesFound = 'No se han encontrado tablas en la base de datos.';
$strNoUsersFound = 'Usuario(s) no encontrado(s).';
$strNone = 'Ninguna';
$strNotNumber = 'Esto no es un número!';
$strNotSet = 'Tabla <b>%s</b> no encontrada o no definida en %s';
$strNotSet = 'Tabla <b>%s</b> no encontrada o no definida en %s';
$strNotValidNumber = '¡no es un número de fila válido!';
$strNull = 'Nulo';
$strNumSearchResultsInTable = '%s resultado(s) en la tabla <i>%s</i>';
@ -398,17 +398,18 @@ $strZip = '"comprimido con zip"';
$strRelationNotWorking = 'Los componentes adicionales para trabajar con tablas vinculadas fueron desactivados. Para saber porqué, dé clic %saquí%s.'; //Features = ¿componentes?
$strAllTableSameWidth = '¿Mostrar todas las tablas que tienen el mismo ancho?';
$strPdfNoTables = 'No existen tablas';
$strPdfNoTables = 'No existen tablas';
$strDisplayFeat = 'Mostrar los componentes'; //Features = ¿componentes?
$strCreatePdfFeat = 'Creación de los PDF';
$strColComFeat = 'Mostrando los comentarios de la columna';
$strCreatePdfFeat = 'Creación de los PDF';
$strColComFeat = 'Mostrando los comentarios de la columna';
$strDisabled = 'Deshabilitado';
$strEnabled = 'Habilitado';
$strOK = 'OK';
$strOK = 'OK';
$strNotOK = 'no recibió el OK';
$strGeneralRelationFeat = 'Componentes de relación general'; //Features = ¿componentes?
$strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -75,9 +75,9 @@ $strCheckTable = 'Revisar tabla';
$strChoosePage = 'Elija la página a editar';
$strColumn = 'Columna';
$strColumnNames = 'Nombre de las columnas';
$strComments = 'Comentarios';
$strComments = 'Comentarios';
$strCompleteInserts = 'Completar los "Inserts"';
$strConfigFileError = '¡phpMyAdmin no puede leer el fichero de configuración!<br />Esto puede suceder si php encuentra un error sintáctico en él o bien php no puede encontrar el fichero.<br />Intente acceder al fichero de configuración directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de error que reciba. En muchas ocasiones falta una coma o punto y coma en algún sitio.<br />Si recibe una página en blanco, todo está correcto.';
$strConfigFileError = '¡phpMyAdmin no puede leer el fichero de configuración!<br />Esto puede suceder si php encuentra un error sintáctico en él o bien php no puede encontrar el fichero.<br />Intente acceder al fichero de configuración directamente mediante el siguiente enlace y compruebe el(los) mensaje(s) de error que reciba. En muchas ocasiones falta una coma o punto y coma en algún sitio.<br />Si recibe una página en blanco, todo está correcto.';
$strConfigureTableCoord = 'Configure las coordenadas para la tabla %s';
$strConfirm = '¿Realmente quiere hacerlo?';
$strCookiesRequired = 'Las "cookies" deben estar habilitadas pasado este punto.';
@ -228,7 +228,7 @@ $strNoTablesFound = 'No se han encontrado tablas en la base de datos.';
$strNoUsersFound = 'Usuario(s) no encontrado(s).';
$strNone = 'Ninguna';
$strNotNumber = 'Esto no es un número!';
$strNotSet = 'Tabla <b>%s</b> no encontrada o no definida en %s';
$strNotSet = 'Tabla <b>%s</b> no encontrada o no definida en %s';
$strNotValidNumber = '¡no es un número de fila válido!';
$strNull = 'Nulo';
$strNumSearchResultsInTable = '%s resultado(s) en la tabla <i>%s</i>';
@ -399,17 +399,18 @@ $strZip = '"comprimido con zip"';
$strRelationNotWorking = 'Los componentes adicionales para trabajar con tablas vinculadas fueron desactivados. Para saber porqué, dé clic %saquí%s.'; //Features = ¿componentes?
$strAllTableSameWidth = '¿Mostrar todas las tablas que tienen el mismo ancho?';
$strPdfNoTables = 'No existen tablas';
$strPdfNoTables = 'No existen tablas';
$strDisplayFeat = 'Mostrar los componentes'; //Features = ¿componentes?
$strCreatePdfFeat = 'Creación de los PDF';
$strColComFeat = 'Mostrando los comentarios de la columna';
$strCreatePdfFeat = 'Creación de los PDF';
$strColComFeat = 'Mostrando los comentarios de la columna';
$strDisabled = 'Deshabilitado';
$strEnabled = 'Habilitado';
$strOK = 'OK';
$strOK = 'OK';
$strNotOK = 'no recibió el OK';
$strGeneralRelationFeat = 'Componentes de relación general'; //Features = ¿componentes?
$strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -415,4 +415,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -36,7 +36,7 @@ $strAfter = '
$strAfterInsertBack = 'Êè§¡ÅѺ';
$strAfterInsertNewInsert = 'á·Ã¡ÃÐàºÕ¹ãËÁè';
$strAll = '·Ñé§ËÁ´';
$strAllTableSameWidth = '稻蛛粉У卉勍詣ゝ卉勍顔蚤で卅о決辧儿肪徑篩<E5BE91>?';
$strAllTableSameWidth = '稻蛛粉У卉勍詣ゝ卉勍顔蚤で卅о決辧儿肪徑篩<E5BE91>?';
$strAlterOrderBy = 'àÃÕ§¤èÒã¹µÒÃÒ§µÒÁ';
$strAnalyzeTable = 'ÇÔà¤ÃÒÐËìµÒÃÒ§';
$strAnd = 'áÅÐ';
@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -37,7 +37,7 @@ $strAfter = 'หลัง %s';
$strAfterInsertBack = 'ส่งกลับ';
$strAfterInsertNewInsert = 'แทรกระเบียนใหม่';
$strAll = 'ทั้งหมด';
$strAllTableSameWidth = 'ให้แสดงตารางทุกตารางด้วยความกว้างเท่ากันหรือไม่?';
$strAllTableSameWidth = 'ให้แสดงตารางทุกตารางด้วยความกว้างเท่ากันหรือไม่?';
$strAlterOrderBy = 'เรียงค่าในตารางตาม';
$strAnalyzeTable = 'วิเคราะห์ตาราง';
$strAnd = 'และ';
@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -64,7 +64,7 @@ $strBrowse = 'Tara';
$strBzip = '"bzipped"';
$strCantLoadMySQL = 'mySQL uzantısını yükleyemiyor,<br />lütfen PHP ayarlarını kontrol ediniz.';
$strCantLoadRecodeIconv = 'Karakter seti dönüşümü için gerekli olan Iconv veya recode uzantılarını yükleyenemiyor. Php\'nin bu uzantılara izin vermesini sağlayın veya phpMyAdmin içinde karakter dönüşümünü devre dışı bırakınız...';
$strCantLoadRecodeIconv = 'Karakter seti dönüşümü için gerekli olan Iconv veya recode uzantılarını yükleyenemiyor. Php\'nin bu uzantılara izin vermesini sağlayın veya phpMyAdmin içinde karakter dönüşümünü devre dışı bırakınız...';
$strCantRenameIdxToPrimary = 'Index\'i PRIMARY olarak adland&#305;r&#305;mazs&#305;n&#305;z!';
$strCantUseRecodeIconv = 'Uzantı raporları yüklenmişken , ne iconv ne libinconv ne de recode_string fonksiyonu kullanılamaz. Php ayarlarınızı kontrol ediniz.';
$strCardinality = 'En önemli';
@ -76,12 +76,12 @@ $strCheckAll = 'T
$strCheckDbPriv = 'Veritabanı önceliklerini kontrol et';
$strCheckTable = 'Tabloyu kontrol et';
$strChoosePage = 'Lütfen düzenlemek istediğiniz sayfayı seçin';
$strColComFeat = 'Sütun yorumları gösteriliyor';
$strColComFeat = 'Sütun yorumları gösteriliyor';
$strColumn = 'Sütun';
$strColumnNames = 'Sütun adları';
$strComments = 'Yorumlar';
$strComments = 'Yorumlar';
$strCompleteInserts = 'Tamamlanmış eklemeler';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyanızı okuyamadı....<br /> Bu php yorumlama hatası bulduğu zaman veya dosyayı bulamadığı zaman meydana gelebilir..<br /> Lütfen aşağıdaki linki kullanarak dosyayı direkt olarak çağırın ve aldığınız php hata mesajlarını okuyunuz.Çoğu durumda herhangi bir yerde tırnak veya noktalı virgül eksiktir<br /> Boş bir sayfayla karşılaşırsanız ,herşey yolunda demektir.';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyanızı okuyamadı....<br /> Bu php yorumlama hatası bulduğu zaman veya dosyayı bulamadığı zaman meydana gelebilir..<br /> Lütfen aşağıdaki linki kullanarak dosyayı direkt olarak çağırın ve aldığınız php hata mesajlarını okuyunuz.Çoğu durumda herhangi bir yerde tırnak veya noktalı virgül eksiktir<br /> Boş bir sayfayla karşılaşırsanız ,herşey yolunda demektir.';
$strConfigureTableCoord = ' Lütfen %s tablosu için koordinatları yapılandırınız';
$strConfirm = 'Aşağıdaki komutu uygulamak istediğinizden emin misiniz?';
$strCookiesRequired = 'Cookieler aç&#305;k olmal&#305;d&#305;r.';
@ -93,7 +93,7 @@ $strCreateIndexTopic = 'Yeni bir index olu&#351;tur';
$strCreateNewDatabase = 'Yeni veritabanı oluştur';
$strCreateNewTable = '%s veritabanı üzerinde yeni bir tablo oluştur';
$strCreatePage = 'Yeni sayfa oluştur';
$strCreatePdfFeat = 'PDF\'lerin oluşturulması';
$strCreatePdfFeat = 'PDF\'lerin oluşturulması';
$strCriteria = 'Kriter';
$strData = 'Veri';
@ -110,9 +110,9 @@ $strDeletedRows = 'Silinen sat
$strDeleteFailed = 'Silme sırasında hata oluştu!';
$strDeleteUserMessage = '%s kullanıcısını sildiniz.';
$strDescending = 'Azalan';
$strDisabled = 'Etkin değil';
$strDisabled = 'Etkin değil';
$strDisplay = 'Görüntüle';
$strDisplayFeat = 'Özellikleri Göster';
$strDisplayFeat = 'Özellikleri Göster';
$strDisplayOrder = 'Görünüm düzeni:';
$strDisplayPDF = 'PDF şemasını göster';
$strDoAQuery = '"Örnekle sorgu" yap (joker: "%")';
@ -131,7 +131,7 @@ $strEditPrivileges = '
$strEffective = 'Efektif';
$strEmpty = 'Boşalt';
$strEmptyResultSet = 'MySQL boş bir sonuc kümesi döndürdü ( sıfır satır).';
$strEnabled = 'Etkin';
$strEnabled = 'Etkin';
$strEnd = 'Son';
$strEnglishPrivileges = ' Not: mySQL öncelik adları İngilizce olarak belirtilmiştir ';
$strError = 'Hata';
@ -155,7 +155,7 @@ $strFullText = 'T
$strFunction = 'Fonksiyon';
$strGenBy = 'Oluşturuldu->:';
$strGeneralRelationFeat = 'Genel ilişki özellikleri';
$strGeneralRelationFeat = 'Genel ilişki özellikleri';
$strGenTime = ıktı Tarihi';
$strGo = 'Git';
$strGrants = 'Haklar';
@ -163,7 +163,7 @@ $strGzip = '"gziplenmi
$strHasBeenAltered = 'düzenlendi.';
$strHasBeenCreated = 'yaratıldı.';
$strHaveToShow = 'Görüntülemek için en az bir sütun seçmelisiniz';
$strHaveToShow = 'Görüntülemek için en az bir sütun seçmelisiniz';
$strHome = 'Ana Sayfa';
$strHomepageOfficial = 'phpMyAdmin Web Sayfası';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Yükleme Sayfası';
@ -205,13 +205,13 @@ $strLogout = '
$strLogPassword = '&#350;ifre:';
$strLogUsername = 'Kullan&#305;c&#305; Ad&#305;:';
$strMissingBracket = 'Parantez eksik';
$strMissingBracket = 'Parantez eksik';
$strModifications = 'Değişiklikler kaydedildi';
$strModify = 'Değiştir';
$strModifyIndexTopic = 'Index düzenle';
$strMoveTable = 'Tabloyu (veritabanı<b>.</b>tablo) taşı:';
$strMoveTableOK = '%s tablosu %s üzerine taşındı.';
$strMySQLCharset = 'MySQL karakter seti';
$strMySQLCharset = 'MySQL karakter seti';
$strMySQLReloaded = 'MySQL yeniden yüklendi.';
$strMySQLSaid = 'MySQL çıktısı: ';
$strMySQLServerProcess = ' MySQL %pma_s1% %pma_s2% üzerinde %pma_s3% olarak çalışıyor';
@ -237,7 +237,7 @@ $strNoQuery = 'SQL sorgusu yok!';
$strNoRights = 'Burada bulunmak için yeterli haklara sahip değilsiniz!';
$strNoTablesFound = 'Veritabanı\'nda tablo bulunamadı.';
$strNotNumber = 'Bu bir sayı değil!';
$strNotOK = 'Tamam değil';
$strNotOK = 'Tamam değil';
$strNotSet = '<b>%s</b> tablosu bulunamadı veya %s içinde tanımlanmadı';
$strNotValidNumber = ' geçerli bir satır sayısı değil!';
$strNoUsersFound = 'Kullanıcı(lar) bulunamadı.';
@ -246,7 +246,7 @@ $strNumSearchResultsInTable = '%s e
$strNumSearchResultsTotal = 'Toplam: %s eşleşim';
$strOftenQuotation = 'Sık kullanılan aktarma işaretleri.SEÇİME BAĞLI,sadece char ve varchar alanlarının "enclosed-by" karakteri ile çevreneleceği anlamına gelir..';
$strOK = 'Tamam';
$strOK = 'Tamam';
$strOperations = 'İşlemler';
$strOptimizeTable = 'Tabloyu optimize et';
$strOptionalControls = 'Özel karakterleri yazmak ve okumak için kontroller.Opsiyonel';
@ -360,7 +360,7 @@ $strStrucData = 'Yap
$strStrucDrop = '\'Drop table\' ekle';
$strStrucExcelCSV = 'MS Excel verisi için CSV';
$strStrucOnly = 'Sadece yapı';
$strStructPropose = 'Tablo yapısını ayarla(mysql,tablo yapısını optimize eder)';
$strStructPropose = 'Tablo yapısını ayarla(mysql,tablo yapısını optimize eder)';
$strStructure = 'Yapı';
$strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz başarıyla çalıştırılmıştır';
@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -65,7 +65,7 @@ $strBrowse = 'Tara';
$strBzip = '"bzipped"';
$strCantLoadMySQL = 'mySQL uzantısını yükleyemiyor,<br />lütfen PHP ayarlarını kontrol ediniz.';
$strCantLoadRecodeIconv = 'Karakter seti dönüşümü için gerekli olan Iconv veya recode uzantılarını yükleyenemiyor. Php\'nin bu uzantılara izin vermesini sağlayın veya phpMyAdmin içinde karakter dönüşümünü devre dışı bırakınız...';
$strCantLoadRecodeIconv = 'Karakter seti dönüşümü için gerekli olan Iconv veya recode uzantılarını yükleyenemiyor. Php\'nin bu uzantılara izin vermesini sağlayın veya phpMyAdmin içinde karakter dönüşümünü devre dışı bırakınız...';
$strCantRenameIdxToPrimary = 'Index\'i PRIMARY olarak adland&#305;r&#305;mazs&#305;n&#305;z!';
$strCantUseRecodeIconv = 'Uzantı raporları yüklenmişken , ne iconv ne libinconv ne de recode_string fonksiyonu kullanılamaz. Php ayarlarınızı kontrol ediniz.';
$strCardinality = 'En önemli';
@ -77,12 +77,12 @@ $strCheckAll = 'Tümünü seç';
$strCheckDbPriv = 'Veritabanı önceliklerini kontrol et';
$strCheckTable = 'Tabloyu kontrol et';
$strChoosePage = 'Lütfen düzenlemek istediğiniz sayfayı seçin';
$strColComFeat = 'Sütun yorumları gösteriliyor';
$strColComFeat = 'Sütun yorumları gösteriliyor';
$strColumn = 'Sütun';
$strColumnNames = 'Sütun adları';
$strComments = 'Yorumlar';
$strComments = 'Yorumlar';
$strCompleteInserts = 'Tamamlanmış eklemeler';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyanızı okuyamadı....<br /> Bu php yorumlama hatası bulduğu zaman veya dosyayı bulamadığı zaman meydana gelebilir..<br /> Lütfen aşağıdaki linki kullanarak dosyayı direkt olarak çağırın ve aldığınız php hata mesajlarını okuyunuz.Çoğu durumda herhangi bir yerde tırnak veya noktalı virgül eksiktir<br /> Boş bir sayfayla karşılaşırsanız ,herşey yolunda demektir.';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyanızı okuyamadı....<br /> Bu php yorumlama hatası bulduğu zaman veya dosyayı bulamadığı zaman meydana gelebilir..<br /> Lütfen aşağıdaki linki kullanarak dosyayı direkt olarak çağırın ve aldığınız php hata mesajlarını okuyunuz.Çoğu durumda herhangi bir yerde tırnak veya noktalı virgül eksiktir<br /> Boş bir sayfayla karşılaşırsanız ,herşey yolunda demektir.';
$strConfigureTableCoord = ' Lütfen %s tablosu için koordinatları yapılandırınız';
$strConfirm = 'Aşağıdaki komutu uygulamak istediğinizden emin misiniz?';
$strCookiesRequired = 'Cookieler aç&#305;k olmal&#305;d&#305;r.';
@ -94,7 +94,7 @@ $strCreateIndexTopic = 'Yeni bir index olu&#351;tur';
$strCreateNewDatabase = 'Yeni veritabanı oluştur';
$strCreateNewTable = '%s veritabanı üzerinde yeni bir tablo oluştur';
$strCreatePage = 'Yeni sayfa oluştur';
$strCreatePdfFeat = 'PDF\'lerin oluşturulması';
$strCreatePdfFeat = 'PDF\'lerin oluşturulması';
$strCriteria = 'Kriter';
$strData = 'Veri';
@ -111,9 +111,9 @@ $strDeletedRows = 'Silinen satırlar:';
$strDeleteFailed = 'Silme sırasında hata oluştu!';
$strDeleteUserMessage = '%s kullanıcısını sildiniz.';
$strDescending = 'Azalan';
$strDisabled = 'Etkin değil';
$strDisabled = 'Etkin değil';
$strDisplay = 'Görüntüle';
$strDisplayFeat = 'Özellikleri Göster';
$strDisplayFeat = 'Özellikleri Göster';
$strDisplayOrder = 'Görünüm düzeni:';
$strDisplayPDF = 'PDF şemasını göster';
$strDoAQuery = '"Örnekle sorgu" yap (joker: "%")';
@ -132,7 +132,7 @@ $strEditPrivileges = 'Öncelikleri Düzenle';
$strEffective = 'Efektif';
$strEmpty = 'Boşalt';
$strEmptyResultSet = 'MySQL boş bir sonuc kümesi döndürdü ( sıfır satır).';
$strEnabled = 'Etkin';
$strEnabled = 'Etkin';
$strEnd = 'Son';
$strEnglishPrivileges = ' Not: mySQL öncelik adları İngilizce olarak belirtilmiştir ';
$strError = 'Hata';
@ -156,7 +156,7 @@ $strFullText = 'Tüm metinler';
$strFunction = 'Fonksiyon';
$strGenBy = 'Oluşturuldu->:';
$strGeneralRelationFeat = 'Genel ilişki özellikleri';
$strGeneralRelationFeat = 'Genel ilişki özellikleri';
$strGenTime = ıktı Tarihi';
$strGo = 'Git';
$strGrants = 'Haklar';
@ -164,7 +164,7 @@ $strGzip = '"gziplenmiş"';
$strHasBeenAltered = 'düzenlendi.';
$strHasBeenCreated = 'yaratıldı.';
$strHaveToShow = 'Görüntülemek için en az bir sütun seçmelisiniz';
$strHaveToShow = 'Görüntülemek için en az bir sütun seçmelisiniz';
$strHome = 'Ana Sayfa';
$strHomepageOfficial = 'phpMyAdmin Web Sayfası';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Yükleme Sayfası';
@ -206,13 +206,13 @@ $strLogout = 'Çıkış';
$strLogPassword = '&#350;ifre:';
$strLogUsername = 'Kullan&#305;c&#305; Ad&#305;:';
$strMissingBracket = 'Parantez eksik';
$strMissingBracket = 'Parantez eksik';
$strModifications = 'Değişiklikler kaydedildi';
$strModify = 'Değiştir';
$strModifyIndexTopic = 'Index düzenle';
$strMoveTable = 'Tabloyu (veritabanı<b>.</b>tablo) taşı:';
$strMoveTableOK = '%s tablosu %s üzerine taşındı.';
$strMySQLCharset = 'MySQL karakter seti';
$strMySQLCharset = 'MySQL karakter seti';
$strMySQLReloaded = 'MySQL yeniden yüklendi.';
$strMySQLSaid = 'MySQL çıktısı: ';
$strMySQLServerProcess = ' MySQL %pma_s1% %pma_s2% üzerinde %pma_s3% olarak çalışıyor';
@ -238,7 +238,7 @@ $strNoQuery = 'SQL sorgusu yok!';
$strNoRights = 'Burada bulunmak için yeterli haklara sahip değilsiniz!';
$strNoTablesFound = 'Veritabanı\'nda tablo bulunamadı.';
$strNotNumber = 'Bu bir sayı değil!';
$strNotOK = 'Tamam değil';
$strNotOK = 'Tamam değil';
$strNotSet = '<b>%s</b> tablosu bulunamadı veya %s içinde tanımlanmadı';
$strNotValidNumber = ' geçerli bir satır sayısı değil!';
$strNoUsersFound = 'Kullanıcı(lar) bulunamadı.';
@ -247,7 +247,7 @@ $strNumSearchResultsInTable = '%s eşleşim : %s tablosu içinde';
$strNumSearchResultsTotal = 'Toplam: %s eşleşim';
$strOftenQuotation = 'Sık kullanılan aktarma işaretleri.SEÇİME BAĞLI,sadece char ve varchar alanlarının "enclosed-by" karakteri ile çevreneleceği anlamına gelir..';
$strOK = 'Tamam';
$strOK = 'Tamam';
$strOperations = 'İşlemler';
$strOptimizeTable = 'Tabloyu optimize et';
$strOptionalControls = 'Özel karakterleri yazmak ve okumak için kontroller.Opsiyonel';
@ -361,7 +361,7 @@ $strStrucData = 'Yapı ve Veri';
$strStrucDrop = '\'Drop table\' ekle';
$strStrucExcelCSV = 'MS Excel verisi için CSV';
$strStrucOnly = 'Sadece yapı';
$strStructPropose = 'Tablo yapısını ayarla(mysql,tablo yapısını optimize eder)';
$strStructPropose = 'Tablo yapısını ayarla(mysql,tablo yapısını optimize eder)';
$strStructure = 'Yapı';
$strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz başarıyla çalıştırılmıştır';
@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -417,4 +417,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -416,4 +416,5 @@ $strNoValidateSQL = 'Skip Validate SQL'; //to translate
$strValidateSQL = 'Validate SQL'; //to translate
$strNoExplain = 'Skip Explain SQL'; //to translate
$strExplain = 'Explain SQL'; //to translate
$strCharsetOfFile = 'Character set of the file:'; //to translate
?>

View File

@ -274,6 +274,10 @@ if ($sql_file != 'none') {
if (get_magic_quotes_runtime() == 1) {
$sql_query = stripslashes($sql_query);
}
// Convert the file's charset if necessary
if ($cfg['AllowAnywhereRecoding'] && $allow_recoding && isset($charset_of_file) && $charset_of_file != $charset) {
$sql_query = iconv($charset_of_file, $charset, $sql_query);
}
}
}
else if (empty($id_bookmark) && get_magic_quotes_gpc() == 1) {

View File

@ -95,6 +95,26 @@ if ($is_upload) {
?>
<div style="margin-bottom: 5px">
<input type="file" name="sql_file" class="textfield" /><br />
<?php
if ($cfg['AllowAnywhereRecoding'] && $allow_recoding) {
$temp_charset = reset($cfg['AvailableCharsets']);
echo $strCharsetOfFile . "\n"
. ' <select name="charset_of_file" size="1">' . "\n"
. ' <option value="' . $temp_charset . '"';
if ($temp_charset == $charset) {
echo ' selected="selected"';
}
echo '>' . $temp_charset . '</option>' . "\n";
while ($temp_charset = next($cfg['AvailableCharsets'])) {
echo ' <option value="' . $temp_charset . '"';
if ($temp_charset == $charset) {
echo ' selected="selected"';
}
echo '>' . $temp_charset . '</option>' . "\n";
}
echo ' </select>';
}
?>
</div>
<?php
} // end if