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<4C>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<61>imalused t<><74>tamiseks lingitud tabelitega on deaktiveeritud. Et lugeda miks see nii on, vajutage %ssiia%s.';
$strAllTableSameWidth = 'kuva k<>ik tabelid sama laiusega?';
$strRelationNotWorking = 'Lisav<61>imalused t<><74>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 <20> afficher';
$strChangePassword = 'Modifier le mot de passe';
$strCharsetOfFile = 'Jeu de caract<63>res du fichier:';
$strCheckAll = 'Tout cocher';
$strCheckDbPriv = 'Afficher les privil<69>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<63>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<63>n de PDFs';
$strCreatePdfFeat = 'Creaci<63>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<65>sticas';
$strDisplayFeat = 'Mostrar as caracter<65>sticas';
$strDisplayOrder = 'Mostrar en orde:';
$strDisplayPDF = 'Mostrar o esquema PDF';
$strDoAQuery = 'Faga unha "procura por exemplo" (o comod<6F>n <20> "%")';
@@ -133,7 +133,7 @@ $strEditPrivileges = 'Modificar privilexios';
$strEffective = 'Efectivo';
$strEmpty = 'Borrar';
$strEmptyResultSet = 'MySQL retornou um conxunto vac<61>o (ex. cero rexistros).';
$strEnabled = 'Activado';
$strEnabled = 'Activado';
$strEnd = 'Fin';
$strEnglishPrivileges = ' Nota: os nomes de privilexios do MySQL est<73>n en ingl<67>s';
$strError = 'Erro';
@@ -157,7 +157,7 @@ $strFullText = 'Textos completos';
$strFunction = 'Funci<63>ns';
$strGenBy = 'Xerado por';
$strGeneralRelationFeat = 'Caracter<65>sticas xerais das relaci<63>ns';
$strGeneralRelationFeat = 'Caracter<65>sticas xerais das relaci<63>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<71> 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 <20> un n<>mero!';
$strNotValidNumber = ' non <20> 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<63>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 = '<27>ndern';
$strChangeDisplay = 'Anzuzeigende Spalte bestimmen';
$strChangePassword = 'Kennwort <20>ndern';
$strCharsetOfFile = 'Zeichencodierung der Datei:';
$strCheckAll = 'Alle ausw<73>hlen';
$strCheckDbPriv = 'Rechte einer Datenbank pr<70>fen';
$strCheckTable = '<27>berpr<70>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 = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>: \\r';
$strChange = '<27><><EFBFBD>';
$strChangeDisplay = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strChangeDisplay = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strChangePassword = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strCheckAll = '<27><><EFBFBD> <20><><EFBFBD>';
$strCheckDbPriv = '<27><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strCheckTable = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strChoosePage = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strChoosePage = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strColumn = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strColumnNames = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strComments = '<27><><EFBFBD><EFBFBD><EFBFBD>';
@@ -85,7 +85,7 @@ $strCreateIndex = '
$strCreateIndexTopic = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strCreateNewDatabase = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strCreateNewTable = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
$strCreatePage = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strCreatePage = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strCriteria = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strData = '<27><><EFBFBD><EFBFBD>';
@@ -104,7 +104,7 @@ $strDeletedRows = '
$strDescending = '<27><><EFBFBD><EFBFBD>';
$strDisplay = '<27><><EFBFBD>';
$strDisplayOrder = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD>:';
$strDisplayPDF = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PDF';
$strDisplayPDF = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PDF';
$strDoAQuery = '<27><><EFBFBD> "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" (<28><> <20><><EFBFBD><EFBFBD>: "%")';
$strDoYouReally = '<27><><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> ';
$strDocu = '<27><><EFBFBD><EFBFBD><EFBFBD>';
@@ -115,7 +115,7 @@ $strDumpingData = '
$strDynamic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strEdit = '<27><><EFBFBD><EFBFBD>';
$strEditPDFPages = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> PDF';
$strEditPDFPages = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> PDF';
$strEditPrivileges = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strEffective = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strEmpty = '<27><><EFBFBD><EFBFBD>';
@@ -123,8 +123,8 @@ $strEmptyResultSet = 'MySQL
$strEnd = '<27><><EFBFBD>';
$strEnglishPrivileges = ' <20><><EFBFBD><EFBFBD>: <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ';
$strError = '<27><><EFBFBD><EFBFBD>';
$strExport = '<27><><EFBFBD><EFBFBD>';
$strExportToXML = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> XML';
$strExport = '<27><><EFBFBD><EFBFBD>';
$strExportToXML = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> XML';
$strExtendedInserts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strExtra = '<27><><EFBFBD><EFBFBD>';
@@ -184,7 +184,7 @@ $strLineFeed = '
$strLines = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strLinesTerminatedBy = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>-<2D><><EFBFBD>';
$strLinkNotFound = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>';
$strLinksTo = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-';
$strLinksTo = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>-';
$strLocationTextfile = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strLogPassword = '<27><><EFBFBD><EFBFBD><EFBFBD>:';
$strLogUsername = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD>:';
@@ -215,7 +215,7 @@ $strNoIndex = '
$strNoIndexPartsDefined = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> !';
$strNoModification = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strNoPassword = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strNoPhp = '<27><><EFBFBD> <20><><EFBFBD> PHP';
$strNoPhp = '<27><><EFBFBD> <20><><EFBFBD> PHP';
$strNoPrivileges = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strNoQuery = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL !';
$strNoRights = '<27><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> !';
@@ -223,30 +223,30 @@ $strNoTablesFound = '
$strNoUsersFound = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
$strNone = 'NULL';
$strNotNumber = '<27><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> !';
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20>- %s';
$strNotSet = '<27><><EFBFBD><EFBFBD><EFBFBD> <b>%s</b> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20>- %s';
$strNotValidNumber = ' <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD> !';
$strNull = 'NULL';
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
$strOftenQuotation = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> char <20>- varchar <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$strOperations = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strOperations = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strOptimizeTable = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strOptionalControls = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
$strOptionally = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strOptions = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strOptions = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strOr = '<27><>';
$strOverhead = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strPHPVersion = '<27><><EFBFBD><EFBFBD> PHP';
$strPageNumber = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>:';
$strPageNumber = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>:';
$strPartialText = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strPassword = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strPasswordEmpty = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> !';
$strPasswordNotSame = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> !';
$strPdfDbSchema = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "%s" - <20><><EFBFBD><EFBFBD> %s';
$strPdfInvalidPageNum = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> PDF <20><> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$strPdfInvalidTblName = '<27><><EFBFBD><EFBFBD><EFBFBD> "%s" <20><> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$strPhp = '<27><><EFBFBD> <20><><EFBFBD> PHP';
$strPdfDbSchema = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "%s" - <20><><EFBFBD><EFBFBD> %s';
$strPdfInvalidPageNum = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> PDF <20><> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$strPdfInvalidTblName = '<27><><EFBFBD><EFBFBD><EFBFBD> "%s" <20><> <20><><EFBFBD><EFBFBD><EFBFBD>!';
$strPhp = '<27><><EFBFBD> <20><><EFBFBD> PHP';
$strPmaDocumentation = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> phpMyAdmin';
$strPmaUriError = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>- <tt>$cfg[\'PmaAbsoluteUri\']</tt> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>!';
$strPos1 = '<27><><EFBFBD><EFBFBD>';
@@ -268,7 +268,7 @@ $strQueryOnDb = '
$strReType = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strRecords = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strReferentialIntegrity = '<27><><EFBFBD><EFBFBD> <20><> <20>- Referential Integrity:';
$strRelationView = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strRelationView = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strReloadFailed = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> MySQL <20><><EFBFBD><EFBFBD><EFBFBD>.';
$strReloadMySQL = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> MySQL';
$strRememberReload = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>.';
@@ -295,9 +295,9 @@ $strRunQuery = '
$strRunSQLQuery = '<27><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
$strRunning = '<27><> <20><> %s';
$strSQL = 'SQL';
$strSQL = 'SQL';
$strSQLQuery = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL';
$strSQLResult = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL';
$strSQLResult = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL';
$strSave = '<27><><EFBFBD><EFBFBD>';
$strSearch = '<27><><EFBFBD>';
$strSearchFormTitle = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
@@ -313,14 +313,14 @@ $strSelectADb = '
$strSelectAll = '<27><><EFBFBD> <20><><EFBFBD>';
$strSelectFields = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>):';
$strSelectNumRows = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strSelectTables = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strSelectTables = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strSend = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strServerChoice = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strServerVersion = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strSetEnumVal = '<27><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD> enum <20><> set, <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>: \'a\',\'b\',\'c\'...<br /><3E><> <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD> \ <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD> \ <20><><EFBFBD><EFBFBD><EFBFBD>.';
$strShow = '<27><><EFBFBD><EFBFBD>';
$strShowAll = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD>';
$strShowColor = '<27><><EFBFBD> <20><><EFBFBD>';
$strShowColor = '<27><><EFBFBD> <20><><EFBFBD>';
$strShowCols = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
$strShowPHPInfo = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> PHP';
$strShowTables = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
@@ -337,8 +337,8 @@ $strStrucData = '
$strStrucDrop = '<27><><EFBFBD><EFBFBD> \'<27><><EFBFBD> <20><><EFBFBD><EFBFBD>\'';
$strStrucExcelCSV = 'CVS <20><><EFBFBD><EFBFBD><EFBFBD> Ms Excel';
$strStrucOnly = '<27><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strStructPropose = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strStructure = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strStructPropose = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
$strStructure = '<27><><EFBFBD><EFBFBD><EFBFBD>';
$strSubmit = '<27><><EFBFBD>';
$strSuccess = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>- SQL <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strSum = '<27><><EFBFBD><EFBFBD><EFBFBD>';
@@ -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 = '<27>j sor besz<73>r<EFBFBD>sa';
$strAll = 'Mind';
$strAllTableSameWidth = 'minden t<>bla ezzel a sz<73>less<73>ggel jelenjen meg?';
$strAllTableSameWidth = 'minden t<>bla ezzel a sz<73>less<73>ggel jelenjen meg?';
$strAlterOrderBy = 'T<>bla megv<67>ltoz<6F>sa rendezve e szerint:';
$strAnalyzeTable = 'T<>bla vizsg<73>lat';
$strAnd = '<27>s';
@@ -77,9 +77,9 @@ $strCheckTable = 'T
$strChoosePage = 'V<>lassz oldalt a szerkeszt<7A>shez';
$strColumn = 'Oszlop';
$strColumnNames = 'Oszlop nevek';
$strComments = 'Megjegyz<79>sek';
$strComments = 'Megjegyz<79>sek';
$strCompleteInserts = 'Mez&#0337neveket is hozz<7A>adja';
$strConfigFileError = 'A phpMyAdmin nem tudja olvasni a konfigur<75>ci<63>s f<>jlt!<br />Lehet, hogy a php szintaktikai hib<69>t tal<61>lt benne, vagy nem tal<61>lja a f<>jlt.<br />Haszn<7A>ld az als<6C> linket a konfigur<75>ci<63>s f<>jl helyre<72>ll<6C>t<EFBFBD>s<EFBFBD>hoz, olvasd el a kapott php hiba<62>zeneteket. T<>bbnyire egy id<69>z&#0337jel vagy egy pontosvessz&#0337 hi<68>nyzik valahol.<br />Ha <20>res oldalt kapsz, minden rendben.';
$strConfigFileError = 'A phpMyAdmin nem tudja olvasni a konfigur<75>ci<63>s f<>jlt!<br />Lehet, hogy a php szintaktikai hib<69>t tal<61>lt benne, vagy nem tal<61>lja a f<>jlt.<br />Haszn<7A>ld az als<6C> linket a konfigur<75>ci<63>s f<>jl helyre<72>ll<6C>t<EFBFBD>s<EFBFBD>hoz, olvasd el a kapott php hiba<62>zeneteket. T<>bbnyire egy id<69>z&#0337jel vagy egy pontosvessz&#0337 hi<68>nyzik valahol.<br />Ha <20>res oldalt kapsz, minden rendben.';
$strConfigureTableCoord = '<27>ll<6C>tsd be a(z) $s t<>bla koordin<69>t<EFBFBD>it';
$strConfirm = 'Biztos, hogy v<>gre akarod hajtani?';
$strCookiesRequired = 'A Cookie-kat most enged<65>lyeznek kell.';
@@ -198,13 +198,13 @@ $strLogout = 'Kil
$strLogPassword = 'Jelsz<73>:';
$strLogUsername = 'Felhaszn<7A>l<EFBFBD>i n<>v:';
$strMissingBracket = 'Hi<48>nyz<79> sz<73>gletes z<>r<EFBFBD>jel';
$strMissingBracket = 'Hi<48>nyz<79> sz<73>gletes z<>r<EFBFBD>jel';
$strModifications = 'A v<>ltoz<6F>sokat elmentettem';
$strModify = 'V<>ltoz<6F>s';
$strModifyIndexTopic = 'Index v<>ltoz<6F>sa';
$strMoveTable = 'T<>bla <20>thelyez<65>se ide (adatb<74>zis<b>.</b>t<>bla):';
$strMoveTableOK = '%s t<>bl<62>t <20>thelyeztem ide: %s.';
$strMySQLCharset = 'MySQL karakterk<72>szlet';
$strMySQLCharset = 'MySQL karakterk<72>szlet';
$strMySQLReloaded = 'MySQL <20>jrat<61>ltve.';
$strMySQLSaid = 'MySQL jelzi: ';
$strMySQLServerProcess = 'MySQL %pma_s1%, szerver: %pma_s2%, felhaszn<7A>l<EFBFBD>: %pma_s3%';
@@ -344,7 +344,7 @@ $strSpaceUsage = 'Helyfoglal
$strSplitWordsWithSpace = 'A szavak fel vannak osztva sz<73>k<EFBFBD>z karakter szerint (" ").';
$strSQL = 'SQL';
$strSQLQuery = 'SQL-k<>r<EFBFBD>s';
$strSQLResult = 'SQL eredm<64>ny';
$strSQLResult = 'SQL eredm<64>ny';
$strStatement = 'Adatok';
$strStrucCSV = 'CSV adat';
$strStrucData = 'Szerkezet <20>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<65>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<6E>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<69>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<6E>rios das Colunas';
$strColumn = 'Campo';
$strColumnNames = 'Nome dos Campos';
$strComments = 'Coment<6E>rios';
$strComments = 'Coment<6E>rios';
$strCompleteInserts = 'Instruc<75><63>es de inser<65><72>o completas';
$strConfigFileError = 'O phpMyAdmin n<>o foi capaz de ler o ficheiro de configura<72><61>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<72><61>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<73> tudo correcto.';
$strConfigureTableCoord = 'Configure as cordenadas para a tabela %s';
$strConfigureTableCoord = 'Configure as cordenadas para a tabela %s';
$strConfirm = 'Confirma a sua op<6F><70>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 <20>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<69><61>o de PDFs';
$strCriteria = 'Crit<69>rios';
@@ -117,7 +117,7 @@ $strDisabled = 'Desactidado';
$strDisplay = 'Mostra';
$strDisplayFeat = 'Mostrar Caracter<65>sticas';
$strDisplayOrder = 'Ordem de visualiza<7A><61>o:';
$strDisplayPDF = 'Mostrar o esquema de PDF';
$strDisplayPDF = 'Mostrar o esquema de PDF';
$strDoAQuery = 'Fa<46>a uma "pesquisa por formul<75>rio" (caractere universal: "%")';
$strDoYouReally = 'Confirma : ';
$strDocu = 'Documenta<74><61>o';
@@ -129,7 +129,7 @@ $strDumpingData = 'Extraindo dados da tabela';
$strDynamic = 'din<69>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<75><6E>es';
$strGenBy = 'Gerado por';
$strGenBy = 'Gerado por';
$strGenTime = 'Data de Cria<69><61>o';
$strGeneralRelationFeat = 'Caracter<65>sticas gerais de Rela<6C><61>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<49>cio';
$strHomepageOfficial = 'P<>gina Oficial do phpMyAdmin';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin - P<>gina de Download';
@@ -200,7 +200,7 @@ $strLimitNumRows = 'N
$strLineFeed = 'Mudan<61>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<7A><61>o do arquivo de texto';
$strLogPassword = 'Senha&nbsp;:';
@@ -214,7 +214,7 @@ $strModify = 'Modifica';
$strModifyIndexTopic = 'Modificar um <20>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<50>ximo';
$strNo = 'N<>o';
$strNoDatabases = 'Sem bases de dados';
$strNoDescription = 'sem Descri<72><69>o';
$strNoDescription = 'sem Descri<72><69>o';
$strNoDropDatabases = 'Os comandos "DROP DATABASE" est<73>o inibidos.';
$strNoFrames = 'O phpMyAdmin torna-se mais agrad<61>vel se usado num browser que suporte <b>frames</b>.';
$strNoIndex = 'Nenhum ind<6E>ce definido!';
$strNoIndexPartsDefined = 'Nenhuma parte do <20>ndice definida!';
$strNoModification = 'Sem altera<72><61>es';
$strNoPassword = 'Sem Senha';
$strNoPhp = 'sem c<>digo PHP';
$strNoPhp = 'sem c<>digo PHP';
$strNoPrivileges = 'Sem Privil<69>gios';
$strNoQuery = 'Nenhum comando SQL encontrado!';
$strNoRights = 'N<>o tem permiss<73>es suficientes para aceder aqui, neste momento!';
@@ -242,7 +242,7 @@ $strNoUsersFound = 'Nenhum utilizador encontrado.';
$strNone = 'Nenhum';
$strNotNumber = 'Isto n<>o <20> um n<>mero!';
$strNotOK = 'n<>o est<73> 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 <20> 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<72>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<74><61>o do phpMyAdmin';
$strPmaUriError = 'A directiva <tt>$cfg[\'PmaAbsoluteUri\']</tt> TEM que ser definida no ficheiro de configura<72><61>o!';
$strPos1 = 'Inicio';
@@ -291,7 +291,7 @@ $strReType = 'Confirma';
$strRecords = 'Registos';
$strReferentialIntegrity = 'Verificar Integridade referencial:';
$strRelationNotWorking = 'As Caracter<65>sticas adicionais para trabalhar com liga<67><61>es entre Tabelas foram desactivadas. Para saber porqu<71> carregue %saqui%s.';
$strRelationView = 'Vista de Rela<6C><61>o';
$strRelationView = 'Vista de Rela<6C><61>o';
$strReloadFailed = 'Reinicia<69><61>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 <20> muito pequeno para encaixar o esquema numa p<>gina';
$strScaleFactorSmall = 'O factor escala <20> 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<72>o do servidor';
$strSetEnumVal = 'Se o tipo de campo <20> "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<61>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<6D><61>o do PHP';
$strShowTableDimension = 'Mostrar dimens<6E>o das tabelas';
$strShowTableDimension = 'Mostrar dimens<6E>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 = '<27>phpMyAdmin no puede leer el fichero de configuraci<63>n!<br />Esto puede suceder si php encuentra un error sint<6E>ctico en <20>l o bien php no puede encontrar el fichero.<br />Intente acceder al fichero de configuraci<63>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<6C>n sitio.<br />Si recibe una p<>gina en blanco, todo est<73> correcto.';
$strConfigFileError = '<27>phpMyAdmin no puede leer el fichero de configuraci<63>n!<br />Esto puede suceder si php encuentra un error sint<6E>ctico en <20>l o bien php no puede encontrar el fichero.<br />Intente acceder al fichero de configuraci<63>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<6C>n sitio.<br />Si recibe una p<>gina en blanco, todo est<73> correcto.';
$strConfigureTableCoord = 'Configure las coordenadas para la tabla %s';
$strConfirm = '<27>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 = '<27>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<71>, d<> clic %saqu<71>%s.'; //Features = <20>componentes?
$strAllTableSameWidth = '<27>Mostrar todas las tablas que tienen el mismo ancho?';
$strPdfNoTables = 'No existen tablas';
$strPdfNoTables = 'No existen tablas';
$strDisplayFeat = 'Mostrar los componentes'; //Features = <20>componentes?
$strCreatePdfFeat = 'Creaci<63>n de los PDF';
$strColComFeat = 'Mostrando los comentarios de la columna';
$strCreatePdfFeat = 'Creaci<63>n de los PDF';
$strColComFeat = 'Mostrando los comentarios de la columna';
$strDisabled = 'Deshabilitado';
$strEnabled = 'Habilitado';
$strOK = 'OK';
$strOK = 'OK';
$strNotOK = 'no recibi<62> el OK';
$strGeneralRelationFeat = 'Componentes de relaci<63>n general'; //Features = <20>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 = '<27><EFBFBD>Ѻ';
$strAfterInsertNewInsert = '<27><>á<EFBFBD><C3A1><EFBFBD><EFBFBD><EFBFBD>¹<EFBFBD><C2B9><EFBFBD><EFBFBD>';
$strAll = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
$strAllTableSameWidth = '<27><><EFBFBD><EFBFBD>ʴ<EFBFBD><CAB4><EFBFBD><EFBFBD>ҧ<EFBFBD>ء<EFBFBD><D8A1><EFBFBD>ҧ<EFBFBD><D2A7><EFBFBD>¤<EFBFBD><C2A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҧ<EFBFBD><D2A7><EFBFBD>ҡѹ<D2A1><D1B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?';
$strAllTableSameWidth = '<27><><EFBFBD><EFBFBD>ʴ<EFBFBD><CAB4><EFBFBD><EFBFBD>ҧ<EFBFBD>ء<EFBFBD><D8A1><EFBFBD>ҧ<EFBFBD><D2A7><EFBFBD>¤<EFBFBD><C2A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҧ<EFBFBD><D2A7><EFBFBD>ҡѹ<D2A1><D1B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?';
$strAlterOrderBy = '<27><><EFBFBD>§<EFBFBD><C2A7><EFBFBD><EFBFBD><E3B9B5>ҧ<EFBFBD><D2A7><EFBFBD>';
$strAnalyzeTable = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҧ';
$strAnd = '<27><><EFBFBD>';
@@ -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<6E>s<EFBFBD>n<EFBFBD> y<>kleyemiyor,<br />l<>tfen PHP ayarlar<61>n<EFBFBD> kontrol ediniz.';
$strCantLoadRecodeIconv = 'Karakter seti d<>n<EFBFBD><6E><EFBFBD>m<EFBFBD> i<>in gerekli olan Iconv veya recode uzant<6E>lar<61>n<EFBFBD> y<>kleyenemiyor. Php\'nin bu uzant<6E>lara izin vermesini sa<73>lay<61>n veya phpMyAdmin i<>inde karakter d<>n<EFBFBD><6E><EFBFBD>m<EFBFBD>n<EFBFBD> devre d<><64><EFBFBD> b<>rak<61>n<EFBFBD>z...';
$strCantLoadRecodeIconv = 'Karakter seti d<>n<EFBFBD><6E><EFBFBD>m<EFBFBD> i<>in gerekli olan Iconv veya recode uzant<6E>lar<61>n<EFBFBD> y<>kleyenemiyor. Php\'nin bu uzant<6E>lara izin vermesini sa<73>lay<61>n veya phpMyAdmin i<>inde karakter d<>n<EFBFBD><6E><EFBFBD>m<EFBFBD>n<EFBFBD> devre d<><64><EFBFBD> b<>rak<61>n<EFBFBD>z...';
$strCantRenameIdxToPrimary = 'Index\'i PRIMARY olarak adland&#305;r&#305;mazs&#305;n&#305;z!';
$strCantUseRecodeIconv = 'Uzant<6E> raporlar<61> y<>klenmi<6D>ken , ne iconv ne libinconv ne de recode_string fonksiyonu kullan<61>lamaz. Php ayarlar<61>n<EFBFBD>z<EFBFBD> kontrol ediniz.';
$strCardinality = 'En <20>nemli';
@@ -76,12 +76,12 @@ $strCheckAll = 'T
$strCheckDbPriv = 'Veritaban<61> <20>nceliklerini kontrol et';
$strCheckTable = 'Tabloyu kontrol et';
$strChoosePage = 'L<>tfen d<>zenlemek istedi<64>iniz sayfay<61> se<73>in';
$strColComFeat = 'S<>tun yorumlar<61> g<>steriliyor';
$strColComFeat = 'S<>tun yorumlar<61> g<>steriliyor';
$strColumn = 'S<>tun';
$strColumnNames = 'S<>tun adlar<61>';
$strComments = 'Yorumlar';
$strComments = 'Yorumlar';
$strCompleteInserts = 'Tamamlanm<6E><6D> eklemeler';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyan<61>z<EFBFBD> okuyamad<61>....<br /> Bu php yorumlama hatas<61> buldu<64>u zaman veya dosyay<61> bulamad<61><64><EFBFBD> zaman meydana gelebilir..<br /> L<>tfen a<>a<EFBFBD><61>daki linki kullanarak dosyay<61> direkt olarak <20>a<EFBFBD><61>r<EFBFBD>n ve ald<6C><64><EFBFBD>n<EFBFBD>z php hata mesajlar<61>n<EFBFBD> okuyunuz.<2E>o<EFBFBD>u durumda herhangi bir yerde t<>rnak veya noktal<61> virg<72>l eksiktir<br /> Bo<42> bir sayfayla kar<61><72>la<6C><61>rsan<61>z ,her<65>ey yolunda demektir.';
$strConfigFileError ='phpMyAdmin konfigurasyon dosyan<61>z<EFBFBD> okuyamad<61>....<br /> Bu php yorumlama hatas<61> buldu<64>u zaman veya dosyay<61> bulamad<61><64><EFBFBD> zaman meydana gelebilir..<br /> L<>tfen a<>a<EFBFBD><61>daki linki kullanarak dosyay<61> direkt olarak <20>a<EFBFBD><61>r<EFBFBD>n ve ald<6C><64><EFBFBD>n<EFBFBD>z php hata mesajlar<61>n<EFBFBD> okuyunuz.<2E>o<EFBFBD>u durumda herhangi bir yerde t<>rnak veya noktal<61> virg<72>l eksiktir<br /> Bo<42> bir sayfayla kar<61><72>la<6C><61>rsan<61>z ,her<65>ey yolunda demektir.';
$strConfigureTableCoord = ' L<>tfen %s tablosu i<>in koordinatlar<61> yap<61>land<6E>r<EFBFBD>n<EFBFBD>z';
$strConfirm = 'A<>a<EFBFBD><61>daki komutu uygulamak istedi<64>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<61> olu<6C>tur';
$strCreateNewTable = '%s veritaban<61> <20>zerinde yeni bir tablo olu<6C>tur';
$strCreatePage = 'Yeni sayfa olu<6C>tur';
$strCreatePdfFeat = 'PDF\'lerin olu<6C>turulmas<61>';
$strCreatePdfFeat = 'PDF\'lerin olu<6C>turulmas<61>';
$strCriteria = 'Kriter';
$strData = 'Veri';
@@ -110,9 +110,9 @@ $strDeletedRows = 'Silinen sat
$strDeleteFailed = 'Silme s<>ras<61>nda hata olu<6C>tu!';
$strDeleteUserMessage = '%s kullan<61>c<EFBFBD>s<EFBFBD>n<EFBFBD> sildiniz.';
$strDescending = 'Azalan';
$strDisabled = 'Etkin de<64>il';
$strDisabled = 'Etkin de<64>il';
$strDisplay = 'G<>r<EFBFBD>nt<6E>le';
$strDisplayFeat = '<27>zellikleri G<>ster';
$strDisplayFeat = '<27>zellikleri G<>ster';
$strDisplayOrder = 'G<>r<EFBFBD>n<EFBFBD>m d<>zeni:';
$strDisplayPDF = 'PDF <20>emas<61>n<EFBFBD> g<>ster';
$strDoAQuery = '"<22>rnekle sorgu" yap (joker: "%")';
@@ -131,7 +131,7 @@ $strEditPrivileges = '
$strEffective = 'Efektif';
$strEmpty = 'Bo<42>alt';
$strEmptyResultSet = 'MySQL bo<62> bir sonuc k<>mesi d<>nd<6E>rd<72> ( s<>f<EFBFBD>r sat<61>r).';
$strEnabled = 'Etkin';
$strEnabled = 'Etkin';
$strEnd = 'Son';
$strEnglishPrivileges = ' Not: mySQL <20>ncelik adlar<61> <20>ngilizce olarak belirtilmi<6D>tir ';
$strError = 'Hata';
@@ -155,7 +155,7 @@ $strFullText = 'T
$strFunction = 'Fonksiyon';
$strGenBy = 'Olu<6C>turuldu->:';
$strGeneralRelationFeat = 'Genel ili<6C>ki <20>zellikleri';
$strGeneralRelationFeat = 'Genel ili<6C>ki <20>zellikleri';
$strGenTime = '<27><>kt<6B> Tarihi';
$strGo = 'Git';
$strGrants = 'Haklar';
@@ -163,7 +163,7 @@ $strGzip = '"gziplenmi
$strHasBeenAltered = 'd<>zenlendi.';
$strHasBeenCreated = 'yarat<61>ld<6C>.';
$strHaveToShow = 'G<>r<EFBFBD>nt<6E>lemek i<>in en az bir s<>tun se<73>melisiniz';
$strHaveToShow = 'G<>r<EFBFBD>nt<6E>lemek i<>in en az bir s<>tun se<73>melisiniz';
$strHome = 'Ana Sayfa';
$strHomepageOfficial = 'phpMyAdmin Web Sayfas<61>';
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Y<>kleme Sayfas<61>';
@@ -205,13 +205,13 @@ $strLogout = '
$strLogPassword = '&#350;ifre:';
$strLogUsername = 'Kullan&#305;c&#305; Ad&#305;:';
$strMissingBracket = 'Parantez eksik';
$strMissingBracket = 'Parantez eksik';
$strModifications = 'De<44>i<EFBFBD>iklikler kaydedildi';
$strModify = 'De<44>i<EFBFBD>tir';
$strModifyIndexTopic = 'Index d<>zenle';
$strMoveTable = 'Tabloyu (veritaban<61><b>.</b>tablo) ta<74><61>:';
$strMoveTableOK = '%s tablosu %s <20>zerine ta<74><61>nd<6E>.';
$strMySQLCharset = 'MySQL karakter seti';
$strMySQLCharset = 'MySQL karakter seti';
$strMySQLReloaded = 'MySQL yeniden y<>klendi.';
$strMySQLSaid = 'MySQL <20><>kt<6B>s<EFBFBD>: ';
$strMySQLServerProcess = ' MySQL %pma_s1% %pma_s2% <20>zerinde %pma_s3% olarak <20>al<61><6C><EFBFBD>yor';
@@ -237,7 +237,7 @@ $strNoQuery = 'SQL sorgusu yok!';
$strNoRights = 'Burada bulunmak i<>in yeterli haklara sahip de<64>ilsiniz!';
$strNoTablesFound = 'Veritaban<61>\'nda tablo bulunamad<61>.';
$strNotNumber = 'Bu bir say<61> de<64>il!';
$strNotOK = 'Tamam de<64>il';
$strNotOK = 'Tamam de<64>il';
$strNotSet = '<b>%s</b> tablosu bulunamad<61> veya %s i<>inde tan<61>mlanmad<61>';
$strNotValidNumber = ' ge<67>erli bir sat<61>r say<61>s<EFBFBD> de<64>il!';
$strNoUsersFound = 'Kullan<61>c<EFBFBD>(lar) bulunamad<61>.';
@@ -246,7 +246,7 @@ $strNumSearchResultsInTable = '%s e
$strNumSearchResultsTotal = 'Toplam: %s e<>le<6C>im';
$strOftenQuotation = 'S<>k kullan<61>lan aktarma i<>aretleri.SE<53><45>ME BA<42>LI,sadece char ve varchar alanlar<61>n<EFBFBD>n "enclosed-by" karakteri ile <20>evrenelece<63>i anlam<61>na gelir..';
$strOK = 'Tamam';
$strOK = 'Tamam';
$strOperations = '<27><>lemler';
$strOptimizeTable = 'Tabloyu optimize et';
$strOptionalControls = '<27>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<61>';
$strStructPropose = 'Tablo yap<61>s<EFBFBD>n<EFBFBD> ayarla(mysql,tablo yap<61>s<EFBFBD>n<EFBFBD> optimize eder)';
$strStructPropose = 'Tablo yap<61>s<EFBFBD>n<EFBFBD> ayarla(mysql,tablo yap<61>s<EFBFBD>n<EFBFBD> optimize eder)';
$strStructure = 'Yap<61>';
$strSubmit = 'Onayla';
$strSuccess = 'SQL sorgunuz ba<62>ar<61>yla <20>al<61><6C>t<EFBFBD>r<EFBFBD>lm<6C><6D>t<EFBFBD>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