Updated translations so they are xhtml1.0 valid and fits PEAR codding standards
This commit is contained in:
parent
34c9048676
commit
7895ccd437
@ -6,6 +6,9 @@ $Id$
|
||||
$Source$
|
||||
|
||||
2001-08-03 Loïc Chapeaux <lolo@phpheaven.net>
|
||||
* lang/*: updated so they are xhtml1.0 valid and fits PEAR codding
|
||||
standards.
|
||||
* todo; functions.js; license; left.js: executed remove_control_m.sh.
|
||||
* config.inc.php3: removed the error_reporting statement (usefull for
|
||||
debugging but not so nice for a release) and fixed some coding
|
||||
inconcistencies.
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Acesso Negado";
|
||||
$strAction = "Ações";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Adiciona novo campo";
|
||||
$strAddPriv = "Adiciona um novo Privilégio";
|
||||
$strAddPrivMessage = "Privilégio adicionado.";
|
||||
$strAddSearchConditions = "Condição de Pesquisa (Complemento da clausula \"onde\"):";
|
||||
$strAddUser = "Adicionar um novo usuário";
|
||||
$strAddUserMessage = "Usuário adcionado.";
|
||||
$strAfter = "Depois";
|
||||
$strAll = "Todos";
|
||||
$strAlterOrderBy = "Alterar tabela ordenada por";
|
||||
$strAnalyzeTable = "Analizar tabela";
|
||||
$strAnd = "E";
|
||||
$strAnIndex = "Um indice foi adicionado na ";
|
||||
$strAny = "Qualquer";
|
||||
$strAnyColumn = "Qualquer coluna";
|
||||
$strAnyDatabase = "Qualquer banco de dados";
|
||||
$strAnyHost = "Qualquer servidor";
|
||||
$strAnyTable = "Qualquer tabela";
|
||||
$strAnyUser = "Qualquer usuário";
|
||||
$strAPrimaryKey = "Chave primária acrescentada na ";
|
||||
$strAscending = "Ascendente";
|
||||
$strAtBeginningOfTable = "No começo da tabela";
|
||||
$strAtEndOfTable = "Ao fim da tabela";
|
||||
$strAttr = "Atributos";
|
||||
|
||||
$strBack = "Voltar";
|
||||
$strBinary=" Binário ";
|
||||
$strBinaryDoNotEdit=" Binário - não edite ";
|
||||
$strBookmarkLabel = "Nome";
|
||||
$strBookmarkQuery = "Procura de SQL salva";
|
||||
$strBookmarkThis = "Salvar essa procura de SQL";
|
||||
$strBookmarkView = "Apenas visualiza";
|
||||
$strBrowse = "Visualiza";
|
||||
$strAccessDenied = 'Acesso Negado';
|
||||
$strAction = 'Ações';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Adiciona novo campo';
|
||||
$strAddPriv = 'Adiciona um novo Privilégio';
|
||||
$strAddPrivMessage = 'Privilégio adicionado.';
|
||||
$strAddSearchConditions = 'Condição de Pesquisa (Complemento da clausula "onde"):';
|
||||
$strAddUser = 'Adicionar um novo usuário';
|
||||
$strAddUserMessage = 'Usuário adcionado.';
|
||||
$strAfter = 'Depois';
|
||||
$strAll = 'Todos';
|
||||
$strAlterOrderBy = 'Alterar tabela ordenada por';
|
||||
$strAnalyzeTable = 'Analizar tabela';
|
||||
$strAnd = 'E';
|
||||
$strAnIndex = 'Um indice foi adicionado na ';
|
||||
$strAny = 'Qualquer';
|
||||
$strAnyColumn = 'Qualquer coluna';
|
||||
$strAnyDatabase = 'Qualquer banco de dados';
|
||||
$strAnyHost = 'Qualquer servidor';
|
||||
$strAnyTable = 'Qualquer tabela';
|
||||
$strAnyUser = 'Qualquer usuário';
|
||||
$strAPrimaryKey = 'Chave primária acrescentada na ';
|
||||
$strAscending = 'Ascendente';
|
||||
$strAtBeginningOfTable = 'No começo da tabela';
|
||||
$strAtEndOfTable = 'Ao fim da tabela';
|
||||
$strAttr = 'Atributos';
|
||||
|
||||
$strCantLoadMySQL = "não foi possível carregar extensão do MySQL,<br>por favor cheque a configuração do PHP.";
|
||||
$strCarriage = "Caracter de retorno: \\r";
|
||||
$strChange = "Muda";
|
||||
$strCheckAll = "Check All";
|
||||
$strCheckDbPriv = "Verifica Privilégios do Banco de Dados";
|
||||
$strCheckTable = "Verifica tabela";
|
||||
$strColumn = "Coluna";
|
||||
$strColumnEmpty = "Os nomes das colunas estão vazios!";
|
||||
$strColumnNames = "Nome da Colunas";
|
||||
$strCompleteInserts = "Inserções Completas";
|
||||
$strConfirm = "Você tem certeza?";
|
||||
$strCopyTable = "Copia tabela para:";
|
||||
$strCopyTableOK = "Tabela %s copiada para %s.";
|
||||
$strCreate = "Cria";
|
||||
$strCreateNewDatabase = "Cria novo banco de dados";
|
||||
$strCreateNewTable = "Cria nova tabela no banco de dados ";
|
||||
$strCriteria = "Critério";
|
||||
$strBack = 'Voltar';
|
||||
$strBinary = ' Binário ';
|
||||
$strBinaryDoNotEdit = ' Binário - não edite ';
|
||||
$strBookmarkLabel = 'Nome';
|
||||
$strBookmarkQuery = 'Procura de SQL salva';
|
||||
$strBookmarkThis = 'Salvar essa procura de SQL';
|
||||
$strBookmarkView = 'Apenas visualiza';
|
||||
$strBrowse = 'Visualiza';
|
||||
|
||||
$strData = "Dados";
|
||||
$strDatabase = "Banco de Dados ";
|
||||
$strDatabases = "Banco de Dados";
|
||||
$strDataOnly = "Dados apenas";
|
||||
$strDbEmpty = "O nome do banco de dados está vazio!";
|
||||
$strDefault = "Padrão";
|
||||
$strDelete = "Remove";
|
||||
$strDeleted = "Registro eliminado";
|
||||
$strDeleteFailed = "Não foi possível apagar!";
|
||||
$strDeletePassword = "Apagar Senha";
|
||||
$strDeleteUserMessage = "Você deletou o usuário";
|
||||
$strDelPassMessage = "Você deletou a senha de";
|
||||
$strDescending = "Descendente";
|
||||
$strDisableMagicQuotes = "<b>Atenção:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Tela";
|
||||
$strDoAQuery = "Faça uma \"procura por exemplo\" (coringa: \"%\")";
|
||||
$strDocu = "Documentação";
|
||||
$strDoYouReally = "Confirma : ";
|
||||
$strDrop = "Elimina";
|
||||
$strDropDB = "Elimina o banco de dados: ";
|
||||
$strDumpingData = "Extraindo dados da tabela";
|
||||
$strDynamic = "dinâmico";
|
||||
$strCantLoadMySQL = 'não foi possível carregar extensão do MySQL,<br />por favor cheque a configuração do PHP.';
|
||||
$strCarriage = 'Caracter de retorno: \\r';
|
||||
$strChange = 'Muda';
|
||||
$strCheckAll = 'Check All';
|
||||
$strCheckDbPriv = 'Verifica Privilégios do Banco de Dados';
|
||||
$strCheckTable = 'Verifica tabela';
|
||||
$strColumn = 'Coluna';
|
||||
$strColumnEmpty = 'Os nomes das colunas estão vazios!';
|
||||
$strColumnNames = 'Nome da Colunas';
|
||||
$strCompleteInserts = 'Inserções Completas';
|
||||
$strConfirm = 'Você tem certeza?';
|
||||
$strCopyTable = 'Copia tabela para:';
|
||||
$strCopyTableOK = 'Tabela %s copiada para %s.';
|
||||
$strCreate = 'Cria';
|
||||
$strCreateNewDatabase = 'Cria novo banco de dados';
|
||||
$strCreateNewTable = 'Cria nova tabela no banco de dados ';
|
||||
$strCriteria = 'Critério';
|
||||
|
||||
$strEdit = "Edita";
|
||||
$strEditPrivileges = "Edita Privilégios";
|
||||
$strEffective = "Efetivo";
|
||||
$strEmpty = "Limpa";
|
||||
$strEmptyResultSet = "MySQL retornou um conjunto vazio (ex. zero registros).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "delimitados por";
|
||||
$strEnd = "Fim";
|
||||
$strEnglishPrivileges=" Nota: nomes de privilégios do MySQL são expressos em inglês ";
|
||||
$strError = "Erro";
|
||||
$strEscapedBy = "contornados por";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Dados';
|
||||
$strDatabase = 'Banco de Dados ';
|
||||
$strDatabases = 'Banco de Dados';
|
||||
$strDataOnly = 'Dados apenas';
|
||||
$strDbEmpty = 'O nome do banco de dados está vazio!';
|
||||
$strDefault = 'Padrão';
|
||||
$strDelete = 'Remove';
|
||||
$strDeleted = 'Registro eliminado';
|
||||
$strDeleteFailed = 'Não foi possível apagar!';
|
||||
$strDeletePassword = 'Apagar Senha';
|
||||
$strDeleteUserMessage = 'Você deletou o usuário';
|
||||
$strDelPassMessage = 'Você deletou a senha de';
|
||||
$strDescending = 'Descendente';
|
||||
$strDisableMagicQuotes = '<b>Atenção:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Tela';
|
||||
$strDoAQuery = 'Faça uma "procura por exemplo" (coringa: "%")';
|
||||
$strDocu = 'Documentação';
|
||||
$strDoYouReally = 'Confirma : ';
|
||||
$strDrop = 'Elimina';
|
||||
$strDropDB = 'Elimina o banco de dados: ';
|
||||
$strDumpingData = 'Extraindo dados da tabela';
|
||||
$strDynamic = 'dinâmico';
|
||||
|
||||
$strField = "Campo";
|
||||
$strFields = "Campos";
|
||||
$strFixed = "fixo";
|
||||
$strFormat = "Formato";
|
||||
$strFunction = "Funçoes";
|
||||
$strEdit = 'Edita';
|
||||
$strEditPrivileges = 'Edita Privilégios';
|
||||
$strEffective = 'Efetivo';
|
||||
$strEmpty = 'Limpa';
|
||||
$strEmptyResultSet = 'MySQL retornou um conjunto vazio (ex. zero registros).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'delimitados por';
|
||||
$strEnd = 'Fim';
|
||||
$strEnglishPrivileges = ' Nota: nomes de privilégios do MySQL são expressos em inglês ';
|
||||
$strError = 'Erro';
|
||||
$strEscapedBy = 'contornados por';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Tempo de Generação";
|
||||
$strGo = "Executa";
|
||||
$strGrants = "Conceder";
|
||||
$strField = 'Campo';
|
||||
$strFields = 'Campos';
|
||||
$strFixed = 'fixo';
|
||||
$strFormat = 'Formato';
|
||||
$strFunction = 'Funçoes';
|
||||
|
||||
$strHasBeenAltered = "foi alterado.";
|
||||
$strHasBeenCreated = "foi criado.";
|
||||
$strHasBeenDropped = "foi eliminado.";
|
||||
$strHasBeenEmptied = "foi esvaziado.";
|
||||
$strHome = "Base"; // Alguem tem alguma palavra melhor para 'Home'?
|
||||
$strHomepageOfficial = "Página Oficial do phpMyAdmin";
|
||||
$strHomepageSourceforge = "Nova Página do phpMyAdmin";
|
||||
$strHost = "Servidor";
|
||||
$strHostEmpty = "O nome do servidor está vazio!";
|
||||
$strGenTime = 'Tempo de Generação';
|
||||
$strGo = 'Executa';
|
||||
$strGrants = 'Conceder';
|
||||
|
||||
$strIfYouWish = "Para carregar apenas algumas colunas da tabela, faça uma lista separada por vírgula.";
|
||||
$strIndex = "Índice";
|
||||
$strIndexes = "Índices";
|
||||
$strInsert = "Insere";
|
||||
$strInsertAsNewRow = "Insere uma nova coluna";
|
||||
$strInsertIntoTable = "Insere na tabela";
|
||||
$strInsertNewRow = "Insere novo registro";
|
||||
$strInsertTextfiles = "Insere arquivo texto na tabela";
|
||||
$strInUse = "em uso";
|
||||
$strHasBeenAltered = 'foi alterado.';
|
||||
$strHasBeenCreated = 'foi criado.';
|
||||
$strHasBeenDropped = 'foi eliminado.';
|
||||
$strHasBeenEmptied = 'foi esvaziado.';
|
||||
$strHome = 'Base'; // Alguem tem alguma palavra melhor para 'Home'?
|
||||
$strHomepageOfficial = 'Página Oficial do phpMyAdmin';
|
||||
$strHomepageSourceforge = 'Nova Página do phpMyAdmin';
|
||||
$strHost = 'Servidor';
|
||||
$strHostEmpty = 'O nome do servidor está vazio!';
|
||||
|
||||
$strKeyname = "Nome chave";
|
||||
$strKill = "Matar";
|
||||
$strIfYouWish = 'Para carregar apenas algumas colunas da tabela, faça uma lista separada por vírgula.';
|
||||
$strIndex = 'Índice';
|
||||
$strIndexes = 'Índices';
|
||||
$strInsert = 'Insere';
|
||||
$strInsertAsNewRow = 'Insere uma nova coluna';
|
||||
$strInsertIntoTable = 'Insere na tabela';
|
||||
$strInsertNewRow = 'Insere novo registro';
|
||||
$strInsertTextfiles = 'Insere arquivo texto na tabela';
|
||||
$strInUse = 'em uso';
|
||||
|
||||
$strLength = "Tamanho";
|
||||
$strLengthSet = "Tamanho/Definir";
|
||||
$strLimitNumRows = "records per page";
|
||||
$strLineFeed = "Caracter de Alimentação de Linha: \\n";
|
||||
$strLines = "Linhas";
|
||||
$strLocationTextfile = "Localização do arquivo texto";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Sair";
|
||||
$strKeyname = 'Nome chave';
|
||||
$strKill = 'Matar';
|
||||
|
||||
$strModifications = "Modificações foram salvas";
|
||||
$strModify = "Modificar";
|
||||
$strMySQLReloaded = "MySQL reiniciado.";
|
||||
$strMySQLSaid = "Mensagens do MySQL : ";
|
||||
$strMySQLShowProcess = "Mostra os Processos";
|
||||
$strMySQLShowStatus = "Mostra informação de runtime do MySQL";
|
||||
$strMySQLShowVars = "Mostra variáveis de sistema do MySQL";
|
||||
$strLength = 'Tamanho';
|
||||
$strLengthSet = 'Tamanho/Definir';
|
||||
$strLimitNumRows = 'records per page';
|
||||
$strLineFeed = 'Caracter de Alimentação de Linha: \\n';
|
||||
$strLines = 'Linhas';
|
||||
$strLocationTextfile = 'Localização do arquivo texto';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Sair';
|
||||
|
||||
$strName = "Nome";
|
||||
$strNext = "Próximo";
|
||||
$strNo = "Não";
|
||||
$strNoPassword = "Sem Senha";
|
||||
$strNoPrivileges = "Sem Privilégios";
|
||||
$strNoRights = "Você não tem direitos suficientes para estar aqui agora!";
|
||||
$strNoTablesFound = "Nenhuma tabela encontrada no banco de dados";
|
||||
$strNoUsersFound = "Nenhum usuário(s) encontrado.";
|
||||
$strNull = "Nulo";
|
||||
$strNumberIndexes = " Número de índices avançados ";
|
||||
$strModifications = 'Modificações foram salvas';
|
||||
$strModify = 'Modificar';
|
||||
$strMySQLReloaded = 'MySQL reiniciado.';
|
||||
$strMySQLSaid = 'Mensagens do MySQL : ';
|
||||
$strMySQLShowProcess = 'Mostra os Processos';
|
||||
$strMySQLShowStatus = 'Mostra informação de runtime do MySQL';
|
||||
$strMySQLShowVars = 'Mostra variáveis de sistema do MySQL';
|
||||
|
||||
$strOftenQuotation = "Em geral aspas. OPCIONAL significa que apenas campos de caracteres são delimitados por caracteres \"delimitadores\"";
|
||||
$strOptimizeTable = "Optimizar tabela";
|
||||
$strOptionalControls = "Opcional. Controla como ler e escrever caracteres especiais.";
|
||||
$strOptionally = "OPCIONAL";
|
||||
$strOr = "Ou";
|
||||
$strOverhead = "Overhead"; //to translate -> How is this word used in the program?
|
||||
$strName = 'Nome';
|
||||
$strNext = 'Próximo';
|
||||
$strNo = 'Não';
|
||||
$strNoPassword = 'Sem Senha';
|
||||
$strNoPrivileges = 'Sem Privilégios';
|
||||
$strNoRights = 'Você não tem direitos suficientes para estar aqui agora!';
|
||||
$strNoTablesFound = 'Nenhuma tabela encontrada no banco de dados';
|
||||
$strNoUsersFound = 'Nenhum usuário(s) encontrado.';
|
||||
$strNull = 'Nulo';
|
||||
$strNumberIndexes = ' Número de índices avançados ';
|
||||
|
||||
$strPassword = "Senha";
|
||||
$strPasswordEmpty = "A senhas está vazia!";
|
||||
$strPasswordNotSame = "As senhas não são a mesma!";
|
||||
$strPHPVersion = "Versão do PHP";
|
||||
$strPos1 = "Início";
|
||||
$strPrevious = "Anterior";
|
||||
$strPrimary = "Primária";
|
||||
$strPrimaryKey = "Chave Primária";
|
||||
$strPrinterFriendly = "Printer friendly version of above table";
|
||||
$strPrintView = "Visualização para Impressão";
|
||||
$strPrivileges = "Privilégios";
|
||||
$strProducedAnError = "produziu um erro.";
|
||||
$strProperties = "Propriedades";
|
||||
$strOftenQuotation = 'Em geral aspas. OPCIONAL significa que apenas campos de caracteres são delimitados por caracteres "delimitadores"';
|
||||
$strOptimizeTable = 'Optimizar tabela';
|
||||
$strOptionalControls = 'Opcional. Controla como ler e escrever caracteres especiais.';
|
||||
$strOptionally = 'OPCIONAL';
|
||||
$strOr = 'Ou';
|
||||
$strOverhead = 'Overhead'; //to translate -> How is this word used in the program?
|
||||
|
||||
$strQBE = "Procura por Exemplo";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Senha';
|
||||
$strPasswordEmpty = 'A senhas está vazia!';
|
||||
$strPasswordNotSame = 'As senhas não são a mesma!';
|
||||
$strPHPVersion = 'Versão do PHP';
|
||||
$strPos1 = 'Início';
|
||||
$strPrevious = 'Anterior';
|
||||
$strPrimary = 'Primária';
|
||||
$strPrimaryKey = 'Chave Primária';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table';
|
||||
$strPrintView = 'Visualização para Impressão';
|
||||
$strPrivileges = 'Privilégios';
|
||||
$strProducedAnError = 'produziu um erro.';
|
||||
$strProperties = 'Propriedades';
|
||||
|
||||
$strReadTheDocs = "Leia a documentação";
|
||||
$strRecords = "Registros";
|
||||
$strReloadFailed = "Reinicialização do MySQL falhou.";
|
||||
$strReloadMySQL = "Reinicializa o MySQL";
|
||||
$strRememberReload = "Lembre-se recarregar o servidor.";
|
||||
$strRenameTable = "Renomeia a tabela para ";
|
||||
$strRenameTableOK = "Tabela %s renomeada para %s";
|
||||
$strRepairTable = "Reparar tabela";
|
||||
$strReplace = "Substituir";
|
||||
$strReplaceTable = "Substituir os dados da tabela pelos do arquivo";
|
||||
$strReset = "Resetar";
|
||||
$strReType = "Re-type"; //to translate -> In what context is this used? Re-Type the Password?
|
||||
$strRevoke = "Revogar";
|
||||
$strRevokeGrant = "Revogar Privilégio de Conceder";
|
||||
$strRevokeGrantMessage = "Você revogou o privilégio de conceder para";
|
||||
$strRevokeMessage = "Você revogou os privilégios para";
|
||||
$strRevokePriv = "Revogar Privilégios";
|
||||
$strRowLength = "Tamanho da Coluna";
|
||||
$strRows = "Colunas";
|
||||
$strRowsFrom = "colunas começando de";
|
||||
$strRowsStatistic = "Estatistícas da Coluna";
|
||||
$strRunning = "Rodando em ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Executa comando SQL no banco de dados ";
|
||||
$strQBE = 'Procura por Exemplo';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Salva";
|
||||
$strSelect = "Procura";
|
||||
$strSelectFields = "Selecione os campos (no mínimo 1)";
|
||||
$strSelectNumRows = "in query";
|
||||
$strSend = "Envia";
|
||||
$strSequence = "Sequência";
|
||||
$strServerVersion = "Versão do Servidor";
|
||||
$strShow = "Mostrar";
|
||||
$strShowingRecords = "Mostrando registros ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Tamanho";
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Uso do espaço";
|
||||
$strSQLQuery = "comando SQL";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "Dados CSV";
|
||||
$strStrucData = "Estrutura e dados";
|
||||
$strStrucDrop = "Adiciona 'Sobrescrever'";
|
||||
$strStrucOnly = "Somente estrutura";
|
||||
$strSubmit = "Submete";
|
||||
$strSuccess = "Seu comando SQL foi executado com sucesso";
|
||||
$strSum = "Soma";
|
||||
$strReadTheDocs = 'Leia a documentação';
|
||||
$strRecords = 'Registros';
|
||||
$strReloadFailed = 'Reinicialização do MySQL falhou.';
|
||||
$strReloadMySQL = 'Reinicializa o MySQL';
|
||||
$strRememberReload = 'Lembre-se recarregar o servidor.';
|
||||
$strRenameTable = 'Renomeia a tabela para ';
|
||||
$strRenameTableOK = 'Tabela %s renomeada para %s';
|
||||
$strRepairTable = 'Reparar tabela';
|
||||
$strReplace = 'Substituir';
|
||||
$strReplaceTable = 'Substituir os dados da tabela pelos do arquivo';
|
||||
$strReset = 'Resetar';
|
||||
$strReType = 'Re-type'; //to translate -> In what context is this used? Re-Type the Password?
|
||||
$strRevoke = 'Revogar';
|
||||
$strRevokeGrant = 'Revogar Privilégio de Conceder';
|
||||
$strRevokeGrantMessage = 'Você revogou o privilégio de conceder para';
|
||||
$strRevokeMessage = 'Você revogou os privilégios para';
|
||||
$strRevokePriv = 'Revogar Privilégios';
|
||||
$strRowLength = 'Tamanho da Coluna';
|
||||
$strRows = 'Colunas';
|
||||
$strRowsFrom = 'colunas começando de';
|
||||
$strRowsStatistic = 'Estatistícas da Coluna';
|
||||
$strRunning = 'Rodando em ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Executa comando SQL no banco de dados ';
|
||||
|
||||
$strTable = "tabela ";
|
||||
$strTableComments = "Comentários da tabela";
|
||||
$strTableEmpty = "O Nome da Tabela está vazio!";
|
||||
$strTableMaintenance = "Tabela de Manutenção";
|
||||
$strTableStructure = "Estrutura da tabela";
|
||||
$strTableType = "Tipo da Tabela";
|
||||
$strTerminatedBy = "terminados por";
|
||||
$strTextAreaLength = " Por causa da sua largura,<br> esse campo pode não ser editável ";
|
||||
$strTheContent = "O conteúdo do seu arquivo foi inserido";
|
||||
$strTheContents = "O conteúdo do arquivo substituiu o conteúdo da tabela que tinha a mesma chave primária ou única";
|
||||
$strTheTerminator = "Terminador de campos.";
|
||||
$strTotal = "total";
|
||||
$strType = "Tipo";
|
||||
$strSave = 'Salva';
|
||||
$strSelect = 'Procura';
|
||||
$strSelectFields = 'Selecione os campos (no mínimo 1)';
|
||||
$strSelectNumRows = 'in query';
|
||||
$strSend = 'Envia';
|
||||
$strSequence = 'Sequência';
|
||||
$strServerVersion = 'Versão do Servidor';
|
||||
$strShow = 'Mostrar';
|
||||
$strShowingRecords = 'Mostrando registros ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Tamanho';
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Uso do espaço';
|
||||
$strSQLQuery = 'comando SQL';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'Dados CSV';
|
||||
$strStrucData = 'Estrutura e dados';
|
||||
$strStrucDrop = 'Adiciona \'Sobrescrever\'';
|
||||
$strStrucOnly = 'Somente estrutura';
|
||||
$strSubmit = 'Submete';
|
||||
$strSuccess = 'Seu comando SQL foi executado com sucesso';
|
||||
$strSum = 'Soma';
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Único";
|
||||
$strUpdatePassMessage = "Você mudou a senha para";
|
||||
$strUpdatePassword = "Mudar Senha";
|
||||
$strUpdatePrivMessage = "Você mudou os priviléios para";
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Uso";
|
||||
$strUser = "Usuário";
|
||||
$strUserEmpty = "O nome do usuário está vazio!";
|
||||
$strUserName = "Nome do usuário";
|
||||
$strUsers = "Usuários";
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'tabela ';
|
||||
$strTableComments = 'Comentários da tabela';
|
||||
$strTableEmpty = 'O Nome da Tabela está vazio!';
|
||||
$strTableMaintenance = 'Tabela de Manutenção';
|
||||
$strTableStructure = 'Estrutura da tabela';
|
||||
$strTableType = 'Tipo da Tabela';
|
||||
$strTerminatedBy = 'terminados por';
|
||||
$strTextAreaLength = ' Por causa da sua largura,<br /> esse campo pode não ser editável ';
|
||||
$strTheContent = 'O conteúdo do seu arquivo foi inserido';
|
||||
$strTheContents = 'O conteúdo do arquivo substituiu o conteúdo da tabela que tinha a mesma chave primária ou única';
|
||||
$strTheTerminator = 'Terminador de campos.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Tipo';
|
||||
|
||||
$strValue = "Valor";
|
||||
$strViewDump = "Ver o esquema da tabela";
|
||||
$strViewDumpDB = "Ver o esquema do banco de dados";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Único';
|
||||
$strUpdatePassMessage = 'Você mudou a senha para';
|
||||
$strUpdatePassword = 'Mudar Senha';
|
||||
$strUpdatePrivMessage = 'Você mudou os priviléios para';
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Uso';
|
||||
$strUser = 'Usuário';
|
||||
$strUserEmpty = 'O nome do usuário está vazio!';
|
||||
$strUserName = 'Nome do usuário';
|
||||
$strUsers = 'Usuários';
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Bem vindo ao ";
|
||||
$strWrongUser = "Usuário ou Senha errado. Acesso Negado.";
|
||||
$strValue = 'Valor';
|
||||
$strViewDump = 'Ver o esquema da tabela';
|
||||
$strViewDumpDB = 'Ver o esquema do banco de dados';
|
||||
|
||||
$strYes = "Sim";
|
||||
$strWelcome = 'Bem vindo ao ';
|
||||
$strWrongUser = 'Usuário ou Senha errado. Acesso Negado.';
|
||||
|
||||
$strYes = 'Sim';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "windows-1251";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'windows-1251';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Îòêàçàí äîñòúï";
|
||||
$strAction = "Äåéñòâèå";
|
||||
$strAddDeleteColumn = "Äîáàâè/èçòðèé êîëîíà ïî êðèòåðèé";
|
||||
$strAddDeleteRow = "Äîáàâè/èçòðèé ðåä ïî êðèòåðèé";
|
||||
$strAddNewField = "Äîáàâè íîâî ïîëå";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Äîáàâè óñëîâèå çà òúðñåíå (òÿëî çà \"where\" óñëîâèå):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "È";
|
||||
$strAnIndex = "Áåøå äîáàâåí èíäåêñ çà ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "Áeøe äîáàâåí ïúðâè÷eí êëþ÷ êúì ";
|
||||
$strAscending = "Âúçõîäÿù";
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "Àòðèáóòè";
|
||||
|
||||
$strBack = "Íàçàä";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Ïðåëèñòè";
|
||||
$strAccessDenied = 'Îòêàçàí äîñòúï';
|
||||
$strAction = 'Äåéñòâèå';
|
||||
$strAddDeleteColumn = 'Äîáàâè/èçòðèé êîëîíà ïî êðèòåðèé';
|
||||
$strAddDeleteRow = 'Äîáàâè/èçòðèé ðåä ïî êðèòåðèé';
|
||||
$strAddNewField = 'Äîáàâè íîâî ïîëå';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Äîáàâè óñëîâèå çà òúðñåíå (òÿëî çà "where" óñëîâèå):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'È';
|
||||
$strAnIndex = 'Áåøå äîáàâåí èíäåêñ çà ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'Áeøe äîáàâåí ïúðâè÷eí êëþ÷ êúì ';
|
||||
$strAscending = 'Âúçõîäÿù';
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = 'Àòðèáóòè';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Ñèìâîë CR: \\r";
|
||||
$strChange = "Ïðîìåíè";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Íàçâàíèå íà êîëîíà";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Êîïèðàé òàáëèöàòà â:";
|
||||
$strCopyTableOK = "Òàáëèöà %s áåøå êîïèðàíà â %s.";
|
||||
$strCreate = "Ñúçäàé";
|
||||
$strCreateNewDatabase = "Ñúçäàé íîâà ÁÄ";
|
||||
$strCreateNewTable = "Ñúçäàé íîâà òàáëèöà â ÁÄ ";
|
||||
$strCriteria = "Êðèòåðèé";
|
||||
$strBack = 'Íàçàä';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Ïðåëèñòè';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "ÁÄ ";
|
||||
$strDatabases = "Áàçà Äàííè";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Ïî ïîäðàçáèðàíå";
|
||||
$strDelete = "Èçòðèé";
|
||||
$strDeleted = "Ðåäúò áåøå èçòðèò";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Íèçõîäÿù";
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "Èçïúëíè \"çàïèòâàíå ïî çàÿâêà\" (ñèìâîë çà çàìåñòâàíå: \"%\")";
|
||||
$strDocu = "Äîêóìåíòàöèÿ";
|
||||
$strDoYouReally = "Äåéñòâèòåëíî ëè æåëàåòå ";
|
||||
$strDrop = "Óíèùîæè";
|
||||
$strDropDB = "Óíèùîæè ÁÄ ";
|
||||
$strDumpingData = "Äúìï (ñõåìà) íà äàííèòå â òàáëèöàòà";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Ñèìâîë CR: \\r';
|
||||
$strChange = 'Ïðîìåíè';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Íàçâàíèå íà êîëîíà';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Êîïèðàé òàáëèöàòà â:';
|
||||
$strCopyTableOK = 'Òàáëèöà %s áåøå êîïèðàíà â %s.';
|
||||
$strCreate = 'Ñúçäàé';
|
||||
$strCreateNewDatabase = 'Ñúçäàé íîâà ÁÄ';
|
||||
$strCreateNewTable = 'Ñúçäàé íîâà òàáëèöà â ÁÄ ';
|
||||
$strCriteria = 'Êðèòåðèé';
|
||||
|
||||
$strEdit = "Ðåäàêòèðàíå";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Èçïðàçíè";
|
||||
$strEmptyResultSet = "MySQL âúðíà ïðàçåí ðåçóëòàò (ò.å. íóëà ðåäîâå).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "Çàãðàäåíè ñ ";
|
||||
$strEnd = "Êðàé";
|
||||
$strError = "Ãðåøêà";
|
||||
$strEscapedBy = "Ñèìâîë Escape";
|
||||
$strExtra = "Äîïúëíèòåëíî";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'ÁÄ ';
|
||||
$strDatabases = 'Áàçà Äàííè';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Ïî ïîäðàçáèðàíå';
|
||||
$strDelete = 'Èçòðèé';
|
||||
$strDeleted = 'Ðåäúò áåøå èçòðèò';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Íèçõîäÿù';
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = 'Èçïúëíè "çàïèòâàíå ïî çàÿâêà" (ñèìâîë çà çàìåñòâàíå: "%")';
|
||||
$strDocu = 'Äîêóìåíòàöèÿ';
|
||||
$strDoYouReally = 'Äåéñòâèòåëíî ëè æåëàåòå ';
|
||||
$strDrop = 'Óíèùîæè';
|
||||
$strDropDB = 'Óíèùîæè ÁÄ ';
|
||||
$strDumpingData = 'Äúìï (ñõåìà) íà äàííèòå â òàáëèöàòà';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Ïîëå";
|
||||
$strFields = "Ïîëåòà";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Ôóíêöèÿ";
|
||||
$strEdit = 'Ðåäàêòèðàíå';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Èçïðàçíè';
|
||||
$strEmptyResultSet = 'MySQL âúðíà ïðàçåí ðåçóëòàò (ò.å. íóëà ðåäîâå).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'Çàãðàäåíè ñ ';
|
||||
$strEnd = 'Êðàé';
|
||||
$strError = 'Ãðåøêà';
|
||||
$strEscapedBy = 'Ñèìâîë Escape';
|
||||
$strExtra = 'Äîïúëíèòåëíî';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Èçïúëíè";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Ïîëå';
|
||||
$strFields = 'Ïîëåòà';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Ôóíêöèÿ';
|
||||
|
||||
$strHasBeenAltered = "áåøå ïðîìåíåíà.";
|
||||
$strHasBeenCreated = "áåøå ñúçäàäåíà.";
|
||||
$strHasBeenDropped = "áåøå óíèùîæåíà.";
|
||||
$strHasBeenEmptied = "áåøå èçïðàçíåíà.";
|
||||
$strHome = "Íà÷àëî";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Õîñò";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Èçïúëíè';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "Àêî æåëàåòå äà çàðåäèòå ñàìî íÿêîè êîëîíè îò òàáëèöàòà, óêàæåòå ñïèñúê íà ïîëåòàòà ðàçäåëåíè ñúñ çàïåòàè.";
|
||||
$strIndex = "Èíäåêñ";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Âìúêíè";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Âìúêíè â òàáëèöàòà";
|
||||
$strInsertNewRow = "Âìúêíè íîâ ðåä";
|
||||
$strInsertTextfiles = "Âìúêíè òåêñòîâè ôàéëîâå â òàáëèöàòà";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'áåøå ïðîìåíåíà.';
|
||||
$strHasBeenCreated = 'áåøå ñúçäàäåíà.';
|
||||
$strHasBeenDropped = 'áåøå óíèùîæåíà.';
|
||||
$strHasBeenEmptied = 'áåøå èçïðàçíåíà.';
|
||||
$strHome = 'Íà÷àëî';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Õîñò';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Èìå íà êëþ÷à";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'Àêî æåëàåòå äà çàðåäèòå ñàìî íÿêîè êîëîíè îò òàáëèöàòà, óêàæåòå ñïèñúê íà ïîëåòàòà ðàçäåëåíè ñúñ çàïåòàè.';
|
||||
$strIndex = 'Èíäåêñ';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Âìúêíè';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Âìúêíè â òàáëèöàòà';
|
||||
$strInsertNewRow = 'Âìúêíè íîâ ðåä';
|
||||
$strInsertTextfiles = 'Âìúêíè òåêñòîâè ôàéëîâå â òàáëèöàòà';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Äúëæèíà";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "Ñèìâîë çà êðàé íà ðåä: \\n";
|
||||
$strLines = "Ðåäîâå";
|
||||
$strLocationTextfile = "Ìåñòîðàçïîëîæåíèå íà òåêñòîâèÿ ôàéë";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Èçõîä îò ñèñòåìàòà";
|
||||
$strKeyname = 'Èìå íà êëþ÷à';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "Ïðîìåíèòå áÿõà ñúõðàíåíè";
|
||||
$strModify = "Èçìåíè";
|
||||
$strMySQLReloaded = "MySQL å ïðåçàðåäåí.";
|
||||
$strMySQLSaid = "MySQL îòãîâîðè: ";
|
||||
$strMySQLShowProcess = "Ïîêàæè ïðîöåñèòå";
|
||||
$strMySQLShowStatus = "Ïîêàæè ñúñòîÿíèåòî íà MySQL";
|
||||
$strMySQLShowVars = "Ïîêàæè ñèñòåìíèòå ïðîìåíëèâè íà MySQL";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Äúëæèíà';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = 'Ñèìâîë çà êðàé íà ðåä: \\n';
|
||||
$strLines = 'Ðåäîâå';
|
||||
$strLocationTextfile = 'Ìåñòîðàçïîëîæåíèå íà òåêñòîâèÿ ôàéë';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Èçõîä îò ñèñòåìàòà';
|
||||
|
||||
$strName = "Èìå";
|
||||
$strNext = "Ñëåäâàù";
|
||||
$strNo = "Íå";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Â ÁÄ íÿìà òàáëèöè.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Íóëà";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'Ïðîìåíèòå áÿõà ñúõðàíåíè';
|
||||
$strModify = 'Èçìåíè';
|
||||
$strMySQLReloaded = 'MySQL å ïðåçàðåäåí.';
|
||||
$strMySQLSaid = 'MySQL îòãîâîðè: ';
|
||||
$strMySQLShowProcess = 'Ïîêàæè ïðîöåñèòå';
|
||||
$strMySQLShowStatus = 'Ïîêàæè ñúñòîÿíèåòî íà MySQL';
|
||||
$strMySQLShowVars = 'Ïîêàæè ñèñòåìíèòå ïðîìåíëèâè íà MySQL';
|
||||
|
||||
$strOftenQuotation = "Îáèêíîâåíî êàâè÷êè. ÏÎ ÈÇÁÎÐ îçíà÷àâà, ÷å ñàìî ïîëåòà char è varchar ñå çàãðàæäàò â êàâè÷êè.";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Ïî èçáîð. Êîíòðîëèðà êàê äà ñå ÷åòàò èëè ïèøàò ñïåöèàëíè ñèìâîëè.";
|
||||
$strOptionally = "ÏÎ ÈÇÁÎÐ";
|
||||
$strOr = "Èëè";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Èìå';
|
||||
$strNext = 'Ñëåäâàù';
|
||||
$strNo = 'Íå';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Â ÁÄ íÿìà òàáëèöè.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Íóëà';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Íà÷àëî";
|
||||
$strPrevious = "Ïðåäèøåí";
|
||||
$strPrimary = "Ïúðâè÷åí";
|
||||
$strPrimaryKey = "Ïúðâè÷åí êëþ÷";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "äîâåäå äî ãðåøêà.";
|
||||
$strProperties = "Ñâîéñòâà";
|
||||
$strOftenQuotation = 'Îáèêíîâåíî êàâè÷êè. ÏÎ ÈÇÁÎÐ îçíà÷àâà, ÷å ñàìî ïîëåòà char è varchar ñå çàãðàæäàò â êàâè÷êè.';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Ïî èçáîð. Êîíòðîëèðà êàê äà ñå ÷åòàò èëè ïèøàò ñïåöèàëíè ñèìâîëè.';
|
||||
$strOptionally = 'ÏÎ ÈÇÁÎÐ';
|
||||
$strOr = 'Èëè';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Çàïèòâàíå ïî ïðèìåð";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Íà÷àëî';
|
||||
$strPrevious = 'Ïðåäèøåí';
|
||||
$strPrimary = 'Ïúðâè÷åí';
|
||||
$strPrimaryKey = 'Ïúðâè÷åí êëþ÷';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'äîâåäå äî ãðåøêà.';
|
||||
$strProperties = 'Ñâîéñòâà';
|
||||
|
||||
$strReadTheDocs = "Ïðî÷åòè äîêóìåíòàöèÿòà";
|
||||
$strRecords = "Çàïèñè";
|
||||
$strReloadFailed = "Íåóñïåøåí îïèò çà ïðåçàðåæäàíå íà MySQL.";
|
||||
$strReloadMySQL = "Ïðåçàðåäè MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Ïðåèìåíóâàé òàáëèöàòà íà";
|
||||
$strRenameTableOK = "Òàáëèöà %s áåøå ïðåèìåíóâàíà íà %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "Çàìåñòè";
|
||||
$strReplaceTable = "Çàìåñòè äàííèòå îò òàáëèöàòà ñ äàííèòå îò ôàéëà";
|
||||
$strReset = "Èç÷èñòè";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "ñòàðòèðàí íà ";
|
||||
$strRunQuery = "Èçïúëíè Çàïèòâàíåòî";
|
||||
$strRunSQLQuery = "Èçïúëíè SQL çàïèòâàíå çà ÁÄ ";
|
||||
$strQBE = 'Çàïèòâàíå ïî ïðèìåð';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Çàïèøè";
|
||||
$strSelect = "Èçáåðè";
|
||||
$strSelectFields = "Èçáåðè ïîëå (ìèíèìóì åäíî):";
|
||||
$strSelectNumRows = "â çàïèòâàíåòî";
|
||||
$strSend = "èçïðàòè";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Ïîêàæè";
|
||||
$strShowingRecords = "Ïîêàçâà çàïèñè ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Ñîðòèðàé";
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-çàïèòâàíå";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV äàííè";
|
||||
$strStrucData = "Ñòðóêòóðà è äàííè";
|
||||
$strStrucDrop = "Äîáàâè 'èçòðèé òàáëèöàòà'";
|
||||
$strStrucOnly = "Ñàìî ñòðóêòóðàòà";
|
||||
$strSubmit = "Èçïúëíè";
|
||||
$strSuccess = "Âàøåòî SQL-çàïèòâàíå áåøå èçïúëíåíî óñïåøíî";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'Ïðî÷åòè äîêóìåíòàöèÿòà';
|
||||
$strRecords = 'Çàïèñè';
|
||||
$strReloadFailed = 'Íåóñïåøåí îïèò çà ïðåçàðåæäàíå íà MySQL.';
|
||||
$strReloadMySQL = 'Ïðåçàðåäè MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Ïðåèìåíóâàé òàáëèöàòà íà';
|
||||
$strRenameTableOK = 'Òàáëèöà %s áåøå ïðåèìåíóâàíà íà %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'Çàìåñòè';
|
||||
$strReplaceTable = 'Çàìåñòè äàííèòå îò òàáëèöàòà ñ äàííèòå îò ôàéëà';
|
||||
$strReset = 'Èç÷èñòè';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'ñòàðòèðàí íà ';
|
||||
$strRunQuery = 'Èçïúëíè Çàïèòâàíåòî';
|
||||
$strRunSQLQuery = 'Èçïúëíè SQL çàïèòâàíå çà ÁÄ ';
|
||||
|
||||
$strTable = "Òàáëèöà ";
|
||||
$strTableComments = "Êîìåíòàðè êúì òàáëèöàòà";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Ñòðóêòóðà íà òàáëèöà";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "Çàâúðøâàò íà";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "Ñúäúðæàíèåòî íà ôàéëà áåøå èìïîðòèðàíî.";
|
||||
$strTheContents = "Ñúäúðæàíèåòî íà ôàéëà çàìåñòâà ñúäúðæàíèåòî íà òàáëèöàòà çà ðåäîâå ñ èäåíòè÷íè ïúðâè÷íè èëè óíèêàëíè êëþ÷îâå.";
|
||||
$strTheTerminator = "Ñèìâîë çà êðàé íà ïîëå.";
|
||||
$strTotal = "âñè÷êî";
|
||||
$strType = "Òèï";
|
||||
$strSave = 'Çàïèøè';
|
||||
$strSelect = 'Èçáåðè';
|
||||
$strSelectFields = 'Èçáåðè ïîëå (ìèíèìóì åäíî):';
|
||||
$strSelectNumRows = 'â çàïèòâàíåòî';
|
||||
$strSend = 'èçïðàòè';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Ïîêàæè';
|
||||
$strShowingRecords = 'Ïîêàçâà çàïèñè ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Ñîðòèðàé';
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-çàïèòâàíå';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV äàííè';
|
||||
$strStrucData = 'Ñòðóêòóðà è äàííè';
|
||||
$strStrucDrop = 'Äîáàâè \'èçòðèé òàáëèöàòà\'';
|
||||
$strStrucOnly = 'Ñàìî ñòðóêòóðàòà';
|
||||
$strSubmit = 'Èçïúëíè';
|
||||
$strSuccess = 'Âàøåòî SQL-çàïèòâàíå áåøå èçïúëíåíî óñïåøíî';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Óíèêàëíî";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Äîïúëíè Çàïèòâàíåòî";
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Èçïîëçâàé òàáëèöàòà";
|
||||
$strTable = 'Òàáëèöà ';
|
||||
$strTableComments = 'Êîìåíòàðè êúì òàáëèöàòà';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Ñòðóêòóðà íà òàáëèöà';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'Çàâúðøâàò íà';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'Ñúäúðæàíèåòî íà ôàéëà áåøå èìïîðòèðàíî.';
|
||||
$strTheContents = 'Ñúäúðæàíèåòî íà ôàéëà çàìåñòâà ñúäúðæàíèåòî íà òàáëèöàòà çà ðåäîâå ñ èäåíòè÷íè ïúðâè÷íè èëè óíèêàëíè êëþ÷îâå.';
|
||||
$strTheTerminator = 'Ñèìâîë çà êðàé íà ïîëå.';
|
||||
$strTotal = 'âñè÷êî';
|
||||
$strType = 'Òèï';
|
||||
|
||||
$strValue = "Ñòîéíîñò";
|
||||
$strViewDump = "Ïîêàæè äúìï (ñõåìà) íà òàáëèöàòà";
|
||||
$strViewDumpDB = "Ïîêàæè äúìï (ñõåìà) íà ÁÄ";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Óíèêàëíî';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Äîïúëíè Çàïèòâàíåòî';
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Èçïîëçâàé òàáëèöàòà';
|
||||
|
||||
$strWelcome = "Äîáðå äîøëè â ";
|
||||
$strWrongUser = "Ãðåøíî èìå/ïàðîëà. Îòêàçàí äîñòúï.";
|
||||
$strValue = 'Ñòîéíîñò';
|
||||
$strViewDump = 'Ïîêàæè äúìï (ñõåìà) íà òàáëèöàòà';
|
||||
$strViewDumpDB = 'Ïîêàæè äúìï (ñõåìà) íà ÁÄ';
|
||||
|
||||
$strYes = "Äà";
|
||||
$strWelcome = 'Äîáðå äîøëè â ';
|
||||
$strWrongUser = 'Ãðåøíî èìå/ïàðîëà. Îòêàçàí äîñòúï.';
|
||||
|
||||
$strYes = 'Äà';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,289 +1,286 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Access denegat";
|
||||
$strAction = "Acció";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Afegir un camp nou";
|
||||
$strAddPriv = "Afegir un privilegi nou";
|
||||
$strAddPrivMessage = "Has afegit un privilegi nou.";
|
||||
$strAddSearchConditions = "Afegeix condicions de recerca (cos de la clàusula \"where\"):";
|
||||
$strAddUser = "Afegir un usuari nou";
|
||||
$strAddUserMessage = "Has afegit un usuari nou.";
|
||||
$strAfter = "Després";
|
||||
$strAll = "Tot";
|
||||
$strAlterOrderBy = "Altera la taula i ordena per";
|
||||
$strAnalyzeTable = "Analitza la taula";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Afegit un índex a ";
|
||||
$strAny = "Qualsevol"; //to translate
|
||||
$strAnyColumn = "Qualsevol columna";
|
||||
$strAnyDatabase = "Qualsevol base de dades";
|
||||
$strAnyHost = "Qualsevol servidor";
|
||||
$strAnyTable = "Qualsevol taula";
|
||||
$strAnyUser = "Qualsevol usuari";
|
||||
$strAPrimaryKey = "Afegida una clau primària a ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "Al principi de la taula";
|
||||
$strAtEndOfTable = "Al final de la taula";
|
||||
$strAttr = "Atributs";
|
||||
|
||||
$strBack = "Enrere";
|
||||
$strBookmarkLabel = "Etiqueta";
|
||||
$strBookmarkQuery = "Consulta SQL registrada";
|
||||
$strBookmarkThis = "Registra aquesta consulta SQL";
|
||||
$strBookmarkView = "Només mirar";
|
||||
$strBrowse = "Navega";
|
||||
$strAccessDenied = 'Access denegat';
|
||||
$strAction = 'Acció';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Afegir un camp nou';
|
||||
$strAddPriv = 'Afegir un privilegi nou';
|
||||
$strAddPrivMessage = 'Has afegit un privilegi nou.';
|
||||
$strAddSearchConditions = 'Afegeix condicions de recerca (cos de la clàusula "where"):';
|
||||
$strAddUser = 'Afegir un usuari nou';
|
||||
$strAddUserMessage = 'Has afegit un usuari nou.';
|
||||
$strAfter = 'Després';
|
||||
$strAll = 'Tot';
|
||||
$strAlterOrderBy = 'Altera la taula i ordena per';
|
||||
$strAnalyzeTable = 'Analitza la taula';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Afegit un índex a ';
|
||||
$strAny = 'Qualsevol';
|
||||
$strAnyColumn = 'Qualsevol columna';
|
||||
$strAnyDatabase = 'Qualsevol base de dades';
|
||||
$strAnyHost = 'Qualsevol servidor';
|
||||
$strAnyTable = 'Qualsevol taula';
|
||||
$strAnyUser = 'Qualsevol usuari';
|
||||
$strAPrimaryKey = 'Afegida una clau primària a ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'Al principi de la taula';
|
||||
$strAtEndOfTable = 'Al final de la taula';
|
||||
$strAttr = 'Atributs';
|
||||
|
||||
$strCantLoadMySQL = "no s'ha pogut carregar l'extensió de MySQL,<br>bverifiqueu la configuració del PHP.";
|
||||
$strCarriage = "Retorn de línia: \\r";
|
||||
$strChange = "Canvi";
|
||||
$strCheckAll = "Verificar-ho tot";
|
||||
$strCheckDbPriv = "Verifica els privilegis de la base de dades";
|
||||
$strCheckTable = "Verifica la taula";
|
||||
$strColumn = "Columna";
|
||||
$strColumnEmpty = "Els noms de les columnes són buits!";
|
||||
$strColumnNames = "Nom de les col·lumnes";
|
||||
$strCompleteInserts = "Completar insercions";
|
||||
$strConfirm = "Ho vols fer realment ?";
|
||||
$strCopyTable = "Copiar la taula a:";
|
||||
$strCopyTableOK = "La taula %s ha estat copiada a %s.";
|
||||
$strCreate = "Crear";
|
||||
$strCreateNewDatabase = "Crea una nova base de dades";
|
||||
$strCreateNewTable = "Crear una taula nova a la base de dades ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Enrere';
|
||||
$strBinary = ' Binari ';
|
||||
$strBinaryDoNotEdit = ' Binari - no editeu ';
|
||||
$strBookmarkLabel = 'Etiqueta';
|
||||
$strBookmarkQuery = 'Consulta SQL registrada';
|
||||
$strBookmarkThis = 'Registra aquesta consulta SQL';
|
||||
$strBookmarkView = 'Només mirar';
|
||||
$strBrowse = 'Navega';
|
||||
$strBzip = '"comprimit amb bzip"';
|
||||
|
||||
$strData = "Dades";
|
||||
$strDatabase = "Base de dades ";
|
||||
$strDatabases = "bases de dades";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "El nom de la base de dades és buit!";
|
||||
$strDefault = "Defecte";
|
||||
$strDelete = "Esborrar";
|
||||
$strDeleted = "La fila ha estat esborrada";
|
||||
$strDeleteFailed = "No s'ha pogut esborrar!";
|
||||
$strDeletePassword = "Esborrar contrasenya";
|
||||
$strDeleteUserMessage = "Has esborrat l'usuari";
|
||||
$strDelPassMessage = "Has esborrat la contrasenya de l'usuari";
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Atenció:</b> Has activat les magic_quotes_gpc en el fitxer de
|
||||
configuració del PHP. Aquesta versió del PhpMyAdmin no
|
||||
funciona correctament amb aquesta opció. Fes un cop d'ull al manual de PHP sobre com desactivar aquesta opció.";
|
||||
$strDisplay = "Mostrar";
|
||||
$strDoAQuery = "Fer un \"petició segons exemple\" (comodí: \"%\")";
|
||||
$strDocu = "Documentació";
|
||||
$strDoYouReally = "Realment vols ";
|
||||
$strDrop = "Eliminar";
|
||||
$strDropDB = "Eliminar base de dades ";
|
||||
$strDumpingData = "Volcant dades de la taula";
|
||||
$strDynamic = "dinàmic";
|
||||
$strCantLoadMySQL = 'no s\'ha pogut carregar l\'extensió de MySQL,<br />bverifiqueu la configuració del PHP.';
|
||||
$strCarriage = 'Retorn de línia: \\r';
|
||||
$strChange = 'Canvi';
|
||||
$strCheckAll = 'Verificar-ho tot';
|
||||
$strCheckDbPriv = 'Verifica els privilegis de la base de dades';
|
||||
$strCheckTable = 'Verifica la taula';
|
||||
$strColumn = 'Columna';
|
||||
$strColumnEmpty = 'Els noms de les columnes són buits!';
|
||||
$strColumnNames = 'Nom de les col·lumnes';
|
||||
$strCompleteInserts = 'Completar insercions';
|
||||
$strConfirm = 'Ho vols fer realment ?';
|
||||
$strCopyTable = 'Copiar la taula a:';
|
||||
$strCopyTableOK = 'La taula %s ha estat copiada a %s.';
|
||||
$strCreate = 'Crear';
|
||||
$strCreateNewDatabase = 'Crea una nova base de dades';
|
||||
$strCreateNewTable = 'Crear una taula nova a la base de dades ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Editar";
|
||||
$strEditPrivileges = "Editar privilegis";
|
||||
$strEffective = "Efectiu";
|
||||
$strEmpty = "Buidar";
|
||||
$strEmptyResultSet = "MySQL ha retornat un conjunt buit (p.e. cap fila).";
|
||||
$strEnableMagicQuotes = "<b>Atenció:</b> No has habilitat les magic_quotes_gpc en el fitxer de configuració del PHP. El PhpMyAdmin necessita aquesta opció per a funcionar correctament. Fes un cop d'ull al manual del PHP sobre com activar aquesta opció en el fitxer de configuració del PHP";
|
||||
$strEnclosedBy = "tancat entre";
|
||||
$strEnd = "Final";
|
||||
$strError = "Errada";
|
||||
$strEscapedBy = "escapat per";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Dades';
|
||||
$strDatabase = 'Base de dades ';
|
||||
$strDatabases = 'bases de dades';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'El nom de la base de dades és buit!';
|
||||
$strDefault = 'Defecte';
|
||||
$strDelete = 'Esborrar';
|
||||
$strDeleted = 'La fila ha estat esborrada';
|
||||
$strDeleteFailed = 'No s\'ha pogut esborrar!';
|
||||
$strDeletePassword = 'Esborrar contrasenya';
|
||||
$strDeleteUserMessage = 'Has esborrat l\'usuari';
|
||||
$strDelPassMessage = 'Has esborrat la contrasenya de l\'usuari';
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Atenció:</b> Has activat les magic_quotes_gpc en el fitxer de configuració del PHP. Aquesta versió del PhpMyAdmin no funciona correctament amb aquesta opció. Fes un cop d\'ull al manual de PHP sobre com desactivar aquesta opció.';
|
||||
$strDisplay = 'Mostrar';
|
||||
$strDoAQuery = 'Fer un "petició segons exemple" (comodí: "%")';
|
||||
$strDocu = 'Documentació';
|
||||
$strDoYouReally = 'Realment vols ';
|
||||
$strDrop = 'Eliminar';
|
||||
$strDropDB = 'Eliminar base de dades ';
|
||||
$strDumpingData = 'Volcant dades de la taula';
|
||||
$strDynamic = 'dinàmic';
|
||||
|
||||
$strField = "Camp";
|
||||
$strFields = "Camps";
|
||||
$strFixed = "fixa";
|
||||
$strFormat = "Format";
|
||||
$strFunction = "Funció";
|
||||
$strEdit = 'Editar';
|
||||
$strEditPrivileges = 'Editar privilegis';
|
||||
$strEffective = 'Efectiu';
|
||||
$strEmpty = 'Buidar';
|
||||
$strEmptyResultSet = 'MySQL ha retornat un conjunt buit (p.e. cap fila).';
|
||||
$strEnableMagicQuotes = '<b>Atenció:</b> No has habilitat les magic_quotes_gpc en el fitxer de configuració del PHP. El PhpMyAdmin necessita aquesta opció per a funcionar correctament. Fes un cop d\'ull al manual del PHP sobre com activar aquesta opció en el fitxer de configuració del PHP';
|
||||
$strEnclosedBy = 'tancat entre';
|
||||
$strEnd = 'Final';
|
||||
$strEnglishPrivileges = ' Nota: Els noms dels privilegis del MySQL són en llengua anglesa ';
|
||||
$strError = 'Errada';
|
||||
$strEscapedBy = 'escapat per';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Temps de generació";
|
||||
$strGo = "Executar";
|
||||
$strGrants = "Atorgar";
|
||||
$strField = 'Camp';
|
||||
$strFields = 'Camps';
|
||||
$strFixed = 'fixa';
|
||||
$strFormat = 'Format';
|
||||
$strFunction = 'Funció';
|
||||
|
||||
$strHasBeenAltered = "ha estat alterada.";
|
||||
$strHasBeenCreated = "ha estat creada.";
|
||||
$strHasBeenDropped = "ha estat eliminada.";
|
||||
$strHasBeenEmptied = "ha estat buidada.";
|
||||
$strHome = "Inici";
|
||||
$strHomepageOfficial = "Plana oficial del phpMyAdmin";
|
||||
$strHomepageSourceforge = "Plana de descàrrega del phpMyAdmin a SourceForge"; //to translate
|
||||
$strHost = "Servidor";
|
||||
$strHostEmpty = "El nom del servidor ès buit!";
|
||||
$strGenTime = 'Temps de generació';
|
||||
$strGo = 'Executar';
|
||||
$strGrants = 'Atorgar';
|
||||
$strGzip = '"comprimit amb gzip"';
|
||||
|
||||
$strIfYouWish = "Si només vols carregar algunes col.lumnes de la taula, especifica-ho amb una llista separada per comes.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexos";
|
||||
$strInsert = "Inserta";
|
||||
$strInsertAsNewRow = "Insertar com a nova fila";
|
||||
$strInsertIntoTable = "Inserir a la taula";
|
||||
$strInsertNewRow = "Inserir nova fila";
|
||||
$strInsertTextfiles = "Inserir fitxers de text a la taula";
|
||||
$strInUse = "en use";
|
||||
$strHasBeenAltered = 'ha estat alterada.';
|
||||
$strHasBeenCreated = 'ha estat creada.';
|
||||
$strHasBeenDropped = 'ha estat eliminada.';
|
||||
$strHasBeenEmptied = 'ha estat buidada.';
|
||||
$strHome = 'Inici';
|
||||
$strHomepageOfficial = 'Plana oficial del phpMyAdmin';
|
||||
$strHomepageSourceforge = 'Plana de descàrrega del phpMyAdmin a SourceForge';
|
||||
$strHost = 'Servidor';
|
||||
$strHostEmpty = 'El nom del servidor ès buit!';
|
||||
|
||||
$strKeyname = "NomClau";
|
||||
$strKill = "Finalitzar";
|
||||
$strIfYouWish = 'Si només vols carregar algunes col.lumnes de la taula, especifica-ho amb una llista separada per comes.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexos';
|
||||
$strInsert = 'Inserta';
|
||||
$strInsertAsNewRow = 'Insertar com a nova fila';
|
||||
$strInsertIntoTable = 'Inserir a la taula';
|
||||
$strInsertNewRow = 'Inserir nova fila';
|
||||
$strInsertTextfiles = 'Inserir fitxers de text a la taula';
|
||||
$strInUse = 'en use';
|
||||
|
||||
$strLength = "Longitut";
|
||||
$strLengthSet = "Longitud";
|
||||
$strLimitNumRows = "registres per plana";
|
||||
$strLineFeed = "Salt de línia: \\n";
|
||||
$strLines = "Línies";
|
||||
$strLocationTextfile = "Ubicació del fitxer de text";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Sortir"; //to translate
|
||||
$strKeyname = 'NomClau';
|
||||
$strKill = 'Finalitzar';
|
||||
|
||||
$strModifications = "Les modificacions han estat guardades";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL reiniciat.";
|
||||
$strMySQLSaid = "MySQL diu: ";
|
||||
$strMySQLShowProcess = "Mostrar processos";
|
||||
$strMySQLShowStatus = "Mostra la informació de funcionament del MySQL";
|
||||
$strMySQLShowVars = "Mostra les variables de sistema del MySQL";
|
||||
$strLength = 'Longitut';
|
||||
$strLengthSet = 'Longitud';
|
||||
$strLimitNumRows = 'registres per plana';
|
||||
$strLineFeed = 'Salt de línia: \\n';
|
||||
$strLines = 'Línies';
|
||||
$strLocationTextfile = 'Ubicació del fitxer de text';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Sortir';
|
||||
|
||||
$strName = "Nom";
|
||||
$strNext = "Següent";
|
||||
$strNo = "No";
|
||||
$strNoPassword = "Sense contrassenya";
|
||||
$strNoPrivileges = "Sense privilegis";
|
||||
$strNoRights = "No tens prou privilegis per visualitzar aquesta informació!";
|
||||
$strNoTablesFound = "Base de dades sense taules.";
|
||||
$strNoUsersFound = "No s'han trobat usuaris.";
|
||||
$strNull = "Nul";
|
||||
$strNumberIndexes = " Número d'indexs avançats ";
|
||||
$strModifications = 'Les modificacions han estat guardades';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL reiniciat.';
|
||||
$strMySQLSaid = 'MySQL diu: ';
|
||||
$strMySQLShowProcess = 'Mostrar processos';
|
||||
$strMySQLShowStatus = 'Mostra la informació de funcionament del MySQL';
|
||||
$strMySQLShowVars = 'Mostra les variables de sistema del MySQL';
|
||||
|
||||
$strOftenQuotation = "Marques sintàctiques. OPCIONALMENT vol dir que només els camps de tipus char i varchar van \"tancats dins\" \"-aquest caràcter.";
|
||||
$strOptimizeTable = "Optimitza la taula";
|
||||
$strOptionalControls = "Opcional. Controla com llegir o escriure caràcters especials.";
|
||||
$strOptionally = "OPCIONALMENT";
|
||||
$strOr = "O";
|
||||
$strOverhead = "Overhead";
|
||||
$strName = 'Nom';
|
||||
$strNbRecords = 'Número de files ';
|
||||
$strNext = 'Següent';
|
||||
$strNo = 'No';
|
||||
$strNoPassword = 'Sense contrassenya';
|
||||
$strNoPrivileges = 'Sense privilegis';
|
||||
$strNoRights = 'No tens prou privilegis per visualitzar aquesta informació!';
|
||||
$strNoTablesFound = 'Base de dades sense taules.';
|
||||
$strNotNumber = 'Aquest valor no és un número!';
|
||||
$strNotValidNumber = ' no es un número de col.lumna vàlid!';
|
||||
$strNoUsersFound = 'No s\'han trobat usuaris.';
|
||||
$strNull = 'Nul';
|
||||
$strNumberIndexes = ' Número d\'indexs avançats ';
|
||||
|
||||
$strPassword = "Contrasenya";
|
||||
$strPasswordEmpty = "La contrasenya és buida!";
|
||||
$strPasswordNotSame = "Les contrasenyes no coincideixen!";
|
||||
$strPHPVersion = "PHP versió"; //to translate
|
||||
$strPos1 = "Inici";
|
||||
$strPrevious = "Anterior";
|
||||
$strPrimary = "Primària";
|
||||
$strPrimaryKey = "Clau Primària";
|
||||
$strPrinterFriendly = "Versió imprimible de la taula";
|
||||
$strPrintView = "Imprimir vista";
|
||||
$strPrivileges = "Privilegis";
|
||||
$strProducedAnError = "ha produït una errada.";
|
||||
$strProperties = "Propietats";
|
||||
$strOffSet = 'Offset';
|
||||
$strOftenQuotation = 'Marques sintàctiques. OPCIONALMENT vol dir que només els camps de tipus char i varchar van "tancats dins" "-aquest caràcter.';
|
||||
$strOptimizeTable = 'Optimitza la taula';
|
||||
$strOptionalControls = 'Opcional. Controla com llegir o escriure caràcters especials.';
|
||||
$strOptionally = 'OPCIONALMENT';
|
||||
$strOr = 'O';
|
||||
$strOverhead = 'Overhead';
|
||||
|
||||
$strQBE = "Consulta segons exemple";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Contrasenya';
|
||||
$strPasswordEmpty = 'La contrasenya és buida!';
|
||||
$strPasswordNotSame = 'Les contrasenyes no coincideixen!';
|
||||
$strPHPVersion = 'PHP versió';
|
||||
$strPos1 = 'Inici';
|
||||
$strPrevious = 'Anterior';
|
||||
$strPrimary = 'Primària';
|
||||
$strPrimaryKey = 'Clau Primària';
|
||||
$strPrinterFriendly = 'Versió imprimible de la taula';
|
||||
$strPrintView = 'Imprimir vista';
|
||||
$strPrivileges = 'Privilegis';
|
||||
$strProducedAnError = 'ha produït una errada.';
|
||||
$strProperties = 'Propietats';
|
||||
|
||||
$strReadTheDocs = "Llegeix la documentació";
|
||||
$strRecords = "Registres";
|
||||
$strReloadFailed = "El reinici del MySQL ha fallat";
|
||||
$strReloadMySQL = "Rellegir el MySQL";
|
||||
$strRememberReload = "Recorda reiniciar el MySQL";
|
||||
$strRenameTable = "Renombrar les taules a";
|
||||
$strRenameTableOK = "La taula %s ha canviat de nom. Ara es diu %s";
|
||||
$strRepairTable = "Reparar taula";
|
||||
$strReplace = "Substituïr";
|
||||
$strReplaceTable = "Substituïr les dades de la taula pel fitxer ";
|
||||
$strReset = "Esborrar";
|
||||
$strReType = "Re-escriure";
|
||||
$strRevoke = "Revocar";
|
||||
$strRevokeGrant = "Revocar garantia";
|
||||
$strRevokeGrantMessage = "Has revocat la garantia de privilegis per a";
|
||||
$strRevokeMessage = "Has revocat els privilegis per";
|
||||
$strRevokePriv = "Revocar privilegis";
|
||||
$strRowLength = "Longitud de fila";
|
||||
$strRows = "Fila";
|
||||
$strRowsFrom = "Files començant des de";
|
||||
$strRowsStatistic = "Estadística de files";
|
||||
$strRunning = "funcionant a ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Executa la comanda SQL a la base de dades ";
|
||||
$strQBE = 'Consulta segons exemple';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Guardar";
|
||||
$strSelect = "Sel·lecciona";
|
||||
$strSelectFields = "Sel·lecciona els camps (un com a mínim):";
|
||||
$strSelectNumRows = "en consulta";
|
||||
$strSend = "enviar";
|
||||
$strSequence = "Seq.";
|
||||
$strServerVersion = "Versió del servidor";
|
||||
$strShow = "Mostra";
|
||||
$strShowingRecords = "Mostrant registres: ";
|
||||
$strSingly = "(singly)";
|
||||
$strSize = "Mida"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Utilització d'espai";
|
||||
$strSQLQuery = "crida SQL";
|
||||
$strStatement = "Sentències";
|
||||
$strStrucCSV = "dades CSV ";
|
||||
$strStrucData = "Estructura i dades";
|
||||
$strStrucDrop = "Afegir 'drop table'";
|
||||
$strStrucOnly = "Només l'estructura";
|
||||
$strSubmit = "Enviar";
|
||||
$strSuccess = "La vostra comanda SQL ha estat executada amb èxit";
|
||||
$strSum = "Suma";
|
||||
$strReadTheDocs = 'Llegeix la documentació';
|
||||
$strRecords = 'Registres';
|
||||
$strReloadFailed = 'El reinici del MySQL ha fallat';
|
||||
$strReloadMySQL = 'Rellegir el MySQL';
|
||||
$strRememberReload = 'Recorda reiniciar el MySQL';
|
||||
$strRenameTable = 'Renombrar les taules a';
|
||||
$strRenameTableOK = 'La taula %s ha canviat de nom. Ara es diu %s';
|
||||
$strRepairTable = 'Reparar taula';
|
||||
$strReplace = 'Substituïr';
|
||||
$strReplaceTable = 'Substituïr les dades de la taula pel fitxer ';
|
||||
$strReset = 'Esborrar';
|
||||
$strReType = 'Re-escriure';
|
||||
$strRevoke = 'Revocar';
|
||||
$strRevokeGrant = 'Revocar garantia';
|
||||
$strRevokeGrantMessage = 'Has revocat la garantia de privilegis per a';
|
||||
$strRevokeMessage = 'Has revocat els privilegis per';
|
||||
$strRevokePriv = 'Revocar privilegis';
|
||||
$strRowLength = 'Longitud de fila';
|
||||
$strRows = 'Fila';
|
||||
$strRowsFrom = 'Files començant des de';
|
||||
$strRowSize = ' tamany de fila ';
|
||||
$strRowsStatistic = 'Estadística de files';
|
||||
$strRunning = 'funcionant a ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Executa la comanda SQL a la base de dades ';
|
||||
|
||||
$strTable = "taula ";
|
||||
$strTableComments = "Comentaris de la taula";
|
||||
$strTableEmpty = "El nom de la taula és buit!";
|
||||
$strTableMaintenance = "Manteniment de la taula";
|
||||
$strTableStructure = "Estructura de la taula";
|
||||
$strTableType = "Tipus de taula";
|
||||
$strTerminatedBy = "acabat per";
|
||||
$strTextAreaLength = " A causa de la seva longitud,<br> aquest camp pot no ser editable ";
|
||||
$strTheContent = "El contingut del fitxer especificat ha estat inserit.";
|
||||
$strTheContents = "El contingut del fitxer substituïrà els continguts de les taules sel.leccionades a les files que contenen la mateixa clau única o primària";
|
||||
$strTheTerminator = "El separador de camps.";
|
||||
$strTotal = "total";
|
||||
$strType = "Tipus";
|
||||
$strSave = 'Guardar';
|
||||
$strSelect = 'Sel·lecciona';
|
||||
$strSelectFields = 'Sel·lecciona els camps (un com a mínim):';
|
||||
$strSelectNumRows = 'en consulta';
|
||||
$strSend = 'enviar';
|
||||
$strSequence = 'Seq.';
|
||||
$strServerVersion = 'Versió del servidor';
|
||||
$strShow = 'Mostra';
|
||||
$strShowingRecords = 'Mostrant registres: ';
|
||||
$strSingly = '(singly)';
|
||||
$strSize = 'Mida';
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Utilització d\'espai';
|
||||
$strSQLQuery = 'crida SQL';
|
||||
$strStatement = 'Sentències';
|
||||
$strStrucCSV = 'dades CSV ';
|
||||
$strStrucData = 'Estructura i dades';
|
||||
$strStrucDrop = 'Afegir \'drop table\'';
|
||||
$strStrucOnly = 'Només l\'estructura';
|
||||
$strSubmit = 'Enviar';
|
||||
$strSuccess = 'La vostra comanda SQL ha estat executada amb èxit';
|
||||
$strSum = 'Suma';
|
||||
|
||||
$strUncheckAll = "Descel.leccionar tot"; //to translate
|
||||
$strUnique = "Única";
|
||||
$strUpdatePassMessage = "Heu actualitzat la contrasenya de ";
|
||||
$strUpdatePassword = "Actualitzar contrasenya";
|
||||
$strUpdatePrivMessage = "Heu actualitzat els privilegis de ";
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Ús";
|
||||
$strUser = "Usuari";
|
||||
$strUserEmpty = "El nom d'usuari és buit!";
|
||||
$strUserName = "Nom d'usuari";
|
||||
$strUsers = "Usuaris";
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'taula ';
|
||||
$strTableComments = 'Comentaris de la taula';
|
||||
$strTableEmpty = 'El nom de la taula és buit!';
|
||||
$strTableMaintenance = 'Manteniment de la taula';
|
||||
$strTableStructure = 'Estructura de la taula';
|
||||
$strTableType = 'Tipus de taula';
|
||||
$strTerminatedBy = 'acabat per';
|
||||
$strTextAreaLength = ' A causa de la seva longitud,<br /> aquest camp pot no ser editable ';
|
||||
$strTheContent = 'El contingut del fitxer especificat ha estat inserit.';
|
||||
$strTheContents = 'El contingut del fitxer substituïrà els continguts de les taules sel.leccionades a les files que contenen la mateixa clau única o primària';
|
||||
$strTheTerminator = 'El separador de camps.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Tipus';
|
||||
|
||||
$strValue = "Valor";
|
||||
$strViewDump = "Veure un esquema de la taula";
|
||||
$strViewDumpDB = "Veure l'esquema de la base de dades";
|
||||
$strUncheckAll = 'Descel.leccionar tot';
|
||||
$strUnique = 'Única';
|
||||
$strUpdatePassMessage = 'Heu actualitzat la contrasenya de ';
|
||||
$strUpdatePassword = 'Actualitzar contrasenya';
|
||||
$strUpdatePrivMessage = 'Heu actualitzat els privilegis de ';
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Ús';
|
||||
$strUser = 'Usuari';
|
||||
$strUserEmpty = 'El nom d\'usuari és buit!';
|
||||
$strUserName = 'Nom d\'usuari';
|
||||
$strUsers = 'Usuaris';
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Benvingut a ";
|
||||
$strWrongUser = "Usuari i/o clau erronis. Access denegat.";
|
||||
$strValue = 'Valor';
|
||||
$strViewDump = 'Veure un esquema de la taula';
|
||||
$strViewDumpDB = 'Veure l\'esquema de la base de dades';
|
||||
|
||||
$strYes = "Si";
|
||||
$strWelcome = 'Benvingut a ';
|
||||
$strWrongUser = 'Usuari i/o clau erronis. Access denegat.';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binari ";
|
||||
$strBinaryDoNotEdit=" Binari - no editeu ";
|
||||
$strEnglishPrivileges=" Nota: Els noms dels privilegis del MySQL són en llengua anglesa ";
|
||||
$strNotNumber = "Aquest valor no és un número!";
|
||||
$strNotValidNumber = " no es un número de col.lumna vàlid!";
|
||||
$strYes = 'Si';
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"comprimit amb bzip\"";
|
||||
$strGzip = "\"comprimit amb gzip\"";
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "Número de files ";
|
||||
$strRowSize=" tamany de fila ";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strShowThisQuery = ' Show this query here again ';
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "big5";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'big5';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "訪問被拒絕";
|
||||
$strAction = "執行操作";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "添加新字段";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "添加檢索條件 (\"where\" 語句的主體):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "已經添加了一個索引於 ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "已經建立了一個主鍵於 ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "屬性";
|
||||
|
||||
$strBack = "返回";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "瀏覽";
|
||||
$strAccessDenied = '訪問被拒絕';
|
||||
$strAction = '執行操作';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = '添加新字段';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = '添加檢索條件 ("where" 語句的主體):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = '已經添加了一個索引於 ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = '已經建立了一個主鍵於 ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = '屬性';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "回車: \\r";
|
||||
$strChange = "改變";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "字段名";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "復制數據表為:";
|
||||
$strCopyTableOK = "數據表 %s 已經成功復制為 %s。";
|
||||
$strCreate = "建立";
|
||||
$strCreateNewDatabase = "建立一個新的數據庫";
|
||||
$strCreateNewTable = "建立一個新的數據表與數據庫 ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = '返回';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = '瀏覽';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "數據庫 ";
|
||||
$strDatabases = "數據庫";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "缺省值";
|
||||
$strDelete = "刪除";
|
||||
$strDeleted = "該記錄已經被刪除。";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "請執行 \"查詢示例\" (通配符: \"%\")";
|
||||
$strDocu = "文檔";
|
||||
$strDoYouReally = "請確認要 ";
|
||||
$strDrop = "丟棄";
|
||||
$strDropDB = "丟棄數據庫 ";
|
||||
$strDumpingData = "導出下面的數據庫內容";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = '回車: \\r';
|
||||
$strChange = '改變';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = '字段名';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = '復制數據表為:';
|
||||
$strCopyTableOK = '數據表 %s 已經成功復制為 %s。';
|
||||
$strCreate = '建立';
|
||||
$strCreateNewDatabase = '建立一個新的數據庫';
|
||||
$strCreateNewTable = '建立一個新的數據表與數據庫 ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "編輯";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "清空";
|
||||
$strEmptyResultSet = "MySQL 返回的查詢結果為空。 (原因可能為:沒有找到符合條件的記錄。)";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "由何字符括起來";
|
||||
$strEnd = "結束";
|
||||
$strError = "錯誤";
|
||||
$strEscapedBy = "轉義符";
|
||||
$strExtra = "額外";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = '數據庫 ';
|
||||
$strDatabases = '數據庫';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = '缺省值';
|
||||
$strDelete = '刪除';
|
||||
$strDeleted = '該記錄已經被刪除。';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = '請執行 "查詢示例" (通配符: "%")';
|
||||
$strDocu = '文檔';
|
||||
$strDoYouReally = '請確認要 ';
|
||||
$strDrop = '丟棄';
|
||||
$strDropDB = '丟棄數據庫 ';
|
||||
$strDumpingData = '導出下面的數據庫內容';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "字段";
|
||||
$strFields = "字段";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "功能";
|
||||
$strEdit = '編輯';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = '清空';
|
||||
$strEmptyResultSet = 'MySQL 返回的查詢結果為空。 (原因可能為:沒有找到符合條件的記錄。)';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = '由何字符括起來';
|
||||
$strEnd = '結束';
|
||||
$strError = '錯誤';
|
||||
$strEscapedBy = '轉義符';
|
||||
$strExtra = '額外';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "開始";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = '字段';
|
||||
$strFields = '字段';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = '功能';
|
||||
|
||||
$strHasBeenAltered = "已經被修改。";
|
||||
$strHasBeenCreated = "已經建立。";
|
||||
$strHasBeenDropped = "已經被丟棄。";
|
||||
$strHasBeenEmptied = "已經被清空。";
|
||||
$strHome = "主目錄";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "主機";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = '開始';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "如果你要指定調入的字段,那麼請給出用逗號隔開的字段列表。";
|
||||
$strIndex = "索引";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "插入";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "插入於數據表";
|
||||
$strInsertNewRow = "插入新記錄";
|
||||
$strInsertTextfiles = "從文本文件中提取數據,插入到數據表:";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = '已經被修改。';
|
||||
$strHasBeenCreated = '已經建立。';
|
||||
$strHasBeenDropped = '已經被丟棄。';
|
||||
$strHasBeenEmptied = '已經被清空。';
|
||||
$strHome = '主目錄';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = '主機';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "鍵名";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = '如果你要指定調入的字段,那麼請給出用逗號隔開的字段列表。';
|
||||
$strIndex = '索引';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = '插入';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = '插入於數據表';
|
||||
$strInsertNewRow = '插入新記錄';
|
||||
$strInsertTextfiles = '從文本文件中提取數據,插入到數據表:';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "長度/Set";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "換行:\\n";
|
||||
$strLines = "行數 ";
|
||||
$strLocationTextfile = "文本文件的位置";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "退出繫統";
|
||||
$strKeyname = '鍵名';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "修改後的數據已經存盤。";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL 重新啟動完成。";
|
||||
$strMySQLSaid = "MySQL 返回:";
|
||||
$strMySQLShowProcess = "顯示進程";
|
||||
$strMySQLShowStatus = "顯示 MySQL 的運行信息";
|
||||
$strMySQLShowVars = "顯示 MySQL 的繫統變量";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = '長度/Set';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = '換行:\\n';
|
||||
$strLines = '行數 ';
|
||||
$strLocationTextfile = '文本文件的位置';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = '退出繫統';
|
||||
|
||||
$strName = "名字";
|
||||
$strNext = "下一個";
|
||||
$strNo = "否";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "數據庫中沒有數據表。";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = '修改後的數據已經存盤。';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL 重新啟動完成。';
|
||||
$strMySQLSaid = 'MySQL 返回:';
|
||||
$strMySQLShowProcess = '顯示進程';
|
||||
$strMySQLShowStatus = '顯示 MySQL 的運行信息';
|
||||
$strMySQLShowVars = '顯示 MySQL 的繫統變量';
|
||||
|
||||
$strOftenQuotation = "通常為引號。 ”選中“ 表示使用引號。因為隻有 char 和 varchar 類型的數據需要用引號括起來。";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "可選。用於讀取或寫入特殊的字符。";
|
||||
$strOptionally = "選中";
|
||||
$strOr = "Or"; //to translate
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = '名字';
|
||||
$strNext = '下一個';
|
||||
$strNo = '否';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = '數據庫中沒有數據表。';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "開始";
|
||||
$strPrevious = "前一個";
|
||||
$strPrimary = "鍵名";
|
||||
$strPrimaryKey = "主鍵";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "產生一個錯誤。";
|
||||
$strProperties = "屬性";
|
||||
$strOftenQuotation = '通常為引號。 ”選中“ 表示使用引號。因為隻有 char 和 varchar 類型的數據需要用引號括起來。';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = '可選。用於讀取或寫入特殊的字符。';
|
||||
$strOptionally = '選中';
|
||||
$strOr = 'Or'; //to translate
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "查詢模板";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = '開始';
|
||||
$strPrevious = '前一個';
|
||||
$strPrimary = '鍵名';
|
||||
$strPrimaryKey = '主鍵';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = '產生一個錯誤。';
|
||||
$strProperties = '屬性';
|
||||
|
||||
$strReadTheDocs = "參照以下文檔 ";
|
||||
$strRecords = "記錄";
|
||||
$strReloadFailed = "MySQL 重起失敗。";
|
||||
$strReloadMySQL = "重起 MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "將數據表改名為";
|
||||
$strRenameTableOK = "數據表 %s 名字已經被該成 %s。";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "替換";
|
||||
$strReplaceTable = "將數據表的數據用以下文本文件替換:";
|
||||
$strReset = "重置";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "運行於 ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "在下面指定的數據庫中運行 SQL 語句: ";
|
||||
$strQBE = '查詢模板';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "存儲";
|
||||
$strSelect = "選擇";
|
||||
$strSelectFields = "至少選擇一個字段:";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "發送";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Show"; //to translate
|
||||
$strShowingRecords = "顯示記錄 ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL 語句";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV 數據";
|
||||
$strStrucData = "結構和數據";
|
||||
$strStrucDrop = "添加 'drop table'";
|
||||
$strStrucOnly = "隻選擇結構";
|
||||
$strSubmit = "發送";
|
||||
$strSuccess = "你運行的 SQL 語句已經成功運行了。";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = '參照以下文檔 ';
|
||||
$strRecords = '記錄';
|
||||
$strReloadFailed = 'MySQL 重起失敗。';
|
||||
$strReloadMySQL = '重起 MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = '將數據表改名為';
|
||||
$strRenameTableOK = '數據表 %s 名字已經被該成 %s。';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = '替換';
|
||||
$strReplaceTable = '將數據表的數據用以下文本文件替換:';
|
||||
$strReset = '重置';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = '運行於 ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = '在下面指定的數據庫中運行 SQL 語句: ';
|
||||
|
||||
$strTable = "數據表 ";
|
||||
$strTableComments = "Table comments"; //to translate
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "數據表的結構";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "語句結束符:";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "文件中的內容已經插入到數據表中。";
|
||||
$strTheContents = "文件中的內容將會取代 所選定的數據表中具有 相同的主鍵或唯一鍵的 記錄。";
|
||||
$strTheTerminator = "這些字段的結束符";
|
||||
$strTotal = "總計";
|
||||
$strType = "類型";
|
||||
$strSave = '存儲';
|
||||
$strSelect = '選擇';
|
||||
$strSelectFields = '至少選擇一個字段:';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = '發送';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Show'; //to translate
|
||||
$strShowingRecords = '顯示記錄 ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL 語句';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV 數據';
|
||||
$strStrucData = '結構和數據';
|
||||
$strStrucDrop = '添加 \'drop table\'';
|
||||
$strStrucOnly = '隻選擇結構';
|
||||
$strSubmit = '發送';
|
||||
$strSuccess = '你運行的 SQL 語句已經成功運行了。';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "唯一";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = '數據表 ';
|
||||
$strTableComments = 'Table comments'; //to translate
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = '數據表的結構';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = '語句結束符:';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = '文件中的內容已經插入到數據表中。';
|
||||
$strTheContents = '文件中的內容將會取代 所選定的數據表中具有 相同的主鍵或唯一鍵的 記錄。';
|
||||
$strTheTerminator = '這些字段的結束符';
|
||||
$strTotal = '總計';
|
||||
$strType = '類型';
|
||||
|
||||
$strValue = "值";
|
||||
$strViewDump = "查看數據表的結構和摘要信息。";
|
||||
$strViewDumpDB = "查看數據庫的結構和摘要信息。";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = '唯一';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "歡迎使用 ";
|
||||
$strWrongUser = "密碼錯誤,訪問被拒絕。";
|
||||
$strValue = '值';
|
||||
$strViewDump = '查看數據表的結構和摘要信息。';
|
||||
$strViewDumpDB = '查看數據庫的結構和摘要信息。';
|
||||
|
||||
$strYes = "是";
|
||||
$strWelcome = '歡迎使用 ';
|
||||
$strWrongUser = '密碼錯誤,訪問被拒絕。';
|
||||
|
||||
$strYes = '是';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "gb2312";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'gb2312';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "访问被拒绝";
|
||||
$strAction = "执行操作";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "添加新字段";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "添加检索条件 (\"where\" 语句的主体):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "已经添加了一个索引于 ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "已经建立了一个主键于 ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "属性";
|
||||
|
||||
$strBack = "返回";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "浏览";
|
||||
$strAccessDenied = '访问被拒绝';
|
||||
$strAction = '执行操作';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = '添加新字段';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = '添加检索条件 ("where" 语句的主体):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = '已经添加了一个索引于 ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = '已经建立了一个主键于 ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = '属性';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "回车: \\r";
|
||||
$strChange = "改变";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "字段名";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "复制数据表为:";
|
||||
$strCopyTableOK = "数据表 %s 已经成功复制为 %s。";
|
||||
$strCreate = "建立";
|
||||
$strCreateNewDatabase = "建立一个新的数据库";
|
||||
$strCreateNewTable = "建立一个新的数据表与数据库 ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = '返回';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = '浏览';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "数据库 ";
|
||||
$strDatabases = "数据库";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "缺省值";
|
||||
$strDelete = "删除";
|
||||
$strDeleted = "该记录已经被删除。";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "请执行 \"查询示例\" (通配符: \"%\")";
|
||||
$strDocu = "文档";
|
||||
$strDoYouReally = "请确认要 ";
|
||||
$strDrop = "丢弃";
|
||||
$strDropDB = "丢弃数据库 ";
|
||||
$strDumpingData = "导出下面的数据库内容";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = '回车: \\r';
|
||||
$strChange = '改变';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = '字段名';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = '复制数据表为:';
|
||||
$strCopyTableOK = '数据表 %s 已经成功复制为 %s。';
|
||||
$strCreate = '建立';
|
||||
$strCreateNewDatabase = '建立一个新的数据库';
|
||||
$strCreateNewTable = '建立一个新的数据表与数据库 ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "编辑";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "清空";
|
||||
$strEmptyResultSet = "MySQL 返回的查询结果为空。 (原因可能为:没有找到符合条件的记录。)";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "由何字符括起来";
|
||||
$strEnd = "结束";
|
||||
$strError = "错误";
|
||||
$strEscapedBy = "转义符";
|
||||
$strExtra = "额外";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = '数据库 ';
|
||||
$strDatabases = '数据库';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = '缺省值';
|
||||
$strDelete = '删除';
|
||||
$strDeleted = '该记录已经被删除。';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = '请执行 "查询示例" (通配符: "%")';
|
||||
$strDocu = '文档';
|
||||
$strDoYouReally = '请确认要 ';
|
||||
$strDrop = '丢弃';
|
||||
$strDropDB = '丢弃数据库 ';
|
||||
$strDumpingData = '导出下面的数据库内容';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "字段";
|
||||
$strFields = "字段";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "功能";
|
||||
$strEdit = '编辑';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = '清空';
|
||||
$strEmptyResultSet = 'MySQL 返回的查询结果为空。 (原因可能为:没有找到符合条件的记录。)';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = '由何字符括起来';
|
||||
$strEnd = '结束';
|
||||
$strError = '错误';
|
||||
$strEscapedBy = '转义符';
|
||||
$strExtra = '额外';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "开始";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = '字段';
|
||||
$strFields = '字段';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = '功能';
|
||||
|
||||
$strHasBeenAltered = "已经被修改。";
|
||||
$strHasBeenCreated = "已经建立。";
|
||||
$strHasBeenDropped = "已经被丢弃。";
|
||||
$strHasBeenEmptied = "已经被清空。";
|
||||
$strHome = "主目录";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "主机";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = '开始';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "如果你要指定调入的字段,那么请给出用逗号隔开的字段列表。";
|
||||
$strIndex = "索引";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "插入";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "插入于数据表";
|
||||
$strInsertNewRow = "插入新记录";
|
||||
$strInsertTextfiles = "从文本文件中提取数据,插入到数据表:";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = '已经被修改。';
|
||||
$strHasBeenCreated = '已经建立。';
|
||||
$strHasBeenDropped = '已经被丢弃。';
|
||||
$strHasBeenEmptied = '已经被清空。';
|
||||
$strHome = '主目录';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = '主机';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "键名";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = '如果你要指定调入的字段,那么请给出用逗号隔开的字段列表。';
|
||||
$strIndex = '索引';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = '插入';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = '插入于数据表';
|
||||
$strInsertNewRow = '插入新记录';
|
||||
$strInsertTextfiles = '从文本文件中提取数据,插入到数据表:';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "长度/Set";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "换行:\\n";
|
||||
$strLines = "行数 ";
|
||||
$strLocationTextfile = "文本文件的位置";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "退出系统";
|
||||
$strKeyname = '键名';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "修改后的数据已经存盘。";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL 重新启动完成。";
|
||||
$strMySQLSaid = "MySQL 返回:";
|
||||
$strMySQLShowProcess = "显示进程";
|
||||
$strMySQLShowStatus = "显示 MySQL 的运行信息";
|
||||
$strMySQLShowVars = "显示 MySQL 的系统变量";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = '长度/Set';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = '换行:\\n';
|
||||
$strLines = '行数 ';
|
||||
$strLocationTextfile = '文本文件的位置';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = '退出系统';
|
||||
|
||||
$strName = "名字";
|
||||
$strNext = "下一个";
|
||||
$strNo = "否";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "数据库中没有数据表。";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = '修改后的数据已经存盘。';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL 重新启动完成。';
|
||||
$strMySQLSaid = 'MySQL 返回:';
|
||||
$strMySQLShowProcess = '显示进程';
|
||||
$strMySQLShowStatus = '显示 MySQL 的运行信息';
|
||||
$strMySQLShowVars = '显示 MySQL 的系统变量';
|
||||
|
||||
$strOftenQuotation = "通常为引号。 ”选中“ 表示使用引号。因为只有 char 和 varchar 类型的数据需要用引号括起来。";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "可选。用于读取或写入特殊的字符。";
|
||||
$strOptionally = "选中";
|
||||
$strOr = "Or"; //to translate
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = '名字';
|
||||
$strNext = '下一个';
|
||||
$strNo = '否';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = '数据库中没有数据表。';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "开始";
|
||||
$strPrevious = "前一个";
|
||||
$strPrimary = "键名";
|
||||
$strPrimaryKey = "主键";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "产生一个错误。";
|
||||
$strProperties = "属性";
|
||||
$strOftenQuotation = '通常为引号。 ”选中“ 表示使用引号。因为只有 char 和 varchar 类型的数据需要用引号括起来。';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = '可选。用于读取或写入特殊的字符。';
|
||||
$strOptionally = '选中';
|
||||
$strOr = 'Or'; //to translate
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "查询模板";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = '开始';
|
||||
$strPrevious = '前一个';
|
||||
$strPrimary = '键名';
|
||||
$strPrimaryKey = '主键';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = '产生一个错误。';
|
||||
$strProperties = '属性';
|
||||
|
||||
$strReadTheDocs = "参照以下文档 ";
|
||||
$strRecords = "记录";
|
||||
$strReloadFailed = "MySQL 重起失败。";
|
||||
$strReloadMySQL = "重起 MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "将数据表改名为";
|
||||
$strRenameTableOK = "数据表 %s 名字已经被该成 %s。";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "替换";
|
||||
$strReplaceTable = "将数据表的数据用以下文本文件替换:";
|
||||
$strReset = "重置";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "运行于 ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "在下面指定的数据库中运行 SQL 语句: ";
|
||||
$strQBE = '查询模板';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "存储";
|
||||
$strSelect = "选择";
|
||||
$strSelectFields = "至少选择一个字段:";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "发送";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Show"; //to translate
|
||||
$strShowingRecords = "显示记录 ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL 语句";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV 数据";
|
||||
$strStrucData = "结构和数据";
|
||||
$strStrucDrop = "添加 'drop table'";
|
||||
$strStrucOnly = "只选择结构";
|
||||
$strSubmit = "发送";
|
||||
$strSuccess = "你运行的 SQL 语句已经成功运行了。";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = '参照以下文档 ';
|
||||
$strRecords = '记录';
|
||||
$strReloadFailed = 'MySQL 重起失败。';
|
||||
$strReloadMySQL = '重起 MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = '将数据表改名为';
|
||||
$strRenameTableOK = '数据表 %s 名字已经被该成 %s。';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = '替换';
|
||||
$strReplaceTable = '将数据表的数据用以下文本文件替换:';
|
||||
$strReset = '重置';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = '运行于 ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = '在下面指定的数据库中运行 SQL 语句: ';
|
||||
|
||||
$strTable = "数据表 ";
|
||||
$strTableComments = "Table comments"; //to translate
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "数据表的结构";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "语句结束符:";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "文件中的内容已经插入到数据表中。";
|
||||
$strTheContents = "文件中的内容将会取代 所选定的数据表中具有 相同的主键或唯一键的 记录。";
|
||||
$strTheTerminator = "这些字段的结束符";
|
||||
$strTotal = "总计";
|
||||
$strType = "类型";
|
||||
$strSave = '存储';
|
||||
$strSelect = '选择';
|
||||
$strSelectFields = '至少选择一个字段:';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = '发送';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Show'; //to translate
|
||||
$strShowingRecords = '显示记录 ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL 语句';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV 数据';
|
||||
$strStrucData = '结构和数据';
|
||||
$strStrucDrop = '添加 \'drop table\'';
|
||||
$strStrucOnly = '只选择结构';
|
||||
$strSubmit = '发送';
|
||||
$strSuccess = '你运行的 SQL 语句已经成功运行了。';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "唯一";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = '数据表 ';
|
||||
$strTableComments = 'Table comments'; //to translate
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = '数据表的结构';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = '语句结束符:';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = '文件中的内容已经插入到数据表中。';
|
||||
$strTheContents = '文件中的内容将会取代 所选定的数据表中具有 相同的主键或唯一键的 记录。';
|
||||
$strTheTerminator = '这些字段的结束符';
|
||||
$strTotal = '总计';
|
||||
$strType = '类型';
|
||||
|
||||
$strValue = "值";
|
||||
$strViewDump = "查看数据表的结构和摘要信息。";
|
||||
$strViewDumpDB = "查看数据库的结构和摘要信息。";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = '唯一';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "欢迎使用 ";
|
||||
$strWrongUser = "密码错误,访问被拒绝。";
|
||||
$strValue = '值';
|
||||
$strViewDump = '查看数据表的结构和摘要信息。';
|
||||
$strViewDumpDB = '查看数据库的结构和摘要信息。';
|
||||
|
||||
$strYes = "是";
|
||||
$strWelcome = '欢迎使用 ';
|
||||
$strWrongUser = '密码错误,访问被拒绝。';
|
||||
|
||||
$strYes = '是';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again ';
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,285 +1,286 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-2";
|
||||
$left_font_family = "verdana CE, Arial CE, verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "verdana CE, Arial CE, helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = " ";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bajtů", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-2';
|
||||
$left_font_family = 'verdana CE, Arial CE, verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'verdana CE, Arial CE, helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ' ';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bajtů', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Přístup odepřen";
|
||||
$strAction = "Akce";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Přidat nové pole";
|
||||
$strAddPriv = "Přidat nové privilegium";
|
||||
$strAddPrivMessage = "Privilegium bylo přidáno.";
|
||||
$strAddSearchConditions = "Přidat vyhledávací parametry (obsah dotazu po \"where\" příkazu):";
|
||||
$strAddUser = "Přidat nového uživatele";
|
||||
$strAddUserMessage = "Uživatel byl přidán.";
|
||||
$strAfter = "Po";
|
||||
$strAll = "Všechno";
|
||||
$strAlterOrderBy = "Změnit pořadí tabulky podle";
|
||||
$strAnalyzeTable = "Analyzovat tabulku";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Byl přidán index na ";
|
||||
$strAny = "Jakýkoliv";
|
||||
$strAnyColumn = "Jakýkoliv sloupec";
|
||||
$strAnyDatabase = "Jakákoliv databáze";
|
||||
$strAnyHost = "Jakýkoliv hostitel";
|
||||
$strAnyTable = "Any table";
|
||||
$strAnyUser = "Jakýkoliv uživatel";
|
||||
$strAPrimaryKey = "Byl přidán primární klíč na ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "Na začátku tabulky";
|
||||
$strAtEndOfTable = "Na konci tabulky";
|
||||
$strAttr = "Atributy";
|
||||
|
||||
$strBack = "Zpět";
|
||||
$strBinary = " Binární ";
|
||||
$strBinaryDoNotEdit = " Binární - neupravujte ";
|
||||
$strBookmarkLabel = "Název";
|
||||
$strBookmarkQuery = "Oblíbený SQL dotaz";
|
||||
$strBookmarkThis = "Přidat tento SQL dotaz do oblíbených";
|
||||
$strBookmarkView = "Jen prohlédnout";
|
||||
$strBrowse = "Projít";
|
||||
$strAccessDenied = 'Přístup odepřen';
|
||||
$strAction = 'Akce';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Přidat nové pole';
|
||||
$strAddPriv = 'Přidat nové privilegium';
|
||||
$strAddPrivMessage = 'Privilegium bylo přidáno.';
|
||||
$strAddSearchConditions = 'Přidat vyhledávací parametry (obsah dotazu po "where" příkazu):';
|
||||
$strAddUser = 'Přidat nového uživatele';
|
||||
$strAddUserMessage = 'Uživatel byl přidán.';
|
||||
$strAfter = 'Po';
|
||||
$strAll = 'Všechno';
|
||||
$strAlterOrderBy = 'Změnit pořadí tabulky podle';
|
||||
$strAnalyzeTable = 'Analyzovat tabulku';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Byl přidán index na ';
|
||||
$strAny = 'Jakýkoliv';
|
||||
$strAnyColumn = 'Jakýkoliv sloupec';
|
||||
$strAnyDatabase = 'Jakákoliv databáze';
|
||||
$strAnyHost = 'Jakýkoliv hostitel';
|
||||
$strAnyTable = 'Any table';
|
||||
$strAnyUser = 'Jakýkoliv uživatel';
|
||||
$strAPrimaryKey = 'Byl přidán primární klíč na ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'Na začátku tabulky';
|
||||
$strAtEndOfTable = 'Na konci tabulky';
|
||||
$strAttr = 'Atributy';
|
||||
|
||||
$strCantLoadMySQL = "nelze nahrát rozšíření pro MySQL,<br>prosím zkontrolujte nastavení PHP.";
|
||||
$strCarriage = "Návrat vozíku (CR): \\r";
|
||||
$strChange = "Změnit";
|
||||
$strCheckAll = "Zaškrtnout vše";
|
||||
$strCheckDbPriv = "Zkontrolovat privilegia databáze";
|
||||
$strCheckTable = "Zkontrolovat tabulku";
|
||||
$strColumn = "Sloupec";
|
||||
$strColumnEmpty = "Jména sloupců jsou prázdná!";
|
||||
$strColumnNames = "Názvy sloupců";
|
||||
$strCompleteInserts = "Uplné vloženi";
|
||||
$strConfirm = "Opravdu chcete toto provést?";
|
||||
$strCopyTable = "Zkopírovat tabulku do:";
|
||||
$strCopyTableOK = "Tabulka %s byla zkopírována do %s.";
|
||||
$strCreate = "Vytvořit";
|
||||
$strCreateNewDatabase = "Vytvořit novou databázi";
|
||||
$strCreateNewTable = "Vytvořit novou tabulku v databázi ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Zpět';
|
||||
$strBinary = ' Binární ';
|
||||
$strBinaryDoNotEdit = ' Binární - neupravujte ';
|
||||
$strBookmarkLabel = 'Název';
|
||||
$strBookmarkQuery = 'Oblíbený SQL dotaz';
|
||||
$strBookmarkThis = 'Přidat tento SQL dotaz do oblíbených';
|
||||
$strBookmarkView = 'Jen prohlédnout';
|
||||
$strBrowse = 'Projít';
|
||||
$strBzip = '"zabzipováno"';
|
||||
|
||||
$strData = "Data";
|
||||
$strDatabase = "Databáze ";
|
||||
$strDatabases = "databáze";
|
||||
$strDataOnly = " Jen data ";
|
||||
$strDbEmpty = "Jméno databáze je prázdné!";
|
||||
$strDefault = "Výchozí";
|
||||
$strDelete = "Smazat";
|
||||
$strDeleted = "Řádek byl smazán";
|
||||
$strDeleteFailed = "Smazání selhalo!";
|
||||
$strDeletePassword = "Smazat heslo";
|
||||
$strDeleteUserMessage = "Byl smazán uživatel";
|
||||
$strDelPassMessage = "Bylo smazáno heslo pro";
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Varování:</b> Zapnul jste magic_quotes_gpc v nastavení PHP. Tato verze PhpMyAdmina nemůže s tímto nastavením korektně pracovat. Prosím podívejte se do manuálu PHP (kapitola nastavení) jak toto nastavení změnit.";
|
||||
$strDisplay = "Zobraz";
|
||||
$strDoAQuery = "ProvéstDo a \"dotaz podle příkladu\" (žolík: \"%\")";
|
||||
$strDocu = "Dokumentace";
|
||||
$strDoYouReally = "Opravdu si přeješ vykonat příkaz ";
|
||||
$strDrop = "Odstranit";
|
||||
$strDropDB = "Odstranit databázi ";
|
||||
$strDumpingData = "Dumpuji data pro tabulku";
|
||||
$strDynamic = "dynamic";
|
||||
$strCantLoadMySQL = 'nelze nahrát rozšíření pro MySQL,<br />prosím zkontrolujte nastavení PHP.';
|
||||
$strCarriage = 'Návrat vozíku (CR): \\r';
|
||||
$strChange = 'Změnit';
|
||||
$strCheckAll = 'Zaškrtnout vše';
|
||||
$strCheckDbPriv = 'Zkontrolovat privilegia databáze';
|
||||
$strCheckTable = 'Zkontrolovat tabulku';
|
||||
$strColumn = 'Sloupec';
|
||||
$strColumnEmpty = 'Jména sloupců jsou prázdná!';
|
||||
$strColumnNames = 'Názvy sloupců';
|
||||
$strCompleteInserts = 'Uplné vloženi';
|
||||
$strConfirm = 'Opravdu chcete toto provést?';
|
||||
$strCopyTable = 'Zkopírovat tabulku do:';
|
||||
$strCopyTableOK = 'Tabulka %s byla zkopírována do %s.';
|
||||
$strCreate = 'Vytvořit';
|
||||
$strCreateNewDatabase = 'Vytvořit novou databázi';
|
||||
$strCreateNewTable = 'Vytvořit novou tabulku v databázi ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Editovat";
|
||||
$strEditPrivileges = "Upravit práva";
|
||||
$strEffective = "Efektivní";
|
||||
$strEmpty = "Vyprázdnit";
|
||||
$strEmptyResultSet = "MySQL vrátil prázdný výsledek (tj. nulový počet řádků).";
|
||||
$strEnableMagicQuotes = "<b>POZOR:</b> Nepovolil jsi 'magic_quotes_gpc' v tvé konfiguraci PHP enginu. PhpMyAdmin toto potřebuje pro svoji korektní praci. Prosím, zkontroluj konfiguraci popř. v manuálu pro PHP vyhledej informaci jak toto povolit.";
|
||||
$strEnclosedBy = "uzavřen do";
|
||||
$strEnd = "Konec";
|
||||
$strEnglishPrivileges = " Poznámka: názvy MySQL privilegií jsou uváděna v angličtině ";
|
||||
$strError = "Chyba";
|
||||
$strEscapedBy = "uvozeno pomocí";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Data';
|
||||
$strDatabase = 'Databáze ';
|
||||
$strDatabases = 'databáze';
|
||||
$strDataOnly = ' Jen data ';
|
||||
$strDbEmpty = 'Jméno databáze je prázdné!';
|
||||
$strDefault = 'Výchozí';
|
||||
$strDelete = 'Smazat';
|
||||
$strDeleted = 'Řádek byl smazán';
|
||||
$strDeleteFailed = 'Smazání selhalo!';
|
||||
$strDeletePassword = 'Smazat heslo';
|
||||
$strDeleteUserMessage = 'Byl smazán uživatel';
|
||||
$strDelPassMessage = 'Bylo smazáno heslo pro';
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Varování:</b> Zapnul jste magic_quotes_gpc v nastavení PHP. Tato verze PhpMyAdmina nemůže s tímto nastavením korektně pracovat. Prosím podívejte se do manuálu PHP (kapitola nastavení) jak toto nastavení změnit.';
|
||||
$strDisplay = 'Zobraz';
|
||||
$strDoAQuery = 'ProvéstDo a "dotaz podle příkladu" (žolík: "%")';
|
||||
$strDocu = 'Dokumentace';
|
||||
$strDoYouReally = 'Opravdu si přeješ vykonat příkaz ';
|
||||
$strDrop = 'Odstranit';
|
||||
$strDropDB = 'Odstranit databázi ';
|
||||
$strDumpingData = 'Dumpuji data pro tabulku';
|
||||
$strDynamic = 'dynamic';
|
||||
|
||||
$strField = "Pole";
|
||||
$strFields = "Počet polí";
|
||||
$strFixed = "pevný";
|
||||
$strFormat = "Formát";
|
||||
$strFunction = "Funkce";
|
||||
$strEdit = 'Editovat';
|
||||
$strEditPrivileges = 'Upravit práva';
|
||||
$strEffective = 'Efektivní';
|
||||
$strEmpty = 'Vyprázdnit';
|
||||
$strEmptyResultSet = 'MySQL vrátil prázdný výsledek (tj. nulový počet řádků).';
|
||||
$strEnableMagicQuotes = '<b>POZOR:</b> Nepovolil jsi \'magic_quotes_gpc\' v tvé konfiguraci PHP enginu. PhpMyAdmin toto potřebuje pro svoji korektní praci. Prosím, zkontroluj konfiguraci popř. v manuálu pro PHP vyhledej informaci jak toto povolit.';
|
||||
$strEnclosedBy = 'uzavřen do';
|
||||
$strEnd = 'Konec';
|
||||
$strEnglishPrivileges = ' Poznámka: názvy MySQL privilegií jsou uváděna v angličtině ';
|
||||
$strError = 'Chyba';
|
||||
$strEscapedBy = 'uvozeno pomocí';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Vygenerováno:";
|
||||
$strGo = "Proveď";
|
||||
$strGrants = "Privilegia";
|
||||
$strField = 'Pole';
|
||||
$strFields = 'Počet polí';
|
||||
$strFixed = 'pevný';
|
||||
$strFormat = 'Formát';
|
||||
$strFunction = 'Funkce';
|
||||
|
||||
$strHasBeenAltered = "byla změněna.";
|
||||
$strHasBeenCreated = "byla vytvořena.";
|
||||
$strHasBeenDropped = "byla odstraněna.";
|
||||
$strHasBeenEmptied = "byla vyprázdněna.";
|
||||
$strHome = "Úvod";
|
||||
$strHomepageOfficial = " Oficiální stránka phpMyAdmina ";
|
||||
$strHomepageSourceforge = " nová stránka phpMyAdmina ";
|
||||
$strHost = "Hostitel";
|
||||
$strHostEmpty = "Jméno hostitele je prázdné!";
|
||||
$strGenTime = 'Vygenerováno:';
|
||||
$strGo = 'Proveď';
|
||||
$strGrants = 'Privilegia';
|
||||
$strGzip = '"zagzipováno"';
|
||||
|
||||
$strIfYouWish = "Pokud si přeješ natáhnout jenom určité sloupce z tabulky, specifikuj je jako seznam polí oddělených čárkou.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexy";
|
||||
$strInsert = "Vložit";
|
||||
$strInsertAsNewRow = " Vložit jako nový řádek ";
|
||||
$strInsertIntoTable = "Vložit do tabulky";
|
||||
$strInsertNewRow = "Vložit nový řádek";
|
||||
$strInsertTextfiles = "Vložit textové soubory do tabulky";
|
||||
$strInUse = "právě se používá";
|
||||
$strHasBeenAltered = 'byla změněna.';
|
||||
$strHasBeenCreated = 'byla vytvořena.';
|
||||
$strHasBeenDropped = 'byla odstraněna.';
|
||||
$strHasBeenEmptied = 'byla vyprázdněna.';
|
||||
$strHome = 'Úvod';
|
||||
$strHomepageOfficial = ' Oficiální stránka phpMyAdmina ';
|
||||
$strHomepageSourceforge = ' nová stránka phpMyAdmina ';
|
||||
$strHost = 'Hostitel';
|
||||
$strHostEmpty = 'Jméno hostitele je prázdné!';
|
||||
|
||||
$strKeyname = "Klíčovy název";
|
||||
$strKill = " Zabít ";
|
||||
$strIfYouWish = 'Pokud si přeješ natáhnout jenom určité sloupce z tabulky, specifikuj je jako seznam polí oddělených čárkou.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexy';
|
||||
$strInsert = 'Vložit';
|
||||
$strInsertAsNewRow = ' Vložit jako nový řádek ';
|
||||
$strInsertIntoTable = 'Vložit do tabulky';
|
||||
$strInsertNewRow = 'Vložit nový řádek';
|
||||
$strInsertTextfiles = 'Vložit textové soubory do tabulky';
|
||||
$strInUse = 'právě se používá';
|
||||
|
||||
$strLength = "Délka";
|
||||
$strLengthSet = "Délka/Set";
|
||||
$strLimitNumRows = "záznamu na stránku";
|
||||
$strLineFeed = "Ukončení řádku (Linefeed): \\n";
|
||||
$strLines = "Řádek";
|
||||
$strLocationTextfile = "Umístění textového souboru";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Odhlásit se";
|
||||
$strKeyname = 'Klíčovy název';
|
||||
$strKill = ' Zabít ';
|
||||
|
||||
$strModifications = "Změny byly uloženy";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL znovu-načtena.";
|
||||
$strMySQLSaid = "MySQL hlásí: ";
|
||||
$strMySQLShowProcess = "Zobraz procesy";
|
||||
$strMySQLShowStatus = "Ukázat MySQL runtime informace";
|
||||
$strMySQLShowVars = "Ukázat MySQL systemove proměnné";
|
||||
$strLength = 'Délka';
|
||||
$strLengthSet = 'Délka/Set';
|
||||
$strLimitNumRows = 'záznamu na stránku';
|
||||
$strLineFeed = 'Ukončení řádku (Linefeed): \\n';
|
||||
$strLines = 'Řádek';
|
||||
$strLocationTextfile = 'Umístění textového souboru';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Odhlásit se';
|
||||
|
||||
$strName = "Název";
|
||||
$strNext = "Další";
|
||||
$strNo = "Ne";
|
||||
$strNoPassword = "Žádné heslo";
|
||||
$strNoPrivileges = "Žádná privilegia";
|
||||
$strNoRights = "Nemáte dostatečná práva na provedení této akce!";
|
||||
$strNoTablesFound = "V databázi nebyla nalezena ani jedna tabulka.";
|
||||
$strNotNumber = "Toto není číslo!";
|
||||
$strNotValidNumber = " není platné číslo řádku!";
|
||||
$strNoUsersFound = "Žádný uživatel nenalezen.";
|
||||
$strNull = "Nulový";
|
||||
$strNumberIndexes = " Počet rozšířených indexů ";
|
||||
$strModifications = 'Změny byly uloženy';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL znovu-načtena.';
|
||||
$strMySQLSaid = 'MySQL hlásí: ';
|
||||
$strMySQLShowProcess = 'Zobraz procesy';
|
||||
$strMySQLShowStatus = 'Ukázat MySQL runtime informace';
|
||||
$strMySQLShowVars = 'Ukázat MySQL systemove proměnné';
|
||||
|
||||
$strOftenQuotation = "Často uvozující znaky. OPTIONALLY znamená, že pouze pole typu CHAR a VARCHAR jsou uzavřeny do \"uzavíracích \" znaků.";
|
||||
$strOptimizeTable = "Optimalizovat tabulku";
|
||||
$strOptionalControls = "Volitelné. Určuje jak zapisovat nebo číst speciální znaky.";
|
||||
$strOptionally = "Volitelně";
|
||||
$strOr = "Nebo";
|
||||
$strOverhead = "Navíc";
|
||||
$strName = 'Název';
|
||||
$strNbRecords = 'řádků';
|
||||
$strNext = 'Další';
|
||||
$strNo = 'Ne';
|
||||
$strNoPassword = 'Žádné heslo';
|
||||
$strNoPrivileges = 'Žádná privilegia';
|
||||
$strNoRights = 'Nemáte dostatečná práva na provedení této akce!';
|
||||
$strNoTablesFound = 'V databázi nebyla nalezena ani jedna tabulka.';
|
||||
$strNotNumber = 'Toto není číslo!';
|
||||
$strNotValidNumber = ' není platné číslo řádku!';
|
||||
$strNoUsersFound = 'Žádný uživatel nenalezen.';
|
||||
$strNull = 'Nulový';
|
||||
$strNumberIndexes = ' Počet rozšířených indexů ';
|
||||
|
||||
$strPassword = "Heslo";
|
||||
$strPasswordEmpty = "Heslo je prázdné!";
|
||||
$strPasswordNotSame = "Hesla nejsou stejná!";
|
||||
$strPHPVersion = "Verze PHP Version";
|
||||
$strPos1 = "Začátek";
|
||||
$strPrevious = "Předchozí";
|
||||
$strPrimary = "Primární";
|
||||
$strPrimaryKey = "Primární klíč";
|
||||
$strPrinterFriendly = "Verze určená pro tisk";
|
||||
$strPrintView = "Náhled k vytištění";
|
||||
$strPrivileges = "Privilegia";
|
||||
$strProducedAnError = "vytvořil chybu.";
|
||||
$strProperties = "Vlastnosti";
|
||||
$strOffSet = 'Začátek';
|
||||
$strOftenQuotation = 'Často uvozující znaky. OPTIONALLY znamená, že pouze pole typu CHAR a VARCHAR jsou uzavřeny do "uzavíracích " znaků.';
|
||||
$strOptimizeTable = 'Optimalizovat tabulku';
|
||||
$strOptionalControls = 'Volitelné. Určuje jak zapisovat nebo číst speciální znaky.';
|
||||
$strOptionally = 'Volitelně';
|
||||
$strOr = 'Nebo';
|
||||
$strOverhead = 'Navíc';
|
||||
|
||||
$strQBE = "Dotaz podle příkladu";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Heslo';
|
||||
$strPasswordEmpty = 'Heslo je prázdné!';
|
||||
$strPasswordNotSame = 'Hesla nejsou stejná!';
|
||||
$strPHPVersion = 'Verze PHP Version';
|
||||
$strPos1 = 'Začátek';
|
||||
$strPrevious = 'Předchozí';
|
||||
$strPrimary = 'Primární';
|
||||
$strPrimaryKey = 'Primární klíč';
|
||||
$strPrinterFriendly = 'Verze určená pro tisk';
|
||||
$strPrintView = 'Náhled k vytištění';
|
||||
$strPrivileges = 'Privilegia';
|
||||
$strProducedAnError = 'vytvořil chybu.';
|
||||
$strProperties = 'Vlastnosti';
|
||||
|
||||
$strReadTheDocs = "Přečti dokumentaci";
|
||||
$strRecords = "Záznamů";
|
||||
$strReloadFailed = "Znovunačtení MySQL selhalo.";
|
||||
$strReloadMySQL = "Znovunačtení MySQL";
|
||||
$strRememberReload = "Nezapomeňte reloadovat server.";
|
||||
$strRenameTable = "Přejmenovat tabulku na";
|
||||
$strRenameTableOK = "Tabulka %s byla přejmenována na %s";
|
||||
$strRepairTable = "Opravit tabulku";
|
||||
$strReplace = "Přepsat";
|
||||
$strReplaceTable = "Přepsat data tabulky souborem";
|
||||
$strReset = "P§vodní (reset)";
|
||||
$strReType = "Napsat znovu";
|
||||
$strRevoke = "Zrušit";
|
||||
$strRevokeGrant = "Zrušit povolení přidělovat práva";
|
||||
$strRevokeGrantMessage = "Bylo zrušeno privilegium přidělovat práva pro";
|
||||
$strRevokeMessage = "Byla zrušena práva pro";
|
||||
$strRevokePriv = "Zrušit práva";
|
||||
$strRowLength = "Délka řádku";
|
||||
$strRows = "Řádků";
|
||||
$strRowsFrom = "řádků začínající od";
|
||||
$strRowsStatistic = "Statistika řádků";
|
||||
$strRunning = "běžící na ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Spusť SQL dotaz(y) na databázi ";
|
||||
$strQBE = 'Dotaz podle příkladu';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Ulož";
|
||||
$strSelect = "Vybrat";
|
||||
$strSelectFields = "Zvol pole (alespoň jedno):";
|
||||
$strSelectNumRows = "v dotazu";
|
||||
$strSend = "Pošli";
|
||||
$strSequence = "Sekv.";
|
||||
$strServerVersion = "Verze serveru";
|
||||
$strShow = "Zobraz";
|
||||
$strShowingRecords = "Ukazuji záznamy ";
|
||||
$strSingly = "(po jednom)";
|
||||
$strSize = "Velikost";
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Využití místa";
|
||||
$strSQLQuery = "SQL-dotaz";
|
||||
$strStatement = "Údaj";
|
||||
$strStrucCSV = "CSV data";
|
||||
$strStrucData = "Strukturu a data";
|
||||
$strStrucDrop = "Přidej 'Vymaž tabulku'";
|
||||
$strStrucOnly = "Pouze strukturu";
|
||||
$strSubmit = "Odešli";
|
||||
$strSuccess = "Tvůj SQL-dotaz byl úspěšně vykonán";
|
||||
$strSum = "Celkem";
|
||||
$strReadTheDocs = 'Přečti dokumentaci';
|
||||
$strRecords = 'Záznamů';
|
||||
$strReloadFailed = 'Znovunačtení MySQL selhalo.';
|
||||
$strReloadMySQL = 'Znovunačtení MySQL';
|
||||
$strRememberReload = 'Nezapomeňte reloadovat server.';
|
||||
$strRenameTable = 'Přejmenovat tabulku na';
|
||||
$strRenameTableOK = 'Tabulka %s byla přejmenována na %s';
|
||||
$strRepairTable = 'Opravit tabulku';
|
||||
$strReplace = 'Přepsat';
|
||||
$strReplaceTable = 'Přepsat data tabulky souborem';
|
||||
$strReset = 'P§vodní (reset)';
|
||||
$strReType = 'Napsat znovu';
|
||||
$strRevoke = 'Zrušit';
|
||||
$strRevokeGrant = 'Zrušit povolení přidělovat práva';
|
||||
$strRevokeGrantMessage = 'Bylo zrušeno privilegium přidělovat práva pro';
|
||||
$strRevokeMessage = 'Byla zrušena práva pro';
|
||||
$strRevokePriv = 'Zrušit práva';
|
||||
$strRowLength = 'Délka řádku';
|
||||
$strRows = 'Řádků';
|
||||
$strRowsFrom = 'řádků začínající od';
|
||||
$strRowSize = ' Velikost řádku ';
|
||||
$strRowsStatistic = 'Statistika řádků';
|
||||
$strRunning = 'běžící na ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Spusť SQL dotaz(y) na databázi ';
|
||||
|
||||
$strTable = "Tabulka ";
|
||||
$strTableComments = "Komentáře k tabulce";
|
||||
$strTableEmpty = "Jméno tabulky je prázdné!";
|
||||
$strTableMaintenance = " Údržba tabulky ";
|
||||
$strTableStructure = "Struktura tabulky pro tabulku";
|
||||
$strTableType = "Typ tabulky";
|
||||
$strTerminatedBy = "ukončen";
|
||||
$strTextAreaLength = " Toto pole možná nepůjde <br>(kvůli délce) upravit ";
|
||||
$strTheContent = "Obsah tvého souboru byl vložen";
|
||||
$strTheContents = "Obsah souboru přepíše obsah zvolené tabulky v těch řádcích, kde je identický primární nebo unikátní klíč.";
|
||||
$strTheTerminator = "Ukončení polí.";
|
||||
$strTotal = "celkem";
|
||||
$strType = "Typ";
|
||||
$strSave = 'Ulož';
|
||||
$strSelect = 'Vybrat';
|
||||
$strSelectFields = 'Zvol pole (alespoň jedno):';
|
||||
$strSelectNumRows = 'v dotazu';
|
||||
$strSend = 'Pošli';
|
||||
$strSequence = 'Sekv.';
|
||||
$strServerVersion = 'Verze serveru';
|
||||
$strShow = 'Zobraz';
|
||||
$strShowingRecords = 'Ukazuji záznamy ';
|
||||
$strShowThisQuery = ' Zobrazit zde tento dotaz znovu ';
|
||||
$strSingly = '(po jednom)';
|
||||
$strSize = 'Velikost';
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Využití místa';
|
||||
$strSQLQuery = 'SQL-dotaz';
|
||||
$strStatement = 'Údaj';
|
||||
$strStrucCSV = 'CSV data';
|
||||
$strStrucData = 'Strukturu a data';
|
||||
$strStrucDrop = 'Přidej \'Vymaž tabulku\'';
|
||||
$strStrucOnly = 'Pouze strukturu';
|
||||
$strSubmit = 'Odešli';
|
||||
$strSuccess = 'Tvůj SQL-dotaz byl úspěšně vykonán';
|
||||
$strSum = 'Celkem';
|
||||
|
||||
$strUncheckAll = "Odškrtnout vše";
|
||||
$strUnique = "Unikátní";
|
||||
$strUpdatePassMessage = "Bylo změněno heslo pro";
|
||||
$strUpdatePassword = "Změnit heslo";
|
||||
$strUpdatePrivMessage = "Byla změněna privilegia pro";
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Používá";
|
||||
$strUser = "Uživatel";
|
||||
$strUserEmpty = "Jméno uživatele je prázdné!";
|
||||
$strUserName = "Jméno uživatele";
|
||||
$strUsers = "Uživatelé";
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'Tabulka ';
|
||||
$strTableComments = 'Komentáře k tabulce';
|
||||
$strTableEmpty = 'Jméno tabulky je prázdné!';
|
||||
$strTableMaintenance = ' Údržba tabulky ';
|
||||
$strTableStructure = 'Struktura tabulky pro tabulku';
|
||||
$strTableType = 'Typ tabulky';
|
||||
$strTerminatedBy = 'ukončen';
|
||||
$strTextAreaLength = ' Toto pole možná nepůjde <br />(kvůli délce) upravit ';
|
||||
$strTheContent = 'Obsah tvého souboru byl vložen';
|
||||
$strTheContents = 'Obsah souboru přepíše obsah zvolené tabulky v těch řádcích, kde je identický primární nebo unikátní klíč.';
|
||||
$strTheTerminator = 'Ukončení polí.';
|
||||
$strTotal = 'celkem';
|
||||
$strType = 'Typ';
|
||||
|
||||
$strValue = "Hodnota";
|
||||
$strViewDump = "Ukaž dump (schema) tabulky";
|
||||
$strViewDumpDB = "Ukaž dump (schema) databáze";
|
||||
$strUncheckAll = 'Odškrtnout vše';
|
||||
$strUnique = 'Unikátní';
|
||||
$strUpdatePassMessage = 'Bylo změněno heslo pro';
|
||||
$strUpdatePassword = 'Změnit heslo';
|
||||
$strUpdatePrivMessage = 'Byla změněna privilegia pro';
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Používá';
|
||||
$strUser = 'Uživatel';
|
||||
$strUserEmpty = 'Jméno uživatele je prázdné!';
|
||||
$strUserName = 'Jméno uživatele';
|
||||
$strUsers = 'Uživatelé';
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Vítej v ";
|
||||
$strWrongUser = "Špatné uživatelské jméno/heslo. Přístup odepřen.";
|
||||
$strValue = 'Hodnota';
|
||||
$strViewDump = 'Ukaž dump (schema) tabulky';
|
||||
$strViewDumpDB = 'Ukaž dump (schema) databáze';
|
||||
|
||||
$strYes = "Ano";
|
||||
$strWelcome = 'Vítej v ';
|
||||
$strWrongUser = 'Špatné uživatelské jméno/heslo. Přístup odepřen.';
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"zabzipováno\"";
|
||||
$strGzip = "\"zagzipováno\"";
|
||||
$strOffSet = "Začátek";
|
||||
$strNbRecords = "řádků";
|
||||
$strRowSize=" Velikost řádku ";
|
||||
$strShowThisQuery=" Zobrazit zde tento dotaz znovu ";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strYes = 'Ano';
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,285 +1,287 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "windows-1250";
|
||||
$left_font_family = "verdana CE, Arial CE, verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "verdana CE, Arial CE, helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = " ";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bajtů", "KB", "MB", "GB");
|
||||
$charset = 'windows-1250';
|
||||
$left_font_family = 'verdana CE, Arial CE, verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'verdana CE, Arial CE, helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ' ';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bajtů', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Přístup odepřen";
|
||||
$strAction = "Akce";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Přidat nové pole";
|
||||
$strAddPriv = "Přidat nové privilegium";
|
||||
$strAddPrivMessage = "Privilegium bylo přidáno.";
|
||||
$strAddSearchConditions = "Přidat vyhledávací parametry (obsah dotazu po \"where\" příkazu):";
|
||||
$strAddUser = "Přidat nového uživatele";
|
||||
$strAddUserMessage = "Uživatel byl přidán.";
|
||||
$strAfter = "Po";
|
||||
$strAll = "Všechno";
|
||||
$strAlterOrderBy = "Změnit pořadí tabulky podle";
|
||||
$strAnalyzeTable = "Analyzovat tabulku";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Byl přidán index na ";
|
||||
$strAny = "Jakýkoliv";
|
||||
$strAnyColumn = "Jakýkoliv sloupec";
|
||||
$strAnyDatabase = "Jakákoliv databáze";
|
||||
$strAnyHost = "Jakýkoliv hostitel";
|
||||
$strAnyTable = "Any table";
|
||||
$strAnyUser = "Jakýkoliv uživatel";
|
||||
$strAPrimaryKey = "Byl přidán primární klíč na ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "Na začátku tabulky";
|
||||
$strAtEndOfTable = "Na konci tabulky";
|
||||
$strAttr = "Atributy";
|
||||
|
||||
$strBack = "Zpět";
|
||||
$strBinary = " Binární ";
|
||||
$strBinaryDoNotEdit = " Binární - neupravujte ";
|
||||
$strBookmarkLabel = "Název";
|
||||
$strBookmarkQuery = "Oblíbený SQL dotaz";
|
||||
$strBookmarkThis = "Přidat tento SQL dotaz do oblíbených";
|
||||
$strBookmarkView = "Jen prohlédnout";
|
||||
$strBrowse = "Projít";
|
||||
$strAccessDenied = 'Přístup odepřen';
|
||||
$strAction = 'Akce';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Přidat nové pole';
|
||||
$strAddPriv = 'Přidat nové privilegium';
|
||||
$strAddPrivMessage = 'Privilegium bylo přidáno.';
|
||||
$strAddSearchConditions = 'Přidat vyhledávací parametry (obsah dotazu po "where" příkazu):';
|
||||
$strAddUser = 'Přidat nového uživatele';
|
||||
$strAddUserMessage = 'Uživatel byl přidán.';
|
||||
$strAfter = 'Po';
|
||||
$strAll = 'Všechno';
|
||||
$strAlterOrderBy = 'Změnit pořadí tabulky podle';
|
||||
$strAnalyzeTable = 'Analyzovat tabulku';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Byl přidán index na ';
|
||||
$strAny = 'Jakýkoliv';
|
||||
$strAnyColumn = 'Jakýkoliv sloupec';
|
||||
$strAnyDatabase = 'Jakákoliv databáze';
|
||||
$strAnyHost = 'Jakýkoliv hostitel';
|
||||
$strAnyTable = 'Any table';
|
||||
$strAnyUser = 'Jakýkoliv uživatel';
|
||||
$strAPrimaryKey = 'Byl přidán primární klíč na ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'Na začátku tabulky';
|
||||
$strAtEndOfTable = 'Na konci tabulky';
|
||||
$strAttr = 'Atributy';
|
||||
|
||||
$strCantLoadMySQL = "nelze nahrát rozšíření pro MySQL,<br>prosím zkontrolujte nastavení PHP.";
|
||||
$strCarriage = "Návrat vozíku (CR): \\r";
|
||||
$strChange = "Změnit";
|
||||
$strCheckAll = "Zaškrtnout vše";
|
||||
$strCheckDbPriv = "Zkontrolovat privilegia databáze";
|
||||
$strCheckTable = "Zkontrolovat tabulku";
|
||||
$strColumn = "Sloupec";
|
||||
$strColumnEmpty = "Jména sloupců jsou prázdná!";
|
||||
$strColumnNames = "Názvy sloupců";
|
||||
$strCompleteInserts = "Uplné vloženi";
|
||||
$strConfirm = "Opravdu chcete toto provést?";
|
||||
$strCopyTable = "Zkopírovat tabulku do:";
|
||||
$strCopyTableOK = "Tabulka %s byla zkopírována do %s.";
|
||||
$strCreate = "Vytvořit";
|
||||
$strCreateNewDatabase = "Vytvořit novou databázi";
|
||||
$strCreateNewTable = "Vytvořit novou tabulku v databázi ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Zpět';
|
||||
$strBinary = ' Binární ';
|
||||
$strBinaryDoNotEdit = ' Binární - neupravujte ';
|
||||
$strBookmarkLabel = 'Název';
|
||||
$strBookmarkQuery = 'Oblíbený SQL dotaz';
|
||||
$strBookmarkThis = 'Přidat tento SQL dotaz do oblíbených';
|
||||
$strBookmarkView = 'Jen prohlédnout';
|
||||
$strBrowse = 'Projít';
|
||||
$strBzip = '"zabzipováno"';
|
||||
|
||||
$strData = "Data";
|
||||
$strDatabase = "Databáze ";
|
||||
$strDatabases = "databáze";
|
||||
$strDataOnly = " Jen data ";
|
||||
$strDbEmpty = "Jméno databáze je prázdné!";
|
||||
$strDefault = "Výchozí";
|
||||
$strDelete = "Smazat";
|
||||
$strDeleted = "Řádek byl smazán";
|
||||
$strDeleteFailed = "Smazání selhalo!";
|
||||
$strDeletePassword = "Smazat heslo";
|
||||
$strDeleteUserMessage = "Byl smazán uživatel";
|
||||
$strDelPassMessage = "Bylo smazáno heslo pro";
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Varování:</b> Zapnul jste magic_quotes_gpc v nastavení PHP. Tato verze PhpMyAdmina nemůže s tímto nastavením korektně pracovat. Prosím podívejte se do manuálu PHP (kapitola nastavení) jak toto nastavení změnit.";
|
||||
$strDisplay = "Zobraz";
|
||||
$strDoAQuery = "ProvéstDo a \"dotaz podle příkladu\" (žolík: \"%\")";
|
||||
$strDocu = "Dokumentace";
|
||||
$strDoYouReally = "Opravdu si přeješ vykonat příkaz ";
|
||||
$strDrop = "Odstranit";
|
||||
$strDropDB = "Odstranit databázi ";
|
||||
$strDumpingData = "Dumpuji data pro tabulku";
|
||||
$strDynamic = "dynamic";
|
||||
$strCantLoadMySQL = 'nelze nahrát rozšíření pro MySQL,<br />prosím zkontrolujte nastavení PHP.';
|
||||
$strCarriage = 'Návrat vozíku (CR): \\r';
|
||||
$strChange = 'Změnit';
|
||||
$strCheckAll = 'Zaškrtnout vše';
|
||||
$strCheckDbPriv = 'Zkontrolovat privilegia databáze';
|
||||
$strCheckTable = 'Zkontrolovat tabulku';
|
||||
$strColumn = 'Sloupec';
|
||||
$strColumnEmpty = 'Jména sloupců jsou prázdná!';
|
||||
$strColumnNames = 'Názvy sloupců';
|
||||
$strCompleteInserts = 'Uplné vloženi';
|
||||
$strConfirm = 'Opravdu chcete toto provést?';
|
||||
$strCopyTable = 'Zkopírovat tabulku do:';
|
||||
$strCopyTableOK = 'Tabulka %s byla zkopírována do %s.';
|
||||
$strCreate = 'Vytvořit';
|
||||
$strCreateNewDatabase = 'Vytvořit novou databázi';
|
||||
$strCreateNewTable = 'Vytvořit novou tabulku v databázi ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Editovat";
|
||||
$strEditPrivileges = "Upravit práva";
|
||||
$strEffective = "Efektivní";
|
||||
$strEmpty = "Vyprázdnit";
|
||||
$strEmptyResultSet = "MySQL vrátil prázdný výsledek (tj. nulový počet řádků).";
|
||||
$strEnableMagicQuotes = "<b>POZOR:</b> Nepovolil jsi 'magic_quotes_gpc' v tvé konfiguraci PHP enginu. PhpMyAdmin toto potřebuje pro svoji korektní praci. Prosím, zkontroluj konfiguraci popř. v manuálu pro PHP vyhledej informaci jak toto povolit.";
|
||||
$strEnclosedBy = "uzavřen do";
|
||||
$strEnd = "Konec";
|
||||
$strEnglishPrivileges = " Poznámka: názvy MySQL privilegií jsou uváděna v angličtině ";
|
||||
$strError = "Chyba";
|
||||
$strEscapedBy = "uvozeno pomocí";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Data';
|
||||
$strDatabase = 'Databáze ';
|
||||
$strDatabases = 'databáze';
|
||||
$strDataOnly = ' Jen data ';
|
||||
$strDbEmpty = 'Jméno databáze je prázdné!';
|
||||
$strDefault = 'Výchozí';
|
||||
$strDelete = 'Smazat';
|
||||
$strDeleted = 'Řádek byl smazán';
|
||||
$strDeleteFailed = 'Smazání selhalo!';
|
||||
$strDeletePassword = 'Smazat heslo';
|
||||
$strDeleteUserMessage = 'Byl smazán uživatel';
|
||||
$strDelPassMessage = 'Bylo smazáno heslo pro';
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Varování:</b> Zapnul jste magic_quotes_gpc v nastavení PHP. Tato verze PhpMyAdmina nemůže s tímto nastavením korektně pracovat. Prosím podívejte se do manuálu PHP (kapitola nastavení) jak toto nastavení změnit.';
|
||||
$strDisplay = 'Zobraz';
|
||||
$strDoAQuery = 'ProvéstDo a "dotaz podle příkladu" (žolík: "%")';
|
||||
$strDocu = 'Dokumentace';
|
||||
$strDoYouReally = 'Opravdu si přeješ vykonat příkaz ';
|
||||
$strDrop = 'Odstranit';
|
||||
$strDropDB = 'Odstranit databázi ';
|
||||
$strDumpingData = 'Dumpuji data pro tabulku';
|
||||
$strDynamic = 'dynamic';
|
||||
|
||||
$strField = "Pole";
|
||||
$strFields = "Počet polí";
|
||||
$strFixed = "pevný";
|
||||
$strFormat = "Formát";
|
||||
$strFunction = "Funkce";
|
||||
$strEdit = 'Editovat';
|
||||
$strEditPrivileges = 'Upravit práva';
|
||||
$strEffective = 'Efektivní';
|
||||
$strEmpty = 'Vyprázdnit';
|
||||
$strEmptyResultSet = 'MySQL vrátil prázdný výsledek (tj. nulový počet řádků).';
|
||||
$strEnableMagicQuotes = '<b>POZOR:</b> Nepovolil jsi \'magic_quotes_gpc\' v tvé konfiguraci PHP enginu. PhpMyAdmin toto potřebuje pro svoji korektní praci. Prosím, zkontroluj konfiguraci popř. v manuálu pro PHP vyhledej informaci jak toto povolit.';
|
||||
$strEnclosedBy = 'uzavřen do';
|
||||
$strEnd = 'Konec';
|
||||
$strEnglishPrivileges = ' Poznámka: názvy MySQL privilegií jsou uváděna v angličtině ';
|
||||
$strError = 'Chyba';
|
||||
$strEscapedBy = 'uvozeno pomocí';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Vygenerováno:";
|
||||
$strGo = "Proveď";
|
||||
$strGrants = "Privilegia";
|
||||
$strField = 'Pole';
|
||||
$strFields = 'Počet polí';
|
||||
$strFixed = 'pevný';
|
||||
$strFormat = 'Formát';
|
||||
$strFunction = 'Funkce';
|
||||
|
||||
$strHasBeenAltered = "byla změněna.";
|
||||
$strHasBeenCreated = "byla vytvořena.";
|
||||
$strHasBeenDropped = "byla odstraněna.";
|
||||
$strHasBeenEmptied = "byla vyprázdněna.";
|
||||
$strHome = "Úvod";
|
||||
$strHomepageOfficial = " Oficiální stránka phpMyAdmina ";
|
||||
$strHomepageSourceforge = " nová stránka phpMyAdmina ";
|
||||
$strHost = "Hostitel";
|
||||
$strHostEmpty = "Jméno hostitele je prázdné!";
|
||||
$strGenTime = 'Vygenerováno:';
|
||||
$strGo = 'Proveď';
|
||||
$strGrants = 'Privilegia';
|
||||
$strGzip = '"zagzipováno"';
|
||||
|
||||
$strIfYouWish = "Pokud si přeješ natáhnout jenom určité sloupce z tabulky, specifikuj je jako seznam polí oddělených čárkou.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexy";
|
||||
$strInsert = "Vložit";
|
||||
$strInsertAsNewRow = " Vložit jako nový řádek ";
|
||||
$strInsertIntoTable = "Vložit do tabulky";
|
||||
$strInsertNewRow = "Vložit nový řádek";
|
||||
$strInsertTextfiles = "Vložit textové soubory do tabulky";
|
||||
$strInUse = "právě se používá";
|
||||
$strHasBeenAltered = 'byla změněna.';
|
||||
$strHasBeenCreated = 'byla vytvořena.';
|
||||
$strHasBeenDropped = 'byla odstraněna.';
|
||||
$strHasBeenEmptied = 'byla vyprázdněna.';
|
||||
$strHome = 'Úvod';
|
||||
$strHomepageOfficial = ' Oficiální stránka phpMyAdmina ';
|
||||
$strHomepageSourceforge = ' nová stránka phpMyAdmina ';
|
||||
$strHost = 'Hostitel';
|
||||
$strHostEmpty = 'Jméno hostitele je prázdné!';
|
||||
|
||||
$strKeyname = "Klíčovy název";
|
||||
$strKill = " Zabít ";
|
||||
$strIfYouWish = 'Pokud si přeješ natáhnout jenom určité sloupce z tabulky, specifikuj je jako seznam polí oddělených čárkou.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexy';
|
||||
$strInsert = 'Vložit';
|
||||
$strInsertAsNewRow = ' Vložit jako nový řádek ';
|
||||
$strInsertIntoTable = 'Vložit do tabulky';
|
||||
$strInsertNewRow = 'Vložit nový řádek';
|
||||
$strInsertTextfiles = 'Vložit textové soubory do tabulky';
|
||||
$strInUse = 'právě se používá';
|
||||
|
||||
$strLength = "Délka";
|
||||
$strLengthSet = "Délka/Set";
|
||||
$strLimitNumRows = "záznamu na stránku";
|
||||
$strLineFeed = "Ukončení řádku (Linefeed): \\n";
|
||||
$strLines = "Řádek";
|
||||
$strLocationTextfile = "Umístění textového souboru";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Odhlásit se";
|
||||
$strKeyname = 'Klíčovy název';
|
||||
$strKill = ' Zabít ';
|
||||
|
||||
$strModifications = "Změny byly uloženy";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL znovu-načtena.";
|
||||
$strMySQLSaid = "MySQL hlásí: ";
|
||||
$strMySQLShowProcess = "Zobraz procesy";
|
||||
$strMySQLShowStatus = "Ukázat MySQL runtime informace";
|
||||
$strMySQLShowVars = "Ukázat MySQL systemove proměnné";
|
||||
$strLength = 'Délka';
|
||||
$strLengthSet = 'Délka/Set';
|
||||
$strLimitNumRows = 'záznamu na stránku';
|
||||
$strLineFeed = 'Ukončení řádku (Linefeed): \\n';
|
||||
$strLines = 'Řádek';
|
||||
$strLocationTextfile = 'Umístění textového souboru';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Odhlásit se';
|
||||
|
||||
$strName = "Název";
|
||||
$strNext = "Další";
|
||||
$strNo = "Ne";
|
||||
$strNoPassword = "Žádné heslo";
|
||||
$strNoPrivileges = "Žádná privilegia";
|
||||
$strNoRights = "Nemáte dostatečná práva na provedení této akce!";
|
||||
$strNoTablesFound = "V databázi nebyla nalezena ani jedna tabulka.";
|
||||
$strNotNumber = "Toto není číslo!";
|
||||
$strNotValidNumber = " není platné číslo řádku!";
|
||||
$strNoUsersFound = "Žádný uživatel nenalezen.";
|
||||
$strNull = "Nulový";
|
||||
$strNumberIndexes = " Počet rozšířených indexů ";
|
||||
$strModifications = 'Změny byly uloženy';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL znovu-načtena.';
|
||||
$strMySQLSaid = 'MySQL hlásí: ';
|
||||
$strMySQLShowProcess = 'Zobraz procesy';
|
||||
$strMySQLShowStatus = 'Ukázat MySQL runtime informace';
|
||||
$strMySQLShowVars = 'Ukázat MySQL systemove proměnné';
|
||||
|
||||
$strOftenQuotation = "Často uvozující znaky. OPTIONALLY znamená, že pouze pole typu CHAR a VARCHAR jsou uzavřeny do \"uzavíracích \" znaků.";
|
||||
$strOptimizeTable = "Optimalizovat tabulku";
|
||||
$strOptionalControls = "Volitelné. Určuje jak zapisovat nebo číst speciální znaky.";
|
||||
$strOptionally = "Volitelně";
|
||||
$strOr = "Nebo";
|
||||
$strOverhead = "Navíc";
|
||||
$strName = 'Název';
|
||||
$strNbRecords = 'řádků';
|
||||
$strNext = 'Další';
|
||||
$strNo = 'Ne';
|
||||
$strNoPassword = 'Žádné heslo';
|
||||
$strNoPrivileges = 'Žádná privilegia';
|
||||
$strNoRights = 'Nemáte dostatečná práva na provedení této akce!';
|
||||
$strNoTablesFound = 'V databázi nebyla nalezena ani jedna tabulka.';
|
||||
$strNotNumber = 'Toto není číslo!';
|
||||
$strNotValidNumber = ' není platné číslo řádku!';
|
||||
$strNoUsersFound = 'Žádný uživatel nenalezen.';
|
||||
$strNull = 'Nulový';
|
||||
$strNumberIndexes = ' Počet rozšířených indexů ';
|
||||
|
||||
$strPassword = "Heslo";
|
||||
$strPasswordEmpty = "Heslo je prázdné!";
|
||||
$strPasswordNotSame = "Hesla nejsou stejná!";
|
||||
$strPHPVersion = "Verze PHP Version";
|
||||
$strPos1 = "Začátek";
|
||||
$strPrevious = "Předchozí";
|
||||
$strPrimary = "Primární";
|
||||
$strPrimaryKey = "Primární klíč";
|
||||
$strPrinterFriendly = "Verze určená pro tisk";
|
||||
$strPrintView = "Náhled k vytištění";
|
||||
$strPrivileges = "Privilegia";
|
||||
$strProducedAnError = "vytvořil chybu.";
|
||||
$strProperties = "Vlastnosti";
|
||||
$strOffSet = 'Začátek';
|
||||
$strOftenQuotation = 'Často uvozující znaky. OPTIONALLY znamená, že pouze pole typu CHAR a VARCHAR jsou uzavřeny do "uzavíracích " znaků.';
|
||||
$strOptimizeTable = 'Optimalizovat tabulku';
|
||||
$strOptionalControls = 'Volitelné. Určuje jak zapisovat nebo číst speciální znaky.';
|
||||
$strOptionally = 'Volitelně';
|
||||
$strOr = 'Nebo';
|
||||
$strOverhead = 'Navíc';
|
||||
|
||||
$strQBE = "Dotaz podle příkladu";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Heslo';
|
||||
$strPasswordEmpty = 'Heslo je prázdné!';
|
||||
$strPasswordNotSame = 'Hesla nejsou stejná!';
|
||||
$strPHPVersion = 'Verze PHP Version';
|
||||
$strPos1 = 'Začátek';
|
||||
$strPrevious = 'Předchozí';
|
||||
$strPrimary = 'Primární';
|
||||
$strPrimaryKey = 'Primární klíč';
|
||||
$strPrinterFriendly = 'Verze určená pro tisk';
|
||||
$strPrintView = 'Náhled k vytištění';
|
||||
$strPrivileges = 'Privilegia';
|
||||
$strProducedAnError = 'vytvořil chybu.';
|
||||
$strProperties = 'Vlastnosti';
|
||||
|
||||
$strReadTheDocs = "Přečti dokumentaci";
|
||||
$strRecords = "Záznamů";
|
||||
$strReloadFailed = "Znovunačtení MySQL selhalo.";
|
||||
$strReloadMySQL = "Znovunačtení MySQL";
|
||||
$strRememberReload = "Nezapomeňte reloadovat server.";
|
||||
$strRenameTable = "Přejmenovat tabulku na";
|
||||
$strRenameTableOK = "Tabulka %s byla přejmenována na %s";
|
||||
$strRepairTable = "Opravit tabulku";
|
||||
$strReplace = "Přepsat";
|
||||
$strReplaceTable = "Přepsat data tabulky souborem";
|
||||
$strReset = "P§vodní (reset)";
|
||||
$strReType = "Napsat znovu";
|
||||
$strRevoke = "Zrušit";
|
||||
$strRevokeGrant = "Zrušit povolení přidělovat práva";
|
||||
$strRevokeGrantMessage = "Bylo zrušeno privilegium přidělovat práva pro";
|
||||
$strRevokeMessage = "Byla zrušena práva pro";
|
||||
$strRevokePriv = "Zrušit práva";
|
||||
$strRowLength = "Délka řádku";
|
||||
$strRows = "Řádků";
|
||||
$strRowsFrom = "řádků začínající od";
|
||||
$strRowsStatistic = "Statistika řádků";
|
||||
$strRunning = "běžící na ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Spusť SQL dotaz(y) na databázi ";
|
||||
$strQBE = 'Dotaz podle příkladu';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Ulož";
|
||||
$strSelect = "Vybrat";
|
||||
$strSelectFields = "Zvol pole (alespoň jedno):";
|
||||
$strSelectNumRows = "v dotazu";
|
||||
$strSend = "Pošli";
|
||||
$strSequence = "Sekv.";
|
||||
$strServerVersion = "Verze serveru";
|
||||
$strShow = "Zobraz";
|
||||
$strShowingRecords = "Ukazuji záznamy ";
|
||||
$strSingly = "(po jednom)";
|
||||
$strSize = "Velikost";
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Využití místa";
|
||||
$strSQLQuery = "SQL-dotaz";
|
||||
$strStatement = "Údaj";
|
||||
$strStrucCSV = "CSV data";
|
||||
$strStrucData = "Strukturu a data";
|
||||
$strStrucDrop = "Přidej 'Vymaž tabulku'";
|
||||
$strStrucOnly = "Pouze strukturu";
|
||||
$strSubmit = "Odešli";
|
||||
$strSuccess = "Tvůj SQL-dotaz byl úspěšně vykonán";
|
||||
$strSum = "Celkem";
|
||||
$strReadTheDocs = 'Přečti dokumentaci';
|
||||
$strRecords = 'Záznamů';
|
||||
$strReloadFailed = 'Znovunačtení MySQL selhalo.';
|
||||
$strReloadMySQL = 'Znovunačtení MySQL';
|
||||
$strRememberReload = 'Nezapomeňte reloadovat server.';
|
||||
$strRenameTable = 'Přejmenovat tabulku na';
|
||||
$strRenameTableOK = 'Tabulka %s byla přejmenována na %s';
|
||||
$strRepairTable = 'Opravit tabulku';
|
||||
$strReplace = 'Přepsat';
|
||||
$strReplaceTable = 'Přepsat data tabulky souborem';
|
||||
$strReset = 'P§vodní (reset)';
|
||||
$strReType = 'Napsat znovu';
|
||||
$strRevoke = 'Zrušit';
|
||||
$strRevokeGrant = 'Zrušit povolení přidělovat práva';
|
||||
$strRevokeGrantMessage = 'Bylo zrušeno privilegium přidělovat práva pro';
|
||||
$strRevokeMessage = 'Byla zrušena práva pro';
|
||||
$strRevokePriv = 'Zrušit práva';
|
||||
$strRowLength = 'Délka řádku';
|
||||
$strRows = 'Řádků';
|
||||
$strRowsFrom = 'řádků začínající od';
|
||||
$strRowSize = ' Velikost řádku ';
|
||||
$strRowsStatistic = 'Statistika řádků';
|
||||
$strRunning = 'běžící na ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Spusť SQL dotaz(y) na databázi ';
|
||||
|
||||
$strTable = "Tabulka ";
|
||||
$strTableComments = "Komentáře k tabulce";
|
||||
$strTableEmpty = "Jméno tabulky je prázdné!";
|
||||
$strTableMaintenance = " Údržba tabulky ";
|
||||
$strTableStructure = "Struktura tabulky pro tabulku";
|
||||
$strTableType = "Typ tabulky";
|
||||
$strTerminatedBy = "ukončen";
|
||||
$strTextAreaLength = " Toto pole možná nepůjde <br>(kvůli délce) upravit ";
|
||||
$strTheContent = "Obsah tvého souboru byl vložen";
|
||||
$strTheContents = "Obsah souboru přepíše obsah zvolené tabulky v těch řádcích, kde je identický primární nebo unikátní klíč.";
|
||||
$strTheTerminator = "Ukončení polí.";
|
||||
$strTotal = "celkem";
|
||||
$strType = "Typ";
|
||||
$strSave = 'Ulož';
|
||||
$strSelect = 'Vybrat';
|
||||
$strSelectFields = 'Zvol pole (alespoň jedno):';
|
||||
$strSelectNumRows = 'v dotazu';
|
||||
$strSend = 'Pošli';
|
||||
$strSequence = 'Sekv.';
|
||||
$strServerVersion = 'Verze serveru';
|
||||
$strShow = 'Zobraz';
|
||||
$strShowingRecords = 'Ukazuji záznamy ';
|
||||
$strShowThisQuery = ' Zobrazit zde tento dotaz znovu ';
|
||||
$strSingly = '(po jednom)';
|
||||
$strSize = 'Velikost';
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Využití místa';
|
||||
$strSQLQuery = 'SQL-dotaz';
|
||||
$strStatement = 'Údaj';
|
||||
$strStrucCSV = 'CSV data';
|
||||
$strStrucData = 'Strukturu a data';
|
||||
$strStrucDrop = 'Přidej \'Vymaž tabulku\'';
|
||||
$strStrucOnly = 'Pouze strukturu';
|
||||
$strSubmit = 'Odešli';
|
||||
$strSuccess = 'Tvůj SQL-dotaz byl úspěšně vykonán';
|
||||
$strSum = 'Celkem';
|
||||
|
||||
$strUncheckAll = "Odškrtnout vše";
|
||||
$strUnique = "Unikátní";
|
||||
$strUpdatePassMessage = "Bylo změněno heslo pro";
|
||||
$strUpdatePassword = "Změnit heslo";
|
||||
$strUpdatePrivMessage = "Byla změněna privilegia pro";
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Používá";
|
||||
$strUser = "Uživatel";
|
||||
$strUserEmpty = "Jméno uživatele je prázdné!";
|
||||
$strUserName = "Jméno uživatele";
|
||||
$strUsers = "Uživatelé";
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'Tabulka ';
|
||||
$strTableComments = 'Komentáře k tabulce';
|
||||
$strTableEmpty = 'Jméno tabulky je prázdné!';
|
||||
$strTableMaintenance = ' Údržba tabulky ';
|
||||
$strTableStructure = 'Struktura tabulky pro tabulku';
|
||||
$strTableType = 'Typ tabulky';
|
||||
$strTerminatedBy = 'ukončen';
|
||||
$strTextAreaLength = ' Toto pole možná nepůjde <br />(kvůli délce) upravit ';
|
||||
$strTheContent = 'Obsah tvého souboru byl vložen';
|
||||
$strTheContents = 'Obsah souboru přepíše obsah zvolené tabulky v těch řádcích, kde je identický primární nebo unikátní klíč.';
|
||||
$strTheTerminator = 'Ukončení polí.';
|
||||
$strTotal = 'celkem';
|
||||
$strType = 'Typ';
|
||||
|
||||
$strValue = "Hodnota";
|
||||
$strViewDump = "Ukaž dump (schema) tabulky";
|
||||
$strViewDumpDB = "Ukaž dump (schema) databáze";
|
||||
$strUncheckAll = 'Odškrtnout vše';
|
||||
$strUnique = 'Unikátní';
|
||||
$strUpdatePassMessage = 'Bylo změněno heslo pro';
|
||||
$strUpdatePassword = 'Změnit heslo';
|
||||
$strUpdatePrivMessage = 'Byla změněna privilegia pro';
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Používá';
|
||||
$strUser = 'Uživatel';
|
||||
$strUserEmpty = 'Jméno uživatele je prázdné!';
|
||||
$strUserName = 'Jméno uživatele';
|
||||
$strUsers = 'Uživatelé';
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Vítej v ";
|
||||
$strWrongUser = "Špatné uživatelské jméno/heslo. Přístup odepřen.";
|
||||
$strValue = 'Hodnota';
|
||||
$strViewDump = 'Ukaž dump (schema) tabulky';
|
||||
$strViewDumpDB = 'Ukaž dump (schema) databáze';
|
||||
|
||||
$strYes = "Ano";
|
||||
$strWelcome = 'Vítej v ';
|
||||
$strWrongUser = 'Špatné uživatelské jméno/heslo. Přístup odepřen.';
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"zabzipováno\"";
|
||||
$strGzip = "\"zagzipováno\"";
|
||||
$strOffSet = "Začátek";
|
||||
$strNbRecords = "řádků";
|
||||
$strRowSize=" Velikost řádku ";
|
||||
$strShowThisQuery=" Zobrazit zde tento dotaz znovu ";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strYes = 'Ano';
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,285 +1,286 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
|
||||
$strAccessDenied = "Adgang Nægtet";
|
||||
$strAction = "Handling";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Tilføj nyt felt";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Tilføj søge kriterier (body of the \"where\" clause):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "Efter";
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyser tabel";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Der er oprettet et indeks på feltet ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "Der er oprettet en primær nøgle på feltet ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "I begyndelsen af tabel";
|
||||
$strAtEndOfTable = "I slutning af tabel";
|
||||
$strAttr = "Attributer";
|
||||
$strAccessDenied = 'Adgang Nægtet';
|
||||
$strAction = 'Handling';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Tilføj nyt felt';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Tilføj søge kriterier (body of the "where" clause):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'Efter';
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyser tabel';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Der er oprettet et indeks på feltet ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'Der er oprettet en primær nøgle på feltet ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'I begyndelsen af tabel';
|
||||
$strAtEndOfTable = 'I slutning af tabel';
|
||||
$strAttr = 'Attributer';
|
||||
|
||||
$strBack = "Tilbage";
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Vis";
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strBack = 'Tilbage';
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Vis';
|
||||
$strBzip = '"bzipped"';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Carriage return: \\r";
|
||||
$strChange = "Ændre";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Tjek tabel";
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Kolonne navne";
|
||||
$strCompleteInserts = "Lav komplette inserts";
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Kopier tabel til:";
|
||||
$strCopyTableOK = "Tabellen %s er nu kopieret til: %s.";
|
||||
$strCreate = "Opret";
|
||||
$strCreateNewDatabase = "Opret ny database";
|
||||
$strCreateNewTable = "Opret ny tabel i database ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Carriage return: \\r';
|
||||
$strChange = 'Ændre';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Tjek tabel';
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Kolonne navne';
|
||||
$strCompleteInserts = 'Lav komplette inserts';
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Kopier tabel til:';
|
||||
$strCopyTableOK = 'Tabellen %s er nu kopieret til: %s.';
|
||||
$strCreate = 'Opret';
|
||||
$strCreateNewDatabase = 'Opret ny database';
|
||||
$strCreateNewTable = 'Opret ny tabel i database ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "Database: ";
|
||||
$strDatabases = "databaser";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Standardværdi";
|
||||
$strDelete = "Slet";
|
||||
$strDeleted = "Rækken er slettet!";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<B>Advarsel:</B> Du har aktiveret funktionen magic_quotes_gpc i din PHP konfiguration. PhpMyAdmin ikke behøver denne funktion for at kunne virke efter hensigten. Tag venligst et kig i kapitlet om konfiguration i PHP manualen for information om hvordan funktionen ikke aktiveres.";
|
||||
$strDisplay = "Vis";
|
||||
$strDoAQuery = "Kør en forespørgsel på felter (wildcard: \"%\")";
|
||||
$strDocu = "Dokumentation";
|
||||
$strDoYouReally = "Er du sikker på at du vil ";
|
||||
$strDrop = "Slet";
|
||||
$strDropDB = "Slet database ";
|
||||
$strDumpingData = "Data dump for tabellen";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'Database: ';
|
||||
$strDatabases = 'databaser';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Standardværdi';
|
||||
$strDelete = 'Slet';
|
||||
$strDeleted = 'Rækken er slettet!';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Advarsel:</b> Du har aktiveret funktionen magic_quotes_gpc i din PHP konfiguration. PhpMyAdmin ikke behøver denne funktion for at kunne virke efter hensigten. Tag venligst et kig i kapitlet om konfiguration i PHP manualen for information om hvordan funktionen ikke aktiveres.';
|
||||
$strDisplay = 'Vis';
|
||||
$strDoAQuery = 'Kør en forespørgsel på felter (wildcard: "%")';
|
||||
$strDocu = 'Dokumentation';
|
||||
$strDoYouReally = 'Er du sikker på at du vil ';
|
||||
$strDrop = 'Slet';
|
||||
$strDropDB = 'Slet database ';
|
||||
$strDumpingData = 'Data dump for tabellen';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strEdit = "Ret";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Tøm";
|
||||
$strEmptyResultSet = "MySQL returnerede ingen data (fx ingen rækker).";
|
||||
$strEnableMagicQuotes = "<B>Advarsel:</B> Du har ikke aktiveret funktionen magic_quotes_gpc i din PHP konfiguration. PhpMyAdmin behøver denne funktion for at kunne virke efter hensigten. Tag venligst et kig i kapitlet om konfiguration i PHP manualen for information om hvordan funktionen aktiveres.";
|
||||
$strEnclosedBy = "har denne tekstkvalifikator";
|
||||
$strEnd = "Slut";
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strError = "Fejl";
|
||||
$strEscapedBy = "afsluttes med";
|
||||
$strExtra = "Ekstra";
|
||||
$strEdit = 'Ret';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Tøm';
|
||||
$strEmptyResultSet = 'MySQL returnerede ingen data (fx ingen rækker).';
|
||||
$strEnableMagicQuotes = '<b>Advarsel:</b> Du har ikke aktiveret funktionen magic_quotes_gpc i din PHP konfiguration. PhpMyAdmin behøver denne funktion for at kunne virke efter hensigten. Tag venligst et kig i kapitlet om konfiguration i PHP manualen for information om hvordan funktionen aktiveres.';
|
||||
$strEnclosedBy = 'har denne tekstkvalifikator';
|
||||
$strEnd = 'Slut';
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strError = 'Fejl';
|
||||
$strEscapedBy = 'afsluttes med';
|
||||
$strExtra = 'Ekstra';
|
||||
|
||||
$strField = "Feltnavn";
|
||||
$strFields = "Felter";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Funktion";
|
||||
$strField = 'Feltnavn';
|
||||
$strFields = 'Felter';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Funktion';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Udfør";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Udfør';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
$strHasBeenAltered = "er ændret.";
|
||||
$strHasBeenCreated = "er oprettet.";
|
||||
$strHasBeenDropped = "er slettet.";
|
||||
$strHasBeenEmptied = "er tømt.";
|
||||
$strHome = "Hjem";
|
||||
$strHomepageOfficial = "Officiel phpMyAdmin hjemmeside ";
|
||||
$strHomepageSourceforge = "Ny phpMyAdmin hjemmeside ";
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strHasBeenAltered = 'er ændret.';
|
||||
$strHasBeenCreated = 'er oprettet.';
|
||||
$strHasBeenDropped = 'er slettet.';
|
||||
$strHasBeenEmptied = 'er tømt.';
|
||||
$strHome = 'Hjem';
|
||||
$strHomepageOfficial = 'Officiel phpMyAdmin hjemmeside ';
|
||||
$strHomepageSourceforge = 'Ny phpMyAdmin hjemmeside ';
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strIfYouWish = "Hvis du kun ønsker at importere nogle af tabellens kolonner, angives de med en kommasepereret felt liste.";
|
||||
$strIndex = "Indekseret";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Indsæt";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Importer til tabel";
|
||||
$strInsertNewRow = "Indsæt ny række";
|
||||
$strInsertTextfiles = "Importer tekstfil til tabellen";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strIfYouWish = 'Hvis du kun ønsker at importere nogle af tabellens kolonner, angives de med en kommasepereret felt liste.';
|
||||
$strIndex = 'Indekseret';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Indsæt';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Importer til tabel';
|
||||
$strInsertNewRow = 'Indsæt ny række';
|
||||
$strInsertTextfiles = 'Importer tekstfil til tabellen';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strKeyname = "Nøgle";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strKeyname = 'Nøgle';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Længde/Værdi";
|
||||
$strLimitNumRows = "poster pr. side";
|
||||
$strLineFeed = "Linefeed: \\n";
|
||||
$strLines = "Linier";
|
||||
$strLocationTextfile = "Tekstfilens placering";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Log af";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Længde/Værdi';
|
||||
$strLimitNumRows = 'poster pr. side';
|
||||
$strLineFeed = 'Linefeed: \\n';
|
||||
$strLines = 'Linier';
|
||||
$strLocationTextfile = 'Tekstfilens placering';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Log af';
|
||||
|
||||
$strModifications = "Rettelserne er gemt!";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL genstartet.";
|
||||
$strMySQLSaid = "MySQL returnerede: ";
|
||||
$strMySQLShowProcess = "Vis tråde";
|
||||
$strMySQLShowStatus = "Vis MySQL runtime information";
|
||||
$strMySQLShowVars = "Vis MySQL system variable";
|
||||
$strModifications = 'Rettelserne er gemt!';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL genstartet.';
|
||||
$strMySQLSaid = 'MySQL returnerede: ';
|
||||
$strMySQLShowProcess = 'Vis tråde';
|
||||
$strMySQLShowStatus = 'Vis MySQL runtime information';
|
||||
$strMySQLShowVars = 'Vis MySQL system variable';
|
||||
|
||||
$strName = "Navn";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strNext = "Næste";
|
||||
$strNo = "Nej";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Ingen tabeller fundet i databasen.";
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Nulværdi";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strName = 'Navn';
|
||||
$strNbRecords = 'No. Of records';
|
||||
$strNext = 'Næste';
|
||||
$strNo = 'Nej';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Ingen tabeller fundet i databasen.';
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Nulværdi';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strOffSet = "Offset";
|
||||
$strOftenQuotation = "Ofte anførelsestegn. OPTIONALLY betyder at kun char og varchar felter er omsluttet med det valgte \"tekstkvalifikator\"-tegn.";
|
||||
$strOptimizeTable = "Optimer tabel";
|
||||
$strOptionalControls = "Optional. Kontrollerer hvordan specialtegn skrives eller læses.";
|
||||
$strOptionally = "OPTIONALLY";
|
||||
$strOr = "Eller";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strOffSet = 'Offset';
|
||||
$strOftenQuotation = 'Ofte anførelsestegn. OPTIONALLY betyder at kun char og varchar felter er omsluttet med det valgte "tekstkvalifikator"-tegn.';
|
||||
$strOptimizeTable = 'Optimer tabel';
|
||||
$strOptionalControls = 'Optional. Kontrollerer hvordan specialtegn skrives eller læses.';
|
||||
$strOptionally = 'OPTIONALLY';
|
||||
$strOr = 'Eller';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Start";
|
||||
$strPrevious = "Forrige";
|
||||
$strPrimary = "Primær";
|
||||
$strPrimaryKey = "Primær nøgle";
|
||||
$strPrinterFriendly = "Udskrift venlig version af ovenstående tabel";
|
||||
$strPrintView = "Vis (udskriftvenlig)";
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "forsagede en fejl.";
|
||||
$strProperties = "Egenskaber";
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Start';
|
||||
$strPrevious = 'Forrige';
|
||||
$strPrimary = 'Primær';
|
||||
$strPrimaryKey = 'Primær nøgle';
|
||||
$strPrinterFriendly = 'Udskrift venlig version af ovenstående tabel';
|
||||
$strPrintView = 'Vis (udskriftvenlig)';
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'forsagede en fejl.';
|
||||
$strProperties = 'Egenskaber';
|
||||
|
||||
$strQBE = "Query by Example";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBE = 'Query by Example';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strReadTheDocs = "Læs dokumentationen";
|
||||
$strRecords = "Poster";
|
||||
$strReloadFailed = "Genstart af MySQL fejlede.";
|
||||
$strReloadMySQL = "Genstart MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Omdøb tabel til";
|
||||
$strRenameTableOK = "Tabellen %s er nu omdøbt til: %s";
|
||||
$strRepairTable = "Reparer tabel";
|
||||
$strReplace = "Erstat";
|
||||
$strReplaceTable = "Erstat data i tabellen med filens data";
|
||||
$strReset = "Nulstil";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rækker startende fra";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "kører på ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Kør en/flere SQL forespørgsler på database ";
|
||||
$strReadTheDocs = 'Læs dokumentationen';
|
||||
$strRecords = 'Poster';
|
||||
$strReloadFailed = 'Genstart af MySQL fejlede.';
|
||||
$strReloadMySQL = 'Genstart MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Omdøb tabel til';
|
||||
$strRenameTableOK = 'Tabellen %s er nu omdøbt til: %s';
|
||||
$strRepairTable = 'Reparer tabel';
|
||||
$strReplace = 'Erstat';
|
||||
$strReplaceTable = 'Erstat data i tabellen med filens data';
|
||||
$strReset = 'Nulstil';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rækker startende fra';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'kører på ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Kør en/flere SQL forespørgsler på database ';
|
||||
|
||||
$strSave = "Gem";
|
||||
$strSelect = "Vælg";
|
||||
$strSelectFields = "Vælg mindst eet felt:";
|
||||
$strSelectNumRows = "i forespørgsel";
|
||||
$strSend = "send";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Vis";
|
||||
$strShowingRecords = "Viser poster ";
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-forespørgsel";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV data";
|
||||
$strStrucData = "Struturen og data";
|
||||
$strStrucDrop = "Tilføj 'drop table'";
|
||||
$strStrucOnly = "Kun strukturen";
|
||||
$strSubmit = "Send";
|
||||
$strSuccess = "Din SQL-forespørgsel blev eksekveret korrekt";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strSave = 'Gem';
|
||||
$strSelect = 'Vælg';
|
||||
$strSelectFields = 'Vælg mindst eet felt:';
|
||||
$strSelectNumRows = 'i forespørgsel';
|
||||
$strSend = 'send';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Vis';
|
||||
$strShowingRecords = 'Viser poster ';
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-forespørgsel';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV data';
|
||||
$strStrucData = 'Struturen og data';
|
||||
$strStrucDrop = 'Tilføj \'drop table\'';
|
||||
$strStrucOnly = 'Kun strukturen';
|
||||
$strSubmit = 'Send';
|
||||
$strSuccess = 'Din SQL-forespørgsel blev eksekveret korrekt';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strTable = "Tabel: ";
|
||||
$strTableComments = "Tabel kommentarer";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Struktur dump for tabellen";
|
||||
$strTableType = "Tabel type";
|
||||
$strTerminatedBy = "er afgrænset af";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "Filens indhold er importeret.";
|
||||
$strTheContents = "Filens indhold erstatter den valgte tabels rækker for rækker med identisk primær eller unik nøgle.";
|
||||
$strTheTerminator = "Felterne afgrænses af dette tegn.";
|
||||
$strTotal = "total";
|
||||
$strType = "Datatype";
|
||||
$strTable = 'Tabel: ';
|
||||
$strTableComments = 'Tabel kommentarer';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Struktur dump for tabellen';
|
||||
$strTableType = 'Tabel type';
|
||||
$strTerminatedBy = 'er afgrænset af';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'Filens indhold er importeret.';
|
||||
$strTheContents = 'Filens indhold erstatter den valgte tabels rækker for rækker med identisk primær eller unik nøgle.';
|
||||
$strTheTerminator = 'Felterne afgrænses af dette tegn.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Datatype';
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Unik";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Unik';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strValue = "Værdi";
|
||||
$strViewDump = "Vis dump (skema) over tabel";
|
||||
$strViewDumpDB = "Vis dump (skema) af database";
|
||||
$strValue = 'Værdi';
|
||||
$strViewDump = 'Vis dump (skema) over tabel';
|
||||
$strViewDumpDB = 'Vis dump (skema) af database';
|
||||
|
||||
$strWelcome = "Velkommen til ";
|
||||
$strWrongUser = "Forkert brugernavn/kodeord. Adgang Nægtet.";
|
||||
$strWelcome = 'Velkommen til ';
|
||||
$strWrongUser = 'Forkert brugernavn/kodeord. Adgang Nægtet.';
|
||||
|
||||
$strYes = "Ja";
|
||||
$strYes = 'Ja';
|
||||
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Toegang geweigerd ";
|
||||
$strAction = "Aktie";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Nieuw veld toevoegen";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Zoekcondities toevoegen (het \"where\" gedeelte van de query):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Een index is toegevoegd aan ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "Een primaire sleutel is toegevoegd aan ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "Attributen";
|
||||
|
||||
$strBack = "Terug";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Verkennen";
|
||||
$strAccessDenied = 'Toegang geweigerd ';
|
||||
$strAction = 'Aktie';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Nieuw veld toevoegen';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Zoekcondities toevoegen (het "where" gedeelte van de query):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Een index is toegevoegd aan ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'Een primaire sleutel is toegevoegd aan ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = 'Attributen';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Carriage return: \\r";
|
||||
$strChange = "Veranderen";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Kolomnamen";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Kopieer tabel naar:";
|
||||
$strCopyTableOK = "Tabel %s is gekopieerd naar %s.";
|
||||
$strCreate = "Aanmaken";
|
||||
$strCreateNewDatabase = "Nieuwe database aanmaken";
|
||||
$strCreateNewTable = "Nieuwe tabel aanmaken in database ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Terug';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Verkennen';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "Database ";
|
||||
$strDatabases = "databases";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Standaardwaarde";
|
||||
$strDelete = "Verwijderen";
|
||||
$strDeleted = "De rij is verwijderd";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "Voer een query op basis van een vergelijking uit (wildcard: \"%\")";
|
||||
$strDocu = "Documentatie";
|
||||
$strDoYouReally = "Weet u zeker dat u wilt ";
|
||||
$strDrop = "Verwijderen";
|
||||
$strDropDB = "Verwijder database ";
|
||||
$strDumpingData = "Gegevens worden uitgevoerd voor tabel";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Carriage return: \\r';
|
||||
$strChange = 'Veranderen';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Kolomnamen';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Kopieer tabel naar:';
|
||||
$strCopyTableOK = 'Tabel %s is gekopieerd naar %s.';
|
||||
$strCreate = 'Aanmaken';
|
||||
$strCreateNewDatabase = 'Nieuwe database aanmaken';
|
||||
$strCreateNewTable = 'Nieuwe tabel aanmaken in database ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Wijzigen";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Legen";
|
||||
$strEmptyResultSet = "MySQL retourneerde een lege result set (0 rijen).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "enclosed by";
|
||||
$strEnd = "Einde";
|
||||
$strError = "Fout";
|
||||
$strEscapedBy = "escaped by";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'Database ';
|
||||
$strDatabases = 'databases';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Standaardwaarde';
|
||||
$strDelete = 'Verwijderen';
|
||||
$strDeleted = 'De rij is verwijderd';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = 'Voer een query op basis van een vergelijking uit (wildcard: "%")';
|
||||
$strDocu = 'Documentatie';
|
||||
$strDoYouReally = 'Weet u zeker dat u wilt ';
|
||||
$strDrop = 'Verwijderen';
|
||||
$strDropDB = 'Verwijder database ';
|
||||
$strDumpingData = 'Gegevens worden uitgevoerd voor tabel';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Veld";
|
||||
$strFields = "Velden";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Functie";
|
||||
$strEdit = 'Wijzigen';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Legen';
|
||||
$strEmptyResultSet = 'MySQL retourneerde een lege result set (0 rijen).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'enclosed by';
|
||||
$strEnd = 'Einde';
|
||||
$strError = 'Fout';
|
||||
$strEscapedBy = 'escaped by';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Start";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Veld';
|
||||
$strFields = 'Velden';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Functie';
|
||||
|
||||
$strHasBeenAltered = "is veranderd.";
|
||||
$strHasBeenCreated = "is aangemaakt.";
|
||||
$strHasBeenDropped = "is verwijderd.";
|
||||
$strHasBeenEmptied = "is leeggemaakt.";
|
||||
$strHome = "Home";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Start';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "Indien u slechts enkele van de tabelkolommen wilt laden, voer dan een door komma\'s gescheiden veld lijst in.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Invoegen";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Invoegen in tabel";
|
||||
$strInsertNewRow = "Nieuwe rij invoegen";
|
||||
$strInsertTextfiles = "Invoegen tekstbestanden in tabel";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'is veranderd.';
|
||||
$strHasBeenCreated = 'is aangemaakt.';
|
||||
$strHasBeenDropped = 'is verwijderd.';
|
||||
$strHasBeenEmptied = 'is leeggemaakt.';
|
||||
$strHome = 'Home';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Sleutelnaam";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'Indien u slechts enkele van de tabelkolommen wilt laden, voer dan een door komma\'s gescheiden veld lijst in.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Invoegen';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Invoegen in tabel';
|
||||
$strInsertNewRow = 'Nieuwe rij invoegen';
|
||||
$strInsertTextfiles = 'Invoegen tekstbestanden in tabel';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Lengte";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "Linefeed: \\n";
|
||||
$strLines = "Regels";
|
||||
$strLocationTextfile = "Locatie van het tekstbestand";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Uitloggen";
|
||||
$strKeyname = 'Sleutelnaam';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "Wijzigingen opgeslagen.";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL opnieuw geladen.";
|
||||
$strMySQLSaid = "MySQL retourneerde: ";
|
||||
$strMySQLShowProcess = "Laat processen zien";
|
||||
$strMySQLShowStatus = "MySQL runtime informatie";
|
||||
$strMySQLShowVars = "MySQL systeemvariabelen";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Lengte';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = 'Linefeed: \\n';
|
||||
$strLines = 'Regels';
|
||||
$strLocationTextfile = 'Locatie van het tekstbestand';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Uitloggen';
|
||||
|
||||
$strName = "Naam";
|
||||
$strNext = "Volgende";
|
||||
$strNo = "Nee";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Geen tabellen gevonden in de database.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'Wijzigingen opgeslagen.';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL opnieuw geladen.';
|
||||
$strMySQLSaid = 'MySQL retourneerde: ';
|
||||
$strMySQLShowProcess = 'Laat processen zien';
|
||||
$strMySQLShowStatus = 'MySQL runtime informatie';
|
||||
$strMySQLShowVars = 'MySQL systeemvariabelen';
|
||||
|
||||
$strOftenQuotation = "Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the \"enclosed by\"-character.";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Optional. Controls how to write or read special characters.";
|
||||
$strOptionally = "OPTIONEEL";
|
||||
$strOr = "Of";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Naam';
|
||||
$strNext = 'Volgende';
|
||||
$strNo = 'Nee';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Geen tabellen gevonden in de database.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Begin";
|
||||
$strPrevious = "Vorige";
|
||||
$strPrimary = "Primaire sleutel";
|
||||
$strPrimaryKey = "Primaire sleutel";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "leverde een fout op.";
|
||||
$strProperties = "Eigenschappen";
|
||||
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Optional. Controls how to write or read special characters.';
|
||||
$strOptionally = 'OPTIONEEL';
|
||||
$strOr = 'Of';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Query opbouwen";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Begin';
|
||||
$strPrevious = 'Vorige';
|
||||
$strPrimary = 'Primaire sleutel';
|
||||
$strPrimaryKey = 'Primaire sleutel';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'leverde een fout op.';
|
||||
$strProperties = 'Eigenschappen';
|
||||
|
||||
$strReadTheDocs = "Lees de documentatie";
|
||||
$strRecords = "Records";
|
||||
$strReloadFailed = "Opnieuw laden van MySQL mislukt.";
|
||||
$strReloadMySQL = "MySQL opnieuw laden.";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Tabel hernoemen naar";
|
||||
$strRenameTableOK = "Tabel %s is hernoemd naar %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "Vervangen";
|
||||
$strReplaceTable = "Vervang tabelgegevens met bestand";
|
||||
$strReset = "Reset";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "wordt uitgevoerd op ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "SQL query/queries uitvoeren op database ";
|
||||
$strQBE = 'Query opbouwen';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Opslaan";
|
||||
$strSelect = "Selecteren";
|
||||
$strSelectFields = "Selecteer velden (tenminste 1):";
|
||||
$strSelectNumRows = "in query";
|
||||
$strSend = "verzenden";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Show"; //to translate
|
||||
$strShowingRecords = "Records laten zien ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-query";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV gegevens";
|
||||
$strStrucData = "Structuur en gegevens";
|
||||
$strStrucDrop = "'drop table' toevoegen";
|
||||
$strStrucOnly = "Alleen structuur";
|
||||
$strSubmit = "Verzenden";
|
||||
$strSuccess = "Uw SQL-query is succesvol uitgevoerd.";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'Lees de documentatie';
|
||||
$strRecords = 'Records';
|
||||
$strReloadFailed = 'Opnieuw laden van MySQL mislukt.';
|
||||
$strReloadMySQL = 'MySQL opnieuw laden.';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Tabel hernoemen naar';
|
||||
$strRenameTableOK = 'Tabel %s is hernoemd naar %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'Vervangen';
|
||||
$strReplaceTable = 'Vervang tabelgegevens met bestand';
|
||||
$strReset = 'Reset';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'wordt uitgevoerd op ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'SQL query/queries uitvoeren op database ';
|
||||
|
||||
$strTable = "Tabel ";
|
||||
$strTableComments = "Tabel opmerkingen";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Tabel structuur voor tabel";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "eindigend op";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "De inhoud van uw bestanden is ingevoegd.";
|
||||
$strTheContents = "De inhoud van het bestand vervangt de inhoud van de geselecteerde tabel voor rijen met een identieke primaire of unieke sleutel.";
|
||||
$strTheTerminator = "De \'terminator\' van de velden.";
|
||||
$strTotal = "totaal";
|
||||
$strType = "Type";
|
||||
$strSave = 'Opslaan';
|
||||
$strSelect = 'Selecteren';
|
||||
$strSelectFields = 'Selecteer velden (tenminste 1):';
|
||||
$strSelectNumRows = 'in query';
|
||||
$strSend = 'verzenden';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Show'; //to translate
|
||||
$strShowingRecords = 'Records laten zien ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-query';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV gegevens';
|
||||
$strStrucData = 'Structuur en gegevens';
|
||||
$strStrucDrop = '\'drop table\' toevoegen';
|
||||
$strStrucOnly = 'Alleen structuur';
|
||||
$strSubmit = 'Verzenden';
|
||||
$strSuccess = 'Uw SQL-query is succesvol uitgevoerd.';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Unieke waarde";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'Tabel ';
|
||||
$strTableComments = 'Tabel opmerkingen';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Tabel structuur voor tabel';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'eindigend op';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'De inhoud van uw bestanden is ingevoegd.';
|
||||
$strTheContents = 'De inhoud van het bestand vervangt de inhoud van de geselecteerde tabel voor rijen met een identieke primaire of unieke sleutel.';
|
||||
$strTheTerminator = 'De \'terminator\' van de velden.';
|
||||
$strTotal = 'totaal';
|
||||
$strType = 'Type';
|
||||
|
||||
$strValue = "Waarde";
|
||||
$strViewDump = "Bekijk een dump (schema) van tabel";
|
||||
$strViewDumpDB = "Bekijk een dump (schema) van database";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Unieke waarde';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Welkom op ";
|
||||
$strWrongUser = "Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd.";
|
||||
$strValue = 'Waarde';
|
||||
$strViewDump = 'Bekijk een dump (schema) van tabel';
|
||||
$strViewDumpDB = 'Bekijk een dump (schema) van database';
|
||||
|
||||
$strYes = "Ja";
|
||||
$strWelcome = 'Welkom op ';
|
||||
$strWrongUser = 'Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd.';
|
||||
|
||||
$strYes = 'Ja';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,284 +1,284 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
|
||||
$strAccessDenied = "Access denied";
|
||||
$strAction = "Action";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns";
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row";
|
||||
$strAddNewField = "Add new field";
|
||||
$strAddPriv = "Add a new Privilege";
|
||||
$strAddPrivMessage = "You have added a new privilege.";
|
||||
$strAddSearchConditions = "Add search conditions (body of the \"where\" clause):";
|
||||
$strAddUser = "Add a new User";
|
||||
$strAddUserMessage = "You have added a new user.";
|
||||
$strAfter = "After";
|
||||
$strAll = "All";
|
||||
$strAlterOrderBy = "Alter table order by";
|
||||
$strAnalyzeTable = "Analyze table";
|
||||
$strAnd = "And";
|
||||
$strAnIndex = "An index has been added on ";
|
||||
$strAny = "Any";
|
||||
$strAnyColumn = "Any Column";
|
||||
$strAnyDatabase = "Any database";
|
||||
$strAnyHost = "Any host";
|
||||
$strAnyTable = "Any table";
|
||||
$strAnyUser = "Any user";
|
||||
$strAPrimaryKey = "A primary key has been added on ";
|
||||
$strAscending = "Ascending";
|
||||
$strAtBeginningOfTable = "At Beginning of Table";
|
||||
$strAtEndOfTable = "At End of Table";
|
||||
$strAttr = "Attributes";
|
||||
$strAccessDenied = 'Access denied';
|
||||
$strAction = 'Action';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns';
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row';
|
||||
$strAddNewField = 'Add new field';
|
||||
$strAddPriv = 'Add a new Privilege';
|
||||
$strAddPrivMessage = 'You have added a new privilege.';
|
||||
$strAddSearchConditions = 'Add search conditions (body of the "where" clause):';
|
||||
$strAddUser = 'Add a new User';
|
||||
$strAddUserMessage = 'You have added a new user.';
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strAfter = 'After';
|
||||
$strAll = 'All';
|
||||
$strAlterOrderBy = 'Alter table order by';
|
||||
$strAnalyzeTable = 'Analyze table';
|
||||
$strAnd = 'And';
|
||||
$strAnIndex = 'An index has been added on ';
|
||||
$strAny = 'Any';
|
||||
$strAnyColumn = 'Any Column';
|
||||
$strAnyDatabase = 'Any database';
|
||||
$strAnyHost = 'Any host';
|
||||
$strAnyTable = 'Any table';
|
||||
$strAnyUser = 'Any user';
|
||||
$strAPrimaryKey = 'A primary key has been added on ';
|
||||
$strAscending = 'Ascending';
|
||||
$strAtBeginningOfTable = 'At Beginning of Table';
|
||||
$strAtEndOfTable = 'At End of Table';
|
||||
$strAttr = 'Attributes';
|
||||
|
||||
$strBack = "Back";
|
||||
$strBinary = "Binary";
|
||||
$strBinaryDoNotEdit = "Binary - do not edit";
|
||||
$strBookmarkLabel = "Label";
|
||||
$strBookmarkQuery = "Bookmarked SQL-query";
|
||||
$strBookmarkThis = "Bookmark this SQL-query";
|
||||
$strBookmarkView = "View only";
|
||||
$strBrowse = "Browse";
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strBack = 'Back';
|
||||
$strBinary = 'Binary';
|
||||
$strBinaryDoNotEdit = 'Binary - do not edit';
|
||||
$strBookmarkLabel = 'Label';
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query';
|
||||
$strBookmarkThis = 'Bookmark this SQL-query';
|
||||
$strBookmarkView = 'View only';
|
||||
$strBrowse = 'Browse';
|
||||
$strBzip = '"bzipped"';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration.";
|
||||
$strCarriage = "Carriage return: \\r";
|
||||
$strChange = "Change";
|
||||
$strCheckAll = "Check All";
|
||||
$strCheckDbPriv = "Check Database Privileges";
|
||||
$strCheckTable = "Check table";
|
||||
$strColumn = "Column";
|
||||
$strColumnEmpty = "The columns names are empty!";
|
||||
$strColumnNames = "Column names";
|
||||
$strCompleteInserts = "Complete inserts";
|
||||
$strConfirm = "Do you really want to do it?";
|
||||
$strCopyTable = "Copy table to:";
|
||||
$strCopyTableOK = "Table %s has been copied to %s.";
|
||||
$strCreate = "Create";
|
||||
$strCreateNewDatabase = "Create new database";
|
||||
$strCreateNewTable = "Create new table on database ";
|
||||
$strCriteria = "Criteria";
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.';
|
||||
$strCarriage = 'Carriage return: \\r';
|
||||
$strChange = 'Change';
|
||||
$strCheckAll = 'Check All';
|
||||
$strCheckDbPriv = 'Check Database Privileges';
|
||||
$strCheckTable = 'Check table';
|
||||
$strColumn = 'Column';
|
||||
$strColumnEmpty = 'The columns names are empty!';
|
||||
$strColumnNames = 'Column names';
|
||||
$strCompleteInserts = 'Complete inserts';
|
||||
$strConfirm = 'Do you really want to do it?';
|
||||
$strCopyTable = 'Copy table to:';
|
||||
$strCopyTableOK = 'Table %s has been copied to %s.';
|
||||
$strCreate = 'Create';
|
||||
$strCreateNewDatabase = 'Create new database';
|
||||
$strCreateNewTable = 'Create new table on database ';
|
||||
$strCriteria = 'Criteria';
|
||||
|
||||
$strData = "Data";
|
||||
$strDatabase = "Database ";
|
||||
$strDatabases = "databases";
|
||||
$strDataOnly = "Data only";
|
||||
$strDbEmpty = "The database name is empty!";
|
||||
$strDefault = "Default";
|
||||
$strDelete = "Delete";
|
||||
$strDeleted = "The row has been deleted";
|
||||
$strDeleteFailed = "Deleted Failed!";
|
||||
$strDeletePassword = "Delete Password";
|
||||
$strDeleteUserMessage = "You have deleted the user";
|
||||
$strDelPassMessage = "You have deleted the password for";
|
||||
$strDescending = "Desending";
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.";
|
||||
$strDisplay = "Display";
|
||||
$strDoAQuery = "Do a \"query by example\" (wildcard: \"%\")";
|
||||
$strDocu = "Documentation";
|
||||
$strDoYouReally = "Do you really want to ";
|
||||
$strDrop = "Drop";
|
||||
$strDropDB = "Drop database ";
|
||||
$strDumpingData = "Dumping data for table";
|
||||
$strDynamic = "dynamic";
|
||||
$strData = 'Data';
|
||||
$strDatabase = 'Database ';
|
||||
$strDatabases = 'databases';
|
||||
$strDataOnly = 'Data only';
|
||||
$strDbEmpty = 'The database name is empty!';
|
||||
$strDefault = 'Default';
|
||||
$strDelete = 'Delete';
|
||||
$strDeleted = 'The row has been deleted';
|
||||
$strDeleteFailed = 'Deleted Failed!';
|
||||
$strDeletePassword = 'Delete Password';
|
||||
$strDeleteUserMessage = 'You have deleted the user';
|
||||
$strDelPassMessage = 'You have deleted the password for';
|
||||
$strDescending = 'Desending';
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.';
|
||||
$strDisplay = 'Display';
|
||||
$strDoAQuery = 'Do a "query by example" (wildcard: "%")';
|
||||
$strDocu = 'Documentation';
|
||||
$strDoYouReally = 'Do you really want to ';
|
||||
$strDrop = 'Drop';
|
||||
$strDropDB = 'Drop database ';
|
||||
$strDumpingData = 'Dumping data for table';
|
||||
$strDynamic = 'dynamic';
|
||||
|
||||
$strEdit = "Edit";
|
||||
$strEditPrivileges = "Edit Privileges";
|
||||
$strEffective = "Effective";
|
||||
$strEmpty = "Empty";
|
||||
$strEmptyResultSet = "MySQL returned an empty result set (i.e. zero rows).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.";
|
||||
$strEnclosedBy = "enclosed by";
|
||||
$strEnd = "End";
|
||||
$strEnglishPrivileges = " Note: MySQL privilege names are expressed in English ";
|
||||
$strError = "Error";
|
||||
$strEscapedBy = "escaped by";
|
||||
$strExtra = "Extra";
|
||||
$strEdit = 'Edit';
|
||||
$strEditPrivileges = 'Edit Privileges';
|
||||
$strEffective = 'Effective';
|
||||
$strEmpty = 'Empty';
|
||||
$strEmptyResultSet = 'MySQL returned an empty result set (i.e. zero rows).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.';
|
||||
$strEnclosedBy = 'enclosed by';
|
||||
$strEnd = 'End';
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English ';
|
||||
$strError = 'Error';
|
||||
$strEscapedBy = 'escaped by';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strField = "Field";
|
||||
$strFields = "Fields";
|
||||
$strFixed = "fixed";
|
||||
$strFormat = "Format";
|
||||
$strFunction = "Function";
|
||||
$strField = 'Field';
|
||||
$strFields = 'Fields';
|
||||
$strFieldsEmpty = ' The field count is empty! ';
|
||||
$strFixed = 'fixed';
|
||||
$strFormat = 'Format';
|
||||
$strFunction = 'Function';
|
||||
|
||||
$strGenTime = "Generation Time";
|
||||
$strGo = "Go";
|
||||
$strGrants = "Grants";
|
||||
$strGzip = "\"gzipped\"";
|
||||
$strGenTime = 'Generation Time';
|
||||
$strGo = 'Go';
|
||||
$strGrants = 'Grants';
|
||||
$strGzip = '"gzipped"';
|
||||
|
||||
$strHasBeenAltered = "has been altered.";
|
||||
$strHasBeenCreated = "has been created.";
|
||||
$strHasBeenDropped = "has been dropped.";
|
||||
$strHasBeenEmptied = "has been emptied.";
|
||||
$strHome = "Home";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage";
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page";
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "The host name is empty!";
|
||||
$strHasBeenAltered = 'has been altered.';
|
||||
$strHasBeenCreated = 'has been created.';
|
||||
$strHasBeenDropped = 'has been dropped.';
|
||||
$strHasBeenEmptied = 'has been emptied.';
|
||||
$strHome = 'Home';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage';
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page';
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'The host name is empty!';
|
||||
|
||||
$strIfYouWish = "If you wish to load only some of a table's columns, specify a comma separated field list.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexes";
|
||||
$strInsert = "Insert";
|
||||
$strInsertAsNewRow = "Insert as new row";
|
||||
$strInsertIntoTable = "Insert into table";
|
||||
$strInsertNewRow = "Insert new row";
|
||||
$strInsertTextfiles = "Insert textfiles into table";
|
||||
$strInUse = "in use";
|
||||
$strIfYouWish = 'If you wish to load only some of a table\'s columns, specify a comma separated field list.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexes';
|
||||
$strInsert = 'Insert';
|
||||
$strInsertAsNewRow = 'Insert as new row';
|
||||
$strInsertIntoTable = 'Insert into table';
|
||||
$strInsertNewRow = 'Insert new row';
|
||||
$strInsertTextfiles = 'Insert textfiles into table';
|
||||
$strInUse = 'in use';
|
||||
|
||||
$strKeyname = "Keyname";
|
||||
$strKill = "Kill";
|
||||
$strKeyname = 'Keyname';
|
||||
$strKill = 'Kill';
|
||||
|
||||
$strLength = "Length";
|
||||
$strLengthSet = "Length/Set";
|
||||
$strLimitNumRows = "records per page";
|
||||
$strLineFeed = "Linefeed: \\n";
|
||||
$strLines = "Lines";
|
||||
$strLocationTextfile = "Location of the textfile";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Log out";
|
||||
$strLength = 'Length';
|
||||
$strLengthSet = 'Length/Set';
|
||||
$strLimitNumRows = 'records per page';
|
||||
$strLineFeed = 'Linefeed: \\n';
|
||||
$strLines = 'Lines';
|
||||
$strLocationTextfile = 'Location of the textfile';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Log out';
|
||||
|
||||
$strModifications = "Modifications have been saved";
|
||||
$strModify = "Modify";
|
||||
$strMySQLReloaded = "MySQL reloaded.";
|
||||
$strMySQLSaid = "MySQL said: ";
|
||||
$strMySQLShowProcess = "Show processes";
|
||||
$strMySQLShowStatus = "Show MySQL runtime information";
|
||||
$strMySQLShowVars = "Show MySQL system variables";
|
||||
$strModifications = 'Modifications have been saved';
|
||||
$strModify = 'Modify';
|
||||
$strMySQLReloaded = 'MySQL reloaded.';
|
||||
$strMySQLSaid = 'MySQL said: ';
|
||||
$strMySQLShowProcess = 'Show processes';
|
||||
$strMySQLShowStatus = 'Show MySQL runtime information';
|
||||
$strMySQLShowVars = 'Show MySQL system variables';
|
||||
|
||||
$strName = "Name";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strNext = "Next";
|
||||
$strNo = "No";
|
||||
$strNoPassword = "No Password";
|
||||
$strNoPrivileges = "No Privileges";
|
||||
$strNoRights = "You don't have enough rights to be here right now!";
|
||||
$strNoTablesFound = "No tables found in database.";
|
||||
$strNotNumber = "This is not a number!";
|
||||
$strNotValidNumber = " is not a valid row number!";
|
||||
$strNoUsersFound = "No user(s) found.";
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Number of advanced indexes ";
|
||||
$strName = 'Name';
|
||||
$strNbRecords = 'No. Of records';
|
||||
$strNext = 'Next';
|
||||
$strNo = 'No';
|
||||
$strNoPassword = 'No Password';
|
||||
$strNoPrivileges = 'No Privileges';
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!';
|
||||
$strNoTablesFound = 'No tables found in database.';
|
||||
$strNotNumber = 'This is not a number!';
|
||||
$strNotValidNumber = ' is not a valid row number!';
|
||||
$strNoUsersFound = 'No user(s) found.';
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Number of advanced indexes ';
|
||||
|
||||
$strOffSet = "Offset";
|
||||
$strOftenQuotation = "Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the \"enclosed by\"-character.";
|
||||
$strOptimizeTable = "Optimize table";
|
||||
$strOptionalControls = "Optional. Controls how to write or read special characters.";
|
||||
$strOptionally = "OPTIONALLY";
|
||||
$strOr = "Or";
|
||||
$strOverhead = "Overhead";
|
||||
$strOffSet = 'Offset';
|
||||
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.';
|
||||
$strOptimizeTable = 'Optimize table';
|
||||
$strOptionalControls = 'Optional. Controls how to write or read special characters.';
|
||||
$strOptionally = 'OPTIONALLY';
|
||||
$strOr = 'Or';
|
||||
$strOverhead = 'Overhead';
|
||||
|
||||
$strPassword = "Password";
|
||||
$strPasswordEmpty = "The password is empty!";
|
||||
$strPasswordNotSame = "The passwords aren't the same!";
|
||||
$strPHPVersion = "PHP Version";
|
||||
$strPos1 = "Begin";
|
||||
$strPrevious = "Previous";
|
||||
$strPrimary = "Primary";
|
||||
$strPrimaryKey = "Primary key";
|
||||
$strPrinterFriendly = "Printer friendly version of above table";
|
||||
$strPrintView = "Print view";
|
||||
$strPrivileges = "Privileges";
|
||||
$strProducedAnError = "produced an error.";
|
||||
$strProperties = "Properties";
|
||||
$strPassword = 'Password';
|
||||
$strPasswordEmpty = 'The password is empty!';
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!';
|
||||
$strPHPVersion = 'PHP Version';
|
||||
$strPos1 = 'Begin';
|
||||
$strPrevious = 'Previous';
|
||||
$strPrimary = 'Primary';
|
||||
$strPrimaryKey = 'Primary key';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table';
|
||||
$strPrintView = 'Print view';
|
||||
$strPrivileges = 'Privileges';
|
||||
$strProducedAnError = 'produced an error.';
|
||||
$strProperties = 'Properties';
|
||||
|
||||
$strQBE = "Query by Example";
|
||||
$strQBEDel = "Del";
|
||||
$strQBEIns = "Ins";
|
||||
$strQBE = 'Query by Example';
|
||||
$strQBEDel = 'Del';
|
||||
$strQBEIns = 'Ins';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
|
||||
$strReadTheDocs = "Read the docs";
|
||||
$strRecords = "Records";
|
||||
$strReloadFailed = "MySQL reload failed.";
|
||||
$strReloadMySQL = "Reload MySQL";
|
||||
$strRememberReload = "Remember reload the server.";
|
||||
$strRenameTable = "Rename table to";
|
||||
$strRenameTableOK = "Table %s has been renamed to %s";
|
||||
$strRepairTable = "Repair table";
|
||||
$strReplace = "Replace";
|
||||
$strReplaceTable = "Replace table data with file";
|
||||
$strReset = "Reset";
|
||||
$strReType = "Re-type";
|
||||
$strRevoke = "Revoke";
|
||||
$strRevokeGrant = "Revoke Grant";
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for";
|
||||
$strRevokeMessage = "You have revoked the privileges for";
|
||||
$strRevokePriv = "Revoke Privileges";
|
||||
$strRowLength = "Row length";
|
||||
$strRows = "Rows";
|
||||
$strRowsFrom = "rows starting from";
|
||||
$strRowSize = " Row size ";
|
||||
$strRowsStatistic = "Row Statistic";
|
||||
$strRunning = "running on ";
|
||||
$strRunQuery = "Submit Query";
|
||||
$strRunSQLQuery = "Run SQL query/queries on database ";
|
||||
$strReadTheDocs = 'Read the docs';
|
||||
$strRecords = 'Records';
|
||||
$strReloadFailed = 'MySQL reload failed.';
|
||||
$strReloadMySQL = 'Reload MySQL';
|
||||
$strRememberReload = 'Remember reload the server.';
|
||||
$strRenameTable = 'Rename table to';
|
||||
$strRenameTableOK = 'Table %s has been renamed to %s';
|
||||
$strRepairTable = 'Repair table';
|
||||
$strReplace = 'Replace';
|
||||
$strReplaceTable = 'Replace table data with file';
|
||||
$strReset = 'Reset';
|
||||
$strReType = 'Re-type';
|
||||
$strRevoke = 'Revoke';
|
||||
$strRevokeGrant = 'Revoke Grant';
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for';
|
||||
$strRevokeMessage = 'You have revoked the privileges for';
|
||||
$strRevokePriv = 'Revoke Privileges';
|
||||
$strRowLength = 'Row length';
|
||||
$strRows = 'Rows';
|
||||
$strRowsFrom = 'rows starting from';
|
||||
$strRowSize = ' Row size ';
|
||||
$strRowsStatistic = 'Row Statistic';
|
||||
$strRunning = 'running on ';
|
||||
$strRunQuery = 'Submit Query';
|
||||
$strRunSQLQuery = 'Run SQL query/queries on database ';
|
||||
|
||||
$strSave = "Save";
|
||||
$strSelect = "Select";
|
||||
$strSelectFields = "Select fields (at least one):";
|
||||
$strSelectNumRows = "in query";
|
||||
$strSend = "Send";
|
||||
$strSequence = "Seq.";
|
||||
$strServerVersion = "Server version";
|
||||
$strShow = "Show";
|
||||
$strShowingRecords = "Showing records ";
|
||||
$strSingly = "(singly)";
|
||||
$strSize = "Size";
|
||||
$strSort = "Sort";
|
||||
$strSpaceUsage = "Space usage";
|
||||
$strSQLQuery = "SQL-query";
|
||||
$strStatement = "Statements";
|
||||
$strStrucCSV = "CSV data";
|
||||
$strStrucData = "Structure and data";
|
||||
$strStrucDrop = "Add 'drop table'";
|
||||
$strStrucOnly = "Structure only";
|
||||
$strSubmit = "Submit";
|
||||
$strSuccess = "Your SQL-query has been executed successfully";
|
||||
$strSum = "Sum";
|
||||
$strSave = 'Save';
|
||||
$strSelect = 'Select';
|
||||
$strSelectFields = 'Select fields (at least one):';
|
||||
$strSelectNumRows = 'in query';
|
||||
$strSend = 'Send';
|
||||
$strSequence = 'Seq.';
|
||||
$strServerVersion = 'Server version';
|
||||
$strShow = 'Show';
|
||||
$strShowingRecords = 'Showing records ';
|
||||
$strShowThisQuery = ' Show this query here again ';
|
||||
$strSingly = '(singly)';
|
||||
$strSize = 'Size';
|
||||
$strSort = 'Sort';
|
||||
$strSpaceUsage = 'Space usage';
|
||||
$strSQLQuery = 'SQL-query';
|
||||
$strStatement = 'Statements';
|
||||
$strStrucCSV = 'CSV data';
|
||||
$strStrucData = 'Structure and data';
|
||||
$strStrucDrop = 'Add \'drop table\'';
|
||||
$strStrucOnly = 'Structure only';
|
||||
$strSubmit = 'Submit';
|
||||
$strSuccess = 'Your SQL-query has been executed successfully';
|
||||
$strSum = 'Sum';
|
||||
|
||||
$strTable = "table ";
|
||||
$strTableComments = "Table comments";
|
||||
$strTableEmpty = "The table name is empty!";
|
||||
$strTableMaintenance = "Table maintenance";
|
||||
$strTableStructure = "Table structure for table";
|
||||
$strTableType = "Table type";
|
||||
$strTerminatedBy = "terminated by";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable ";
|
||||
$strTheContent = "The content of your file has been inserted.";
|
||||
$strTheContents = "The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.";
|
||||
$strTheTerminator = "The terminator of the fields.";
|
||||
$strTotal = "total";
|
||||
$strType = "Type";
|
||||
$strTable = 'table ';
|
||||
$strTableComments = 'Table comments';
|
||||
$strTableEmpty = 'The table name is empty!';
|
||||
$strTableMaintenance = 'Table maintenance';
|
||||
$strTableStructure = 'Table structure for table';
|
||||
$strTableType = 'Table type';
|
||||
$strTerminatedBy = 'terminated by';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable ';
|
||||
$strTheContent = 'The content of your file has been inserted.';
|
||||
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
|
||||
$strTheTerminator = 'The terminator of the fields.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Type';
|
||||
|
||||
$strUncheckAll = "Uncheck All";
|
||||
$strUnique = "Unique";
|
||||
$strUpdatePassMessage = "You have updated the password for";
|
||||
$strUpdatePassword = "Update Password";
|
||||
$strUpdatePrivMessage = "You have updated the privileges for";
|
||||
$strUpdateQuery = "Update Query";
|
||||
$strUsage = "Usage";
|
||||
$strUser = "User";
|
||||
$strUserEmpty = "The user name is empty!";
|
||||
$strUserName = "User name";
|
||||
$strUsers = "Users";
|
||||
$strUseTables = "Use Tables";
|
||||
$strUncheckAll = 'Uncheck All';
|
||||
$strUnique = 'Unique';
|
||||
$strUpdatePassMessage = 'You have updated the password for';
|
||||
$strUpdatePassword = 'Update Password';
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for';
|
||||
$strUpdateQuery = 'Update Query';
|
||||
$strUsage = 'Usage';
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
$strUser = 'User';
|
||||
$strUserEmpty = 'The user name is empty!';
|
||||
$strUserName = 'User name';
|
||||
$strUsers = 'Users';
|
||||
$strUseTables = 'Use Tables';
|
||||
|
||||
$strValue = "Value";
|
||||
$strViewDump = "View dump (schema) of table";
|
||||
$strViewDumpDB = "View dump (schema) of database";
|
||||
$strValue = 'Value';
|
||||
$strViewDump = 'View dump (schema) of table';
|
||||
$strViewDumpDB = 'View dump (schema) of database';
|
||||
|
||||
$strWelcome = "Welcome to ";
|
||||
$strWrongUser = "Wrong username/password. Access denied.";
|
||||
$strWelcome = 'Welcome to ';
|
||||
$strWrongUser = 'Wrong username/password. Access denied.';
|
||||
|
||||
$strYes = "Yes";
|
||||
$strShowThisQuery=" Show this query here again ";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names ";
|
||||
$strQueryOnDb=" SQL-query on database ";
|
||||
$strFieldsEmpty=" The field count is empty! ";
|
||||
$strAffectedRows=" Rows affected: ";
|
||||
$strYes = 'Yes';
|
||||
?>
|
||||
|
||||
@ -1,283 +1,285 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = " ";
|
||||
$number_decimal_separator = ",";
|
||||
$byteUnits = array("Octets", "Ko", "Mo", "Go");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ' ';
|
||||
$number_decimal_separator = ',';
|
||||
$byteUnits = array('Octets', 'Ko', 'Mo', 'Go');
|
||||
|
||||
$strAccessDenied = "Accès refusé";
|
||||
$strAction = "Action";
|
||||
$strAddDeleteColumn = "Ajouter/effacer x colonne(s)";
|
||||
$strAddDeleteRow = "Ajouter/effacer x ligne(s)";
|
||||
$strAddNewField = "Ajouter un champ";
|
||||
$strAddPriv = "Ajouter un privilège";
|
||||
$strAddPrivMessage = "Vous avez ajouté un privilège";
|
||||
$strAddSearchConditions = "Critères de recherche (pour l'énoncé \"where\"):";
|
||||
$strAddUser = "Ajouter un utilisateur";
|
||||
$strAddUserMessage = "Vous avez ajouté un utilisateur";
|
||||
$strAfter = "Après";
|
||||
$strAll = "Tout";
|
||||
$strAlterOrderBy = "<b>Ordonner</b> la table par";
|
||||
$strAnalyzeTable = "Analyser la table";
|
||||
$strAnd = "et";
|
||||
$strAnIndex = "Un index a été ajouté sur ";
|
||||
$strAny = "N'importe quel";
|
||||
$strAnyColumn = "Toute colonne";
|
||||
$strAnyDatabase = "Toute base de données";
|
||||
$strAnyHost = "Tout serveur";
|
||||
$strAnyTable = "Toute table";
|
||||
$strAnyUser = "Tout utilisateur";
|
||||
$strAPrimaryKey = "Une clé primaire a été ajoutée sur";
|
||||
$strAscending = "Croissant";
|
||||
$strAtBeginningOfTable = "En début de Table";
|
||||
$strAtEndOfTable = "En fin de Table";
|
||||
$strAttr = "Attributs";
|
||||
|
||||
$strBack = "Retour";
|
||||
$strBinary="Binaire";
|
||||
$strBinaryDoNotEdit="Binaire - ne pas éditer";
|
||||
$strBookmarkLabel = "Intitulé";
|
||||
$strBookmarkQuery = "Requêtes bookmarkées";
|
||||
$strBookmarkThis = "Bookmarker cette requête";
|
||||
$strBookmarkView = "Voir uniquement";
|
||||
$strBrowse = "Afficher";
|
||||
$strBzip = "\"bzippé\"";
|
||||
$strAccessDenied = 'Accès refusé';
|
||||
$strAction = 'Action';
|
||||
$strAddDeleteColumn = 'Ajouter/effacer x colonne(s)';
|
||||
$strAddDeleteRow = 'Ajouter/effacer x ligne(s)';
|
||||
$strAddNewField = 'Ajouter un champ';
|
||||
$strAddPriv = 'Ajouter un privilège';
|
||||
$strAddPrivMessage = 'Vous avez ajouté un privilège';
|
||||
$strAddSearchConditions = 'Critères de recherche (pour l\'énoncé "where"):';
|
||||
$strAddUser = 'Ajouter un utilisateur';
|
||||
$strAddUserMessage = 'Vous avez ajouté un utilisateur';
|
||||
$strAffectedRows = 'Nombre d\'enregistrements affectés :';
|
||||
$strAfter = 'Après';
|
||||
$strAll = 'Tout';
|
||||
$strAlterOrderBy = '<b>Ordonner</b> la table par';
|
||||
$strAnalyzeTable = 'Analyser la table';
|
||||
$strAnd = 'et';
|
||||
$strAnIndex = 'Un index a été ajouté sur ';
|
||||
$strAny = 'N\'importe quel';
|
||||
$strAnyColumn = 'Toute colonne';
|
||||
$strAnyDatabase = 'Toute base de données';
|
||||
$strAnyHost = 'Tout serveur';
|
||||
$strAnyTable = 'Toute table';
|
||||
$strAnyUser = 'Tout utilisateur';
|
||||
$strAPrimaryKey = 'Une clé primaire a été ajoutée sur';
|
||||
$strAscending = 'Croissant';
|
||||
$strAtBeginningOfTable = 'En début de Table';
|
||||
$strAtEndOfTable = 'En fin de Table';
|
||||
$strAttr = 'Attributs';
|
||||
|
||||
$strCantLoadMySQL = "ne peux charger l'extension MySQL,<br>vérifiez la configuration PHP";
|
||||
$strCarriage = "Retour de chariot: \\r";
|
||||
$strChange = "Modifier";
|
||||
$strCheckAll = "Tout cocher";
|
||||
$strCheckDbPriv = "Afficher les privilèges sur";
|
||||
$strCheckTable = "Vérifier la table";
|
||||
$strColumn = "Colonne";
|
||||
$strColumnEmpty = "Les noms de colonnes sont vides";
|
||||
$strColumnNames = "Nom des colonnes";
|
||||
$strCompleteInserts = "Insertions complètes";
|
||||
$strConfirm = "Veuillez confirmer";
|
||||
$strCopyTable = "<b>Copier</b> la table vers";
|
||||
$strCopyTableOK = "La table %s a été copiée vers %s.";
|
||||
$strCreate = "Créer";
|
||||
$strCreateNewDatabase = "Créer une base de données";
|
||||
$strCreateNewTable = "Créer une nouvelle table sur la base ";
|
||||
$strCriteria = "Critère";
|
||||
$strBack = 'Retour';
|
||||
$strBinary = 'Binaire';
|
||||
$strBinaryDoNotEdit = 'Binaire - ne pas éditer';
|
||||
$strBookmarkLabel = 'Intitulé';
|
||||
$strBookmarkQuery = 'Requêtes bookmarkées';
|
||||
$strBookmarkThis = 'Bookmarker cette requête';
|
||||
$strBookmarkView = 'Voir uniquement';
|
||||
$strBrowse = 'Afficher';
|
||||
$strBzip = '"bzippé"';
|
||||
|
||||
$strData = "Données";
|
||||
$strDatabase = "Base de données";
|
||||
$strDatabases = "bases de données";
|
||||
$strDataOnly = "Données seulement";
|
||||
$strDbEmpty = "Le nom de la base de données est vide";
|
||||
$strDefault = "Défaut";
|
||||
$strDelete = "Effacer";
|
||||
$strDeleted = "L'enregistrement a été effacé";
|
||||
$strDeleteFailed = "L'effacement a échoué";
|
||||
$strDeletePassword = "Effacer le mot de passe";
|
||||
$strDeleteUserMessage = "Vous avez effacé l'utilisateur";
|
||||
$strDelPassMessage = "Vous avez effacé le mot de passe de ";
|
||||
$strDescending = "Décroissant";
|
||||
$strDisableMagicQuotes = "<b>Attention:</b> Vous avez positionné magic_quotes_gpc dans la configuration de PHP. Cette version de PhpMyAdmin ne peut fonctionner correctement avec. Veuillez vous référer au paragraphe traitant de la configration dans la documentation de PHP pour positionner cette variable à off.";
|
||||
$strDisplay = "Montrer";
|
||||
$strDoAQuery = "Recherche par valeur (passepartout: \"%\")";
|
||||
$strDocu = "Documentation";
|
||||
$strDoYouReally = "Voulez-vous vraiment effectuer ";
|
||||
$strDrop = "Supprimer";
|
||||
$strDropDB = "Supprimer la base";
|
||||
$strDumpingData = "Contenu de la table";
|
||||
$strDynamic = "dynamique";
|
||||
$strCantLoadMySQL = 'ne peux charger l\'extension MySQL,<br />vérifiez la configuration PHP';
|
||||
$strCarriage = 'Retour de chariot : \\r';
|
||||
$strChange = 'Modifier';
|
||||
$strCheckAll = 'Tout cocher';
|
||||
$strCheckDbPriv = 'Afficher les privilèges sur';
|
||||
$strCheckTable = 'Vérifier la table';
|
||||
$strColumn = 'Colonne';
|
||||
$strColumnEmpty = 'Les noms de colonnes sont vides';
|
||||
$strColumnNames = 'Nom des colonnes';
|
||||
$strCompleteInserts = 'Insertions complètes';
|
||||
$strConfirm = 'Veuillez confirmer';
|
||||
$strCopyTable = '<b>Copier</b> la table vers';
|
||||
$strCopyTableOK = 'La table %s a été copiée vers %s.';
|
||||
$strCreate = 'Créer';
|
||||
$strCreateNewDatabase = 'Créer une base de données';
|
||||
$strCreateNewTable = 'Créer une nouvelle table sur la base ';
|
||||
$strCriteria = 'Critère';
|
||||
|
||||
$strEdit = "Modifier";
|
||||
$strEditPrivileges = "Changer les privilèges";
|
||||
$strEffective = "effectif";
|
||||
$strEmpty = "Vider";
|
||||
$strEmptyResultSet = "MySQL n'a retourné aucun enregistrement.";
|
||||
$strEnableMagicQuotes = "<b>Attention:</b> Vous n'avez pas positionné magic_quotes_gpc dans la configuration de PHP. PhpMyAdmin en a besoin pour fonctionner correctement. Veuillez vous référer au paragraphe traitant de la configration dans la documentation de PHP pour positionner cette variable.";
|
||||
$strEnclosedBy = "entouré par";
|
||||
$strEnd = "Fin";
|
||||
$strEnglishPrivileges=" Veuillez noter que les noms de privilèges sont exprimés en anglais";
|
||||
$strError = "Erreur";
|
||||
$strEscapedBy = "avec caractère spécial";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Données';
|
||||
$strDatabase = 'Base de données';
|
||||
$strDatabases = 'bases de données';
|
||||
$strDataOnly = 'Données seulement';
|
||||
$strDbEmpty = 'Le nom de la base de données est vide';
|
||||
$strDefault = 'Défaut';
|
||||
$strDelete = 'Effacer';
|
||||
$strDeleted = 'L\'enregistrement a été effacé';
|
||||
$strDeleteFailed = 'L\'effacement a échoué';
|
||||
$strDeletePassword = 'Effacer le mot de passe';
|
||||
$strDeleteUserMessage = 'Vous avez effacé l\'utilisateur';
|
||||
$strDelPassMessage = 'Vous avez effacé le mot de passe de ';
|
||||
$strDescending = 'Décroissant';
|
||||
$strDisableMagicQuotes = '<b>Attention:</b> Vous avez positionné magic_quotes_gpc dans la configuration de PHP. Cette version de PhpMyAdmin ne peut fonctionner correctement avec. Veuillez vous référer au paragraphe traitant de la configration dans la documentation de PHP pour positionner cette variable à off.';
|
||||
$strDisplay = 'Montrer';
|
||||
$strDoAQuery = 'Recherche par valeur (passepartout: "%")';
|
||||
$strDocu = 'Documentation';
|
||||
$strDoYouReally = 'Voulez-vous vraiment effectuer ';
|
||||
$strDrop = 'Supprimer';
|
||||
$strDropDB = 'Supprimer la base';
|
||||
$strDumpingData = 'Contenu de la table';
|
||||
$strDynamic = 'dynamique';
|
||||
|
||||
$strField = "Champ";
|
||||
$strFields = "Champs";
|
||||
$strFixed = "fixe";
|
||||
$strFormat = "format";
|
||||
$strFunction = "Fonction";
|
||||
$strEdit = 'Modifier';
|
||||
$strEditPrivileges = 'Changer les privilèges';
|
||||
$strEffective = 'effectif';
|
||||
$strEmpty = 'Vider';
|
||||
$strEmptyResultSet = 'MySQL n\'a retourné aucun enregistrement.';
|
||||
$strEnableMagicQuotes = '<b>Attention:</b> Vous n\'avez pas positionné magic_quotes_gpc dans la configuration de PHP. PhpMyAdmin en a besoin pour fonctionner correctement. Veuillez vous référer au paragraphe traitant de la configration dans la documentation de PHP pour positionner cette variable.';
|
||||
$strEnclosedBy = 'entouré par';
|
||||
$strEnd = 'Fin';
|
||||
$strEnglishPrivileges = ' Veuillez noter que les noms de privilèges sont exprimés en anglais';
|
||||
$strError = 'Erreur';
|
||||
$strEscapedBy = 'avec caractère spécial';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Généré le ";
|
||||
$strGo = "Exécuter";
|
||||
$strGrants = "Autres privilèges";
|
||||
$strGzip = "\"gzippé\"";
|
||||
$strField = 'Champ';
|
||||
$strFields = 'Champs';
|
||||
$strFieldsEmpty = 'Il faut indiquer le nombre de champs';
|
||||
$strFixed = 'fixe';
|
||||
$strFormat = 'format';
|
||||
$strFunction = 'Fonction';
|
||||
|
||||
$strHasBeenAltered = "a été modifié(e).";
|
||||
$strHasBeenCreated = "a été créé(e).";
|
||||
$strHasBeenDropped = "a été effacé(e).";
|
||||
$strHasBeenEmptied = "a été vidé(e).";
|
||||
$strHome = "Accueil";
|
||||
$strHomepageOfficial = "Site officiel de phpMyAdmin";
|
||||
$strHomepageSourceforge = "Page de Téléchargement phpMyAdmin sur Sourceforge";
|
||||
$strHost = "Serveur";
|
||||
$strHostEmpty = "Le nom de serveur est vide";
|
||||
$strGenTime = 'Généré le ';
|
||||
$strGo = 'Exécuter';
|
||||
$strGrants = 'Autres privilèges';
|
||||
$strGzip = '"gzippé"';
|
||||
|
||||
$strIfYouWish = "Si vous désirez ne charger que certaines colonnes, indiquez leurs noms, séparés par des virgules.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Index";
|
||||
$strInsert = "Insérer";
|
||||
$strInsertAsNewRow = "Insérer ce nouvel enregistrement";
|
||||
$strInsertIntoTable = "Insérer dans la table";
|
||||
$strInsertNewRow = "Insérer un nouvel enregistrement";
|
||||
$strInsertTextfiles = "Insérer un fichier texte dans la table";
|
||||
$strInUse = "utilisé";
|
||||
$strHasBeenAltered = 'a été modifié(e).';
|
||||
$strHasBeenCreated = 'a été créé(e).';
|
||||
$strHasBeenDropped = 'a été effacé(e).';
|
||||
$strHasBeenEmptied = 'a été vidé(e).';
|
||||
$strHome = 'Accueil';
|
||||
$strHomepageOfficial = 'Site officiel de phpMyAdmin';
|
||||
$strHomepageSourceforge = 'Page de Téléchargement phpMyAdmin sur Sourceforge';
|
||||
$strHost = 'Serveur';
|
||||
$strHostEmpty = 'Le nom de serveur est vide';
|
||||
|
||||
$strKeyname = "Nom de la clé";
|
||||
$strKill = "Supprimer";
|
||||
$strIfYouWish = 'Si vous désirez ne charger que certaines colonnes, indiquez leurs noms, séparés par des virgules.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Index';
|
||||
$strInsert = 'Insérer';
|
||||
$strInsertAsNewRow = 'Insérer ce nouvel enregistrement';
|
||||
$strInsertIntoTable = 'Insérer dans la table';
|
||||
$strInsertNewRow = 'Insérer un nouvel enregistrement';
|
||||
$strInsertTextfiles = 'Insérer un fichier texte dans la table';
|
||||
$strInUse = 'utilisé';
|
||||
|
||||
$strLength = "Long.";
|
||||
$strLengthSet = "Longueur";
|
||||
$strLimitNumRows = "enregistrements par page";
|
||||
$strLineFeed = "Saut de ligne: \\n";
|
||||
$strLines = "Lignes";
|
||||
$strLocationTextfile = "Emplacement du fichier texte";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Quitter";
|
||||
$strKeyname = 'Nom de la clé';
|
||||
$strKill = 'Supprimer';
|
||||
|
||||
$strModifications = "Les modifications ont été sauvegardées.";
|
||||
$strModify = "Modifier";
|
||||
$strMySQLReloaded = "MySQL rechargé.";
|
||||
$strMySQLSaid = "MySQL a répondu:";
|
||||
$strMySQLShowProcess = "Afficher les processus";
|
||||
$strMySQLShowStatus = "Afficher l'état du serveur MySQL";
|
||||
$strMySQLShowVars = "Afficher les variables du serveur MySQL";
|
||||
$strLength = 'Long.';
|
||||
$strLengthSet = 'Longueur';
|
||||
$strLimitNumRows = 'enregistrements par page';
|
||||
$strLineFeed = 'Saut de ligne : \\n';
|
||||
$strLines = 'Lignes';
|
||||
$strLocationTextfile = 'Emplacement du fichier texte';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Quitter';
|
||||
|
||||
$strName = "Nom";
|
||||
$strNbRecords = "Nb. d'enregistrements";
|
||||
$strNext = "Suivant";
|
||||
$strNo = "Non";
|
||||
$strNoPassword = "aucun mot de passe";
|
||||
$strNoPrivileges = "aucun privilège";
|
||||
$strNoRights = "Vous n'êtes pas autorisé à accéder à cette page";
|
||||
$strNoTablesFound = "Aucune table n'a été trouvée dans cette base.";
|
||||
$strNotNumber = "Ce n'est pas un nombre !";
|
||||
$strNotValidNumber = " n'est pas un nombre valide !";
|
||||
$strNoUsersFound = "Il n'y a aucun utilisateur";
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Nombre d'index spéciaux ";
|
||||
$strModifications = 'Les modifications ont été sauvegardées.';
|
||||
$strModify = 'Modifier';
|
||||
$strMySQLReloaded = 'MySQL rechargé.';
|
||||
$strMySQLSaid = 'MySQL a répondu:';
|
||||
$strMySQLShowProcess = 'Afficher les processus';
|
||||
$strMySQLShowStatus = 'Afficher l\'état du serveur MySQL';
|
||||
$strMySQLShowVars = 'Afficher les variables du serveur MySQL';
|
||||
|
||||
$strOffSet = "Début";
|
||||
$strOftenQuotation = "Souvent des guillemets. OPTIONNEL signifie que seulement les champs de type char et varchar sont entourés par ce caractère.";
|
||||
$strOptimizeTable = "Optimiser la table";
|
||||
$strOptionalControls = "Optionnel. Indique le caractère qui permet d'enlever l'effet des caractères spéciaux.";
|
||||
$strOptionally = "OPTIONNEL";
|
||||
$strOr = "Ou";
|
||||
$strOverhead = "Perte";
|
||||
$strName = 'Nom';
|
||||
$strNbRecords = 'nb. d\'enregistrements';
|
||||
$strNext = 'Suivant';
|
||||
$strNo = 'Non';
|
||||
$strNoPassword = 'aucun mot de passe';
|
||||
$strNoPrivileges = 'aucun privilège';
|
||||
$strNoRights = 'Vous n\'êtes pas autorisé à accéder à cette page';
|
||||
$strNoTablesFound = 'Aucune table n\'a été trouvée dans cette base.';
|
||||
$strNotNumber = 'Ce n\'est pas un nombre !';
|
||||
$strNotValidNumber = ' n\'est pas un nombre valide !';
|
||||
$strNoUsersFound = 'Il n\'y a aucun utilisateur';
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Nombre d\'index spéciaux ';
|
||||
|
||||
$strPassword = "Mot de passe";
|
||||
$strPasswordEmpty = "Le mot de passe est vide";
|
||||
$strPasswordNotSame = "Les mots de passe doivent être identiques";
|
||||
$strPHPVersion = "Version de PHP";
|
||||
$strPos1 = "Début";
|
||||
$strPrevious = "Précédent";
|
||||
$strPrimary = "Primaire";
|
||||
$strPrimaryKey = "Clé primaire";
|
||||
$strPrinterFriendly = "Version imprimable de la table";
|
||||
$strPrintView = "Version imprimable";
|
||||
$strPrivileges = "Privilèges";
|
||||
$strProducedAnError = "a généré une erreur.";
|
||||
$strProperties = "Propriétés";
|
||||
$strOffSet = 'début';
|
||||
$strOftenQuotation = 'Souvent des guillemets. OPTIONNEL signifie que seuls les champs de type char et varchar sont entourés par ce caractère.';
|
||||
$strOptimizeTable = 'Optimiser la table';
|
||||
$strOptionalControls = 'Optionnel. Indique le caractère qui permet d\'enlever l\'effet des caractères spéciaux.';
|
||||
$strOptionally = 'OPTIONNEL';
|
||||
$strOr = 'Ou';
|
||||
$strOverhead = 'Perte';
|
||||
|
||||
$strQBE = "Requête par un exemple";
|
||||
$strQBEDel = "Effacer";
|
||||
$strQBEIns = "Ajouter";
|
||||
$strPassword = 'Mot de passe';
|
||||
$strPasswordEmpty = 'Le mot de passe est vide';
|
||||
$strPasswordNotSame = 'Les mots de passe doivent être identiques';
|
||||
$strPHPVersion = 'Version de PHP';
|
||||
$strPos1 = 'Début';
|
||||
$strPrevious = 'Précédent';
|
||||
$strPrimary = 'Primaire';
|
||||
$strPrimaryKey = 'Clé primaire';
|
||||
$strPrinterFriendly = 'Version imprimable de la table';
|
||||
$strPrintView = 'Version imprimable';
|
||||
$strPrivileges = 'Privilèges';
|
||||
$strProducedAnError = 'a généré une erreur.';
|
||||
$strProperties = 'Propriétés';
|
||||
|
||||
$strReadTheDocs = "Lire la documentation";
|
||||
$strRecords = "Enregistrements";
|
||||
$strReloadFailed = "MySQL n'a pu être rechargé.";
|
||||
$strReloadMySQL = "Recharger MySQL";
|
||||
$strRememberReload = "N'oubliez pas de recharger MySQL";
|
||||
$strRenameTable = "<b>Changer le nom</b> de la table pour";
|
||||
$strRenameTableOK = "La table %s se nomme maintenant %s";
|
||||
$strRepairTable = "Réparer la table";
|
||||
$strReplace = "Remplacer";
|
||||
$strReplaceTable = "Remplacer les données de la table avec le fichier";
|
||||
$strReset = "Réinitialiser les valeurs";
|
||||
$strReType = "Entrer à nouveau";
|
||||
$strRevoke = "Révoquer";
|
||||
$strRevokeGrant = "Révoquer 'grant option'";
|
||||
$strRevokeGrantMessage = "Vous avez révoqué 'grant option' pour";
|
||||
$strRevokeMessage = "Vous avez révoqué les privilèges pour";
|
||||
$strRevokePriv = "Révoquer les privilèges";
|
||||
$strRowLength = "Longueur enr.";
|
||||
$strRows = "Enregistrements";
|
||||
$strRowsFrom = "lignes à partir de";
|
||||
$strRowSize = " Taille enr. ";
|
||||
$strRowsStatistic = "Statistiques";
|
||||
$strRunning = "sur serveur ";
|
||||
$strRunQuery = "Exécuter la requête";
|
||||
$strRunSQLQuery = "Exécuter une ou des <b>requêtes</b> sur la base ";
|
||||
$strQBE = 'Requête par un exemple';
|
||||
$strQBEDel = 'Effacer';
|
||||
$strQBEIns = 'Ajouter';
|
||||
$strQueryOnDb = 'Requête SQL sur la base ';
|
||||
|
||||
$strSave = "Sauvegarder";
|
||||
$strSelect = "Sélectionner";
|
||||
$strSelectFields = "Choisir les champs à afficher (au moins un)";
|
||||
$strSelectNumRows = "dans la requête";
|
||||
$strSend = "Transmettre";
|
||||
$strSequence = "Séq.";
|
||||
$strServerVersion = "Version du serveur";
|
||||
$strShow = "Afficher";
|
||||
$strShowingRecords = "Affichage des enregistrements";
|
||||
$strSingly = "(à refaire après insertions/destructions)";
|
||||
$strSize = "Espace";
|
||||
$strSort = "Tri";
|
||||
$strSpaceUsage = "Espace utilisé";
|
||||
$strSQLQuery = "requête SQL";
|
||||
$strStatement = "Information";
|
||||
$strStrucCSV = "Données CSV";
|
||||
$strStrucData = "Structure et données";
|
||||
$strStrucDrop = "Ajouter des énoncés 'drop table'";
|
||||
$strStrucOnly = "Structure seule";
|
||||
$strSubmit = "Exécuter";
|
||||
$strSuccess = "Votre requête SQL a été exécutée avec succès";
|
||||
$strSum = "Somme";
|
||||
$strReadTheDocs = 'Lire la documentation';
|
||||
$strRecords = 'Enregistrements';
|
||||
$strReloadFailed = 'MySQL n\'a pu être rechargé.';
|
||||
$strReloadMySQL = 'Recharger MySQL';
|
||||
$strRememberReload = 'N\'oubliez pas de recharger MySQL';
|
||||
$strRenameTable = '<b>Changer le nom</b> de la table pour';
|
||||
$strRenameTableOK = 'La table %s se nomme maintenant %s';
|
||||
$strRepairTable = 'Réparer la table';
|
||||
$strReplace = 'Remplacer';
|
||||
$strReplaceTable = 'Remplacer les données de la table avec le fichier';
|
||||
$strReset = 'Réinitialiser les valeurs';
|
||||
$strReType = 'Entrer à nouveau';
|
||||
$strRevoke = 'Révoquer';
|
||||
$strRevokeGrant = 'Révoquer "grant option"';
|
||||
$strRevokeGrantMessage = 'Vous avez révoqué "grant option" pour';
|
||||
$strRevokeMessage = 'Vous avez révoqué les privilèges pour';
|
||||
$strRevokePriv = 'Révoquer les privilèges';
|
||||
$strRowLength = 'Longueur enr.';
|
||||
$strRows = 'Enregistrements';
|
||||
$strRowsFrom = 'lignes à partir de';
|
||||
$strRowSize = ' Taille enr. ';
|
||||
$strRowsStatistic = 'Statistiques';
|
||||
$strRunning = 'sur serveur ';
|
||||
$strRunQuery = 'Exécuter la requête';
|
||||
$strRunSQLQuery = 'Exécuter une ou des <b>requêtes</b> sur la base ';
|
||||
|
||||
$strTable = "table ";
|
||||
$strTableComments = "Commentaires sur la table";
|
||||
$strTableEmpty = "Le nom de la table est vide";
|
||||
$strTableMaintenance = "Maintenance de la table";
|
||||
$strTableStructure = "Structure de la table";
|
||||
$strTableType = "Table en format";
|
||||
$strTerminatedBy = "terminé(e)s par";
|
||||
$strTextAreaLength = "Il est possible que ce champ<br>ne soit pas éditable<br>en raison de sa longueur";
|
||||
$strTheContent = "Le contenu de votre fichier a été inséré.";
|
||||
$strTheContents = "Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de clé primaire ou unique identique.";
|
||||
$strTheTerminator = "Le caractère qui sépare chacun des champs.";
|
||||
$strTotal = "total";
|
||||
$strType = "Type";
|
||||
$strSave = 'Sauvegarder';
|
||||
$strSelect = 'Sélectionner';
|
||||
$strSelectFields = 'Choisir les champs à afficher (au moins un)';
|
||||
$strSelectNumRows = 'dans la requête';
|
||||
$strSend = 'Transmettre';
|
||||
$strSequence = 'Séq.';
|
||||
$strServerVersion = 'Version du serveur';
|
||||
$strShow = 'Afficher';
|
||||
$strShowingRecords = 'Affichage des enregistrements';
|
||||
$strShowThisQuery = 'Réafficher la requête après exécution';
|
||||
$strSingly = '(à refaire après insertions/destructions)';
|
||||
$strSize = 'Espace';
|
||||
$strSort = 'Tri';
|
||||
$strSpaceUsage = 'Espace utilisé';
|
||||
$strSQLQuery = 'requête SQL';
|
||||
$strStatement = 'Information';
|
||||
$strStrucCSV = 'Données CSV';
|
||||
$strStrucData = 'Structure et données';
|
||||
$strStrucDrop = 'Ajouter des énoncés "drop table"';
|
||||
$strStrucOnly = 'Structure seule';
|
||||
$strSubmit = 'Exécuter';
|
||||
$strSuccess = 'Votre requête SQL a été exécutée avec succès';
|
||||
$strSum = 'Somme';
|
||||
|
||||
$strUncheckAll = "Tout décocher";
|
||||
$strUnique = "Unique";
|
||||
$strUpdatePassMessage = "Vous avez modifié le mot de passe pour";
|
||||
$strUpdatePassword = "Changer le mot de passe";
|
||||
$strUpdatePrivMessage = "Vous avez modifié les privilèges pour";
|
||||
$strUpdateQuery = "Mise-à-jour de la requête";
|
||||
$strUsage = "Espace";
|
||||
$strUser = "Utilisateur";
|
||||
$strUserEmpty = "Le nom d'utilisateur est vide";
|
||||
$strUserName = "Nom d'utilisateur";
|
||||
$strUsers = "Utilisateurs et privilèges";
|
||||
$strUseTables = "Utiliser les tables";
|
||||
$strTable = 'table ';
|
||||
$strTableComments = 'Commentaires sur la table';
|
||||
$strTableEmpty = 'Le nom de la table est vide';
|
||||
$strTableMaintenance = 'Maintenance de la table';
|
||||
$strTableStructure = 'Structure de la table';
|
||||
$strTableType = 'Table en format';
|
||||
$strTerminatedBy = 'terminé(e)s par';
|
||||
$strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas éditable<br />en raison de sa longueur';
|
||||
$strTheContent = 'Le contenu de votre fichier a été inséré.';
|
||||
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de clé primaire ou unique identique.';
|
||||
$strTheTerminator = 'Le caractère qui sépare chacun des champs.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Type';
|
||||
|
||||
$strValue = "Valeur";
|
||||
$strViewDump = "<b>Afficher le schéma</b> de la table";
|
||||
$strViewDumpDB = "Afficher le schéma de la base ";
|
||||
$strUncheckAll = 'Tout décocher';
|
||||
$strUnique = 'Unique';
|
||||
$strUpdatePassMessage = 'Vous avez modifié le mot de passe pour';
|
||||
$strUpdatePassword = 'Changer le mot de passe';
|
||||
$strUpdatePrivMessage = 'Vous avez modifié les privilèges pour';
|
||||
$strUpdateQuery = 'Mise-à-jour de la requête';
|
||||
$strUsage = 'Espace';
|
||||
$strUseBackquotes = 'Protéger les noms des tables et des champs par des "`"';
|
||||
$strUser = 'Utilisateur';
|
||||
$strUserEmpty = 'Le nom d\'utilisateur est vide';
|
||||
$strUserName = 'Nom d\'utilisateur';
|
||||
$strUsers = 'Utilisateurs et privilèges';
|
||||
$strUseTables = 'Utiliser les tables';
|
||||
|
||||
$strWelcome = "Bienvenue à";
|
||||
$strWrongUser = "Erreur d'utilisateur/mot de passe. Accès refusé";
|
||||
$strValue = 'Valeur';
|
||||
$strViewDump = '<b>Afficher le schéma</b> de la table';
|
||||
$strViewDumpDB = 'Afficher le schéma de la base ';
|
||||
|
||||
$strWelcome = 'Bienvenue à';
|
||||
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accès refusé';
|
||||
|
||||
$strYes = 'Oui';
|
||||
|
||||
$strYes = "Oui";
|
||||
$strShowThisQuery="Réafficher la requête après exécution";
|
||||
$strUseBackquotes = "Protéger les noms des tables et des champs par des \"`\"";
|
||||
$strQueryOnDb="Requête SQL sur la base ";
|
||||
$strFieldsEmpty="Il faut indiquer le nombre de champs";
|
||||
$strAffectedRows="Enregistrements affectés:";
|
||||
?>
|
||||
|
||||
@ -1,288 +1,284 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ".";
|
||||
$number_decimal_separator = ",";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = '.';
|
||||
$number_decimal_separator = ',';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Zugriff verweigert.";
|
||||
$strAction = "Aktion";
|
||||
$strAddDeleteColumn = "Spalten hinzufügen/entfernen";
|
||||
$strAddDeleteRow = "Zeilen hinzufügen/entfernen";
|
||||
$strAddNewField = "Neue Feld(er) hinzufügen";
|
||||
$strAddPriv = "Rechte hinzufügen";
|
||||
$strAddPrivMessage = "Rechte wurden hinzugefügt.";
|
||||
$strAddSearchConditions = "Suchkondition (Argumente für das WHERE-Statement):";
|
||||
$strAddUser = "Neuen Benutzer hinzufügen";
|
||||
$strAddUserMessage = "Der Benutzer wurde hinzugefügt.";
|
||||
$strAfter = "Nach";
|
||||
$strAll = "Alle";
|
||||
$strAlterOrderBy = "Tabelle sortieren nach";
|
||||
$strAnalyzeTable = "Analysiere Tabelle";
|
||||
$strAnd = "und";
|
||||
$strAnIndex = "Ein Index wurde für folgendes Feld hinzugefügt: ";
|
||||
$strAny = "Jeder";
|
||||
$strAnyColumn = "Jede Spalte";
|
||||
$strAnyDatabase = "Jede Datenbank";
|
||||
$strAnyHost = "Jeder Host";
|
||||
$strAnyTable = "Jede Tabelle";
|
||||
$strAnyUser = "Jeder Benutzer";
|
||||
$strAPrimaryKey = "Ein Primarschlüssel wurde für folgendes Feld hinzugefügt: ";
|
||||
$strAscending = "aufsteigend";
|
||||
$strAtBeginningOfTable = "An den Anfang der Tabelle";
|
||||
$strAtEndOfTable = "An das Ende der Tabelle";
|
||||
$strAttr = "Attribute";
|
||||
|
||||
$strBack = "Zurück";
|
||||
$strBookmarkLabel = "Titel";
|
||||
$strBookmarkQuery = "Gespeicherte SQL-Abfrage";
|
||||
$strBookmarkThis = "SQL-Abfrage speichern";
|
||||
$strBookmarkView = "Nur zeigen";
|
||||
$strBrowse = "Anzeigen";
|
||||
$strAccessDenied = 'Zugriff verweigert.';
|
||||
$strAction = 'Aktion';
|
||||
$strAddDeleteColumn = 'Spalten hinzufügen/entfernen';
|
||||
$strAddDeleteRow = 'Zeilen hinzufügen/entfernen';
|
||||
$strAddNewField = 'Neue Feld(er) hinzufügen';
|
||||
$strAddPriv = 'Rechte hinzufügen';
|
||||
$strAddPrivMessage = 'Rechte wurden hinzugefügt.';
|
||||
$strAddSearchConditions = 'Suchkondition (Argumente für das WHERE-Statement):';
|
||||
$strAddUser = 'Neuen Benutzer hinzufügen';
|
||||
$strAddUserMessage = 'Der Benutzer wurde hinzugefügt.';
|
||||
$strAffectedRows = ' Betroffene Datensätze: ';
|
||||
$strAfter = 'Nach';
|
||||
$strAll = 'Alle';
|
||||
$strAlterOrderBy = 'Tabelle sortieren nach';
|
||||
$strAnalyzeTable = 'Analysiere Tabelle';
|
||||
$strAnd = 'und';
|
||||
$strAnIndex = 'Ein Index wurde für folgendes Feld hinzugefügt: ';
|
||||
$strAny = 'Jeder';
|
||||
$strAnyColumn = 'Jede Spalte';
|
||||
$strAnyDatabase = 'Jede Datenbank';
|
||||
$strAnyHost = 'Jeder Host';
|
||||
$strAnyTable = 'Jede Tabelle';
|
||||
$strAnyUser = 'Jeder Benutzer';
|
||||
$strAPrimaryKey = 'Ein Primarschlüssel wurde für folgendes Feld hinzugefügt: ';
|
||||
$strAscending = 'aufsteigend';
|
||||
$strAtBeginningOfTable = 'An den Anfang der Tabelle';
|
||||
$strAtEndOfTable = 'An das Ende der Tabelle';
|
||||
$strAttr = 'Attribute';
|
||||
|
||||
$strCantLoadMySQL = "MySQL Erweiterung konnte nicht geladen werden,<br>bitte PHP Konfiguration überprüfen.";
|
||||
$strCarriage = "Wagenrücklauf \\r";
|
||||
$strChange = "Ändern";
|
||||
$strCheckAll = "Alle auswählen";
|
||||
$strCheckDbPriv = "Rechte einer Datenbank prüfen";
|
||||
$strCheckTable = "Überprüfe Tabelle";
|
||||
$strColumn = "Spalte";
|
||||
$strColumnEmpty = "Die Spalten-Titel sind leer!";
|
||||
$strColumnNames = "Spaltennamen";
|
||||
$strCompleteInserts = "Vollständige 'inserts'";
|
||||
$strConfirm = "Bist du dir wirklich sicher?";
|
||||
$strCopyTable = "Tabelle kopieren nach";
|
||||
$strCopyTableOK = "Tabelle %s wurde kopiert nach %s.";
|
||||
$strCreate = "Erzeugen";
|
||||
$strCreateNewDatabase = "Neue Datenbank erzeugen";
|
||||
$strCreateNewTable = "Neue Tabelle erstellen in Datenbank ";
|
||||
$strCriteria = "Kriterium";
|
||||
$strBack = 'Zurück';
|
||||
$strBinary = ' Binär ';
|
||||
$strBinaryDoNotEdit = ' Binär - nicht editierbar !';
|
||||
$strBookmarkLabel = 'Titel';
|
||||
$strBookmarkQuery = 'Gespeicherte SQL-Abfrage';
|
||||
$strBookmarkThis = 'SQL-Abfrage speichern';
|
||||
$strBookmarkView = 'Nur zeigen';
|
||||
$strBrowse = 'Anzeigen';
|
||||
$strBzip = '"BZip komprimiert"';
|
||||
|
||||
$strData = "Daten";
|
||||
$strDatabase = "Datenbank ";
|
||||
$strDatabases = "Datenbanken";
|
||||
$strDataOnly = "Nur Daten";
|
||||
$strDbEmpty = "Der Name der Datenbank ist leer!";
|
||||
$strDefault = "Standard";
|
||||
$strDelete = "Löschen";
|
||||
$strDeleted = "Die Zeile wurde gelöscht.";
|
||||
$strDeleteFailed = "Löschen fehlgeschlagen!";
|
||||
$strDeletePassword = "Password löschen";
|
||||
$strDeleteUserMessage = "Der Benutzer wurde gelöscht";
|
||||
$strDelPassMessage = "Password entfernt für";
|
||||
$strDescending = "absteigend";
|
||||
$strDisableMagicQuotes = "<b>Achtung:</b> Sie haben magic_quotes_gpc in Ihrer PHP-Konfigration aktiviert. Dieses Version von PhpMyAdmin braucht dies nicht aktiviert sein, um korrekt zu funktionieren. Bitte lesen Sie im PHP-Manual (Installation & Configuration) nach, um Informationen darüber zu erhalten, wie man magic_quotes_gpc nicht aktivieren kann.";
|
||||
$strDisplay = "Zeige";
|
||||
$strDoAQuery = "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")";
|
||||
$strDocu = "Dokumentation";
|
||||
$strDoYouReally = "Möchten Sie wirklich diese Abfrage ausführen: ";
|
||||
$strDrop = "Löschen";
|
||||
$strDropDB = "Datenbank löschen:";
|
||||
$strDumpingData = "Daten für Tabelle";
|
||||
$strDynamic = "dynamisch";
|
||||
$strCantLoadMySQL = 'MySQL Erweiterung konnte nicht geladen werden,<br />bitte PHP Konfiguration überprüfen.';
|
||||
$strCarriage = 'Wagenrücklauf \\r';
|
||||
$strChange = 'Ändern';
|
||||
$strCheckAll = 'Alle auswählen';
|
||||
$strCheckDbPriv = 'Rechte einer Datenbank prüfen';
|
||||
$strCheckTable = 'Überprüfe Tabelle';
|
||||
$strColumn = 'Spalte';
|
||||
$strColumnEmpty = 'Die Spalten-Titel sind leer!';
|
||||
$strColumnNames = 'Spaltennamen';
|
||||
$strCompleteInserts = 'Vollständige \'inserts\'';
|
||||
$strConfirm = 'Bist du dir wirklich sicher?';
|
||||
$strCopyTable = 'Tabelle kopieren nach';
|
||||
$strCopyTableOK = 'Tabelle %s wurde kopiert nach %s.';
|
||||
$strCreate = 'Erzeugen';
|
||||
$strCreateNewDatabase = 'Neue Datenbank erzeugen';
|
||||
$strCreateNewTable = 'Neue Tabelle erstellen in Datenbank ';
|
||||
$strCriteria = 'Kriterium';
|
||||
|
||||
$strEdit = "Ändern";
|
||||
$strEditPrivileges = "Rechte ändern";
|
||||
$strEffective = "Effektiv";
|
||||
$strEmpty = "Leeren";
|
||||
$strEmptyResultSet = "MySQL lieferte ein leeres Resultset zurück (d.h. null Zeilen).";
|
||||
$strEnableMagicQuotes = "<b>Achtung:</b> Sie haben magic_quotes_gpc in Ihrer PHP-Konfigration nicht aktiviert. PhpMyAdmin benötigt dies aber, um korrekt zu funktionieren. Bitte lesen Sie im PHP-Manual (Installation & Configuration) nach, um Informationen darüber z erhalten, wie man magic_quotes_gpc aktiviert.";
|
||||
$strEnclosedBy = "eingeschlossen von";
|
||||
$strEnd = "Ende";
|
||||
$strError = "Fehler";
|
||||
$strEscapedBy = "escaped von";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Daten';
|
||||
$strDatabase = 'Datenbank ';
|
||||
$strDatabases = 'Datenbanken';
|
||||
$strDataOnly = 'Nur Daten';
|
||||
$strDbEmpty = 'Der Name der Datenbank ist leer!';
|
||||
$strDefault = 'Standard';
|
||||
$strDelete = 'Löschen';
|
||||
$strDeleted = 'Die Zeile wurde gelöscht.';
|
||||
$strDeleteFailed = 'Löschen fehlgeschlagen!';
|
||||
$strDeletePassword = 'Password löschen';
|
||||
$strDeleteUserMessage = 'Der Benutzer wurde gelöscht';
|
||||
$strDelPassMessage = 'Password entfernt für';
|
||||
$strDescending = 'absteigend';
|
||||
$strDisableMagicQuotes = '<b>Achtung:</b> Sie haben magic_quotes_gpc in Ihrer PHP-Konfigration aktiviert. Dieses Version von PhpMyAdmin braucht dies nicht aktiviert sein, um korrekt zu funktionieren. Bitte lesen Sie im PHP-Manual (Installation & Configuration) nach, um Informationen darüber zu erhalten, wie man magic_quotes_gpc nicht aktivieren kann.';
|
||||
$strDisplay = 'Zeige';
|
||||
$strDoAQuery = 'Suche über Beispielwerte ("query by example") (Platzhalter: "%")';
|
||||
$strDocu = 'Dokumentation';
|
||||
$strDoYouReally = 'Möchten Sie wirklich diese Abfrage ausführen: ';
|
||||
$strDrop = 'Löschen';
|
||||
$strDropDB = 'Datenbank löschen:';
|
||||
$strDumpingData = 'Daten für Tabelle';
|
||||
$strDynamic = 'dynamisch';
|
||||
|
||||
$strField = "Feld";
|
||||
$strFields = "Felder";
|
||||
$strFixed = "starr";
|
||||
$strFormat = "Format";
|
||||
$strFunction = "Funktion";
|
||||
$strEdit = 'Ändern';
|
||||
$strEditPrivileges = 'Rechte ändern';
|
||||
$strEffective = 'Effektiv';
|
||||
$strEmpty = 'Leeren';
|
||||
$strEmptyResultSet = 'MySQL lieferte ein leeres Resultset zurück (d.h. null Zeilen).';
|
||||
$strEnableMagicQuotes = '<b>Achtung:</b> Sie haben magic_quotes_gpc in Ihrer PHP-Konfigration nicht aktiviert. PhpMyAdmin benötigt dies aber, um korrekt zu funktionieren. Bitte lesen Sie im PHP-Manual (Installation & Configuration) nach, um Informationen darüber z erhalten, wie man magic_quotes_gpc aktiviert.';
|
||||
$strEnclosedBy = 'eingeschlossen von';
|
||||
$strEnd = 'Ende';
|
||||
$strEnglishPrivileges = ' Anmerkung: MySQL Rechtename werden in Englisch angegeben ';
|
||||
$strError = 'Fehler';
|
||||
$strEscapedBy = 'escaped von';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Erstellungszeit";
|
||||
$strGo = "OK";
|
||||
$strGrants = "Rechte";
|
||||
$strField = 'Feld';
|
||||
$strFields = 'Felder';
|
||||
$strFieldsEmpty = ' Sie müssen angeben wieviele Felder die Tabelle haben soll! ';
|
||||
$strFixed = 'starr';
|
||||
$strFormat = 'Format';
|
||||
$strFunction = 'Funktion';
|
||||
|
||||
$strHasBeenAltered = "wurde geändert.";
|
||||
$strHasBeenCreated = "wurde erzeugt.";
|
||||
$strHasBeenDropped = "wurde gelöscht.";
|
||||
$strHasBeenEmptied = "wurde geleert.";
|
||||
$strHome = "Home";
|
||||
$strHomepageOfficial = " Offizielle phpMyAdmin Homepage ";
|
||||
$strHomepageSourceforge = " Sourceforge phpMyAdmin Download Homepage ";
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "Es wurde kein Host angegeben!";
|
||||
$strGenTime = 'Erstellungszeit';
|
||||
$strGo = 'OK';
|
||||
$strGrants = 'Rechte';
|
||||
$strGzip = '"GZip komprimiert"';
|
||||
|
||||
$strIfYouWish = "Wenn Sie nur bestimmte Spalten importieren möchten, geben Sie diese bitte hier an.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indizes";
|
||||
$strInsert = "Einfügen";
|
||||
$strInsertAsNewRow = " Als neuen Datensatz speichern ";
|
||||
$strInsertIntoTable = "In Tabelle einfügen";
|
||||
$strInsertNewRow = "Neue Zeile einfügen";
|
||||
$strInsertTextfiles = "Textdatei in Tabelle einfügen";
|
||||
$strInUse = "in Benutzung";
|
||||
$strHasBeenAltered = 'wurde geändert.';
|
||||
$strHasBeenCreated = 'wurde erzeugt.';
|
||||
$strHasBeenDropped = 'wurde gelöscht.';
|
||||
$strHasBeenEmptied = 'wurde geleert.';
|
||||
$strHome = 'Home';
|
||||
$strHomepageOfficial = ' Offizielle phpMyAdmin Homepage ';
|
||||
$strHomepageSourceforge = ' Sourceforge phpMyAdmin Download Homepage ';
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'Es wurde kein Host angegeben!';
|
||||
|
||||
$strKeyname = "Name";
|
||||
$strKill = "Beenden";
|
||||
$strIfYouWish = 'Wenn Sie nur bestimmte Spalten importieren möchten, geben Sie diese bitte hier an.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indizes';
|
||||
$strInsert = 'Einfügen';
|
||||
$strInsertAsNewRow = ' Als neuen Datensatz speichern ';
|
||||
$strInsertIntoTable = 'In Tabelle einfügen';
|
||||
$strInsertNewRow = 'Neue Zeile einfügen';
|
||||
$strInsertTextfiles = 'Textdatei in Tabelle einfügen';
|
||||
$strInUse = 'in Benutzung';
|
||||
|
||||
$strLength = " Länge ";
|
||||
$strLengthSet = "Länge/Set";
|
||||
$strLimitNumRows = "Einträge pro Seite";
|
||||
$strLineFeed = "Zeilenvorschub: \\n";
|
||||
$strLines = "Zeilen";
|
||||
$strLocationTextfile = "Datei";
|
||||
$strLogin = "";
|
||||
$strLogout = "Neu einloggen";
|
||||
$strKeyname = 'Name';
|
||||
$strKill = 'Beenden';
|
||||
|
||||
$strModifications = "Änderungen gespeichert.";
|
||||
$strModify = "Verändern";
|
||||
$strMySQLReloaded = "MySQL neu gestartet.";
|
||||
$strMySQLSaid = "MySQL meldet: ";
|
||||
$strMySQLShowProcess = "Prozesse anzeigen";
|
||||
$strMySQLShowStatus = "MySQL-Laufzeit-Informationen anzeigen";
|
||||
$strMySQLShowVars = "MySQL-System-Variablen anzeigen";
|
||||
$strLength = ' Länge ';
|
||||
$strLengthSet = 'Länge/Set';
|
||||
$strLimitNumRows = 'Einträge pro Seite';
|
||||
$strLineFeed = 'Zeilenvorschub: \\n';
|
||||
$strLines = 'Zeilen';
|
||||
$strLocationTextfile = 'Datei';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Neu einloggen';
|
||||
|
||||
$strName = "Name";
|
||||
$strNext = "Nächste";
|
||||
$strNo = "Nein";
|
||||
$strNoPassword = "Kein Password";
|
||||
$strNoPrivileges = "Keine Rechte";
|
||||
$strNoRights = "Du hast nicht genug Rechte um fortzufahren!";
|
||||
$strNoTablesFound = "Keine Tabellen in der Datenbank gefunden.";
|
||||
$strNoUsersFound = "Keine(n) Benutzer gefunden.";
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Anzahl der erweiterten Indizes ";
|
||||
$strModifications = 'Änderungen gespeichert.';
|
||||
$strModify = 'Verändern';
|
||||
$strMySQLReloaded = 'MySQL neu gestartet.';
|
||||
$strMySQLSaid = 'MySQL meldet: ';
|
||||
$strMySQLShowProcess = 'Prozesse anzeigen';
|
||||
$strMySQLShowStatus = 'MySQL-Laufzeit-Informationen anzeigen';
|
||||
$strMySQLShowVars = 'MySQL-System-Variablen anzeigen';
|
||||
|
||||
$strOftenQuotation = "Häufig Anführungszeichen. Optional bedeutet, daß nur Textfelder von den angegeben Zeichen eingeschlossen sind.";
|
||||
$strOptimizeTable = "Optimiere Tabelle";
|
||||
$strOptionalControls = "Optional. Bestimmt, wie Sonderzeichen kenntlich gemacht werden.";
|
||||
$strOptionally = "optional";
|
||||
$strOr = "Oder";
|
||||
$strOverhead = "Überhang";
|
||||
$strName = 'Name';
|
||||
$strNbRecords = 'Datensätze';
|
||||
$strNext = 'Nächste';
|
||||
$strNo = 'Nein';
|
||||
$strNoPassword = 'Kein Password';
|
||||
$strNoPrivileges = 'Keine Rechte';
|
||||
$strNoRights = 'Du hast nicht genug Rechte um fortzufahren!';
|
||||
$strNoTablesFound = 'Keine Tabellen in der Datenbank gefunden.';
|
||||
$strNotNumber = 'Das ist keine Zahl!';
|
||||
$strNotValidNumber = ' ist keine gültige Zeilennummer!'; // do not html quote
|
||||
$strNoUsersFound = 'Keine(n) Benutzer gefunden.';
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Anzahl der erweiterten Indizes ';
|
||||
|
||||
$strPassword = "Password";
|
||||
$strPasswordEmpty = "Es wurde kein Passwort angegeben!";
|
||||
$strPasswordNotSame = "Die eingegebenen Passwörter sind nicht identisch!";
|
||||
$strPHPVersion = "PHP Version";
|
||||
$strPos1 = "Anfang";
|
||||
$strPrevious = "Vorherige";
|
||||
$strPrimary = "Primärschlüssel";
|
||||
$strPrimaryKey = "Primärschlüssel";
|
||||
$strPrinterFriendly = "Druckerfreundliche Version der Tabelle";
|
||||
$strPrintView = "Druckansicht";
|
||||
$strPrivileges = "Rechte";
|
||||
$strProducedAnError = "erzeugte einen Fehler.";
|
||||
$strProperties = "Eigenschaften";
|
||||
$strOffSet = 'offset';
|
||||
$strOftenQuotation = 'Häufig Anführungszeichen. Optional bedeutet, daß nur Textfelder von den angegeben Zeichen eingeschlossen sind.';
|
||||
$strOptimizeTable = 'Optimiere Tabelle';
|
||||
$strOptionalControls = 'Optional. Bestimmt, wie Sonderzeichen kenntlich gemacht werden.';
|
||||
$strOptionally = 'optional';
|
||||
$strOr = 'Oder';
|
||||
$strOverhead = 'Überhang';
|
||||
|
||||
$strQBE = "Suche über Beispielwerte";
|
||||
$strQBEDel = "Entf.";
|
||||
$strQBEIns = "Einf.";
|
||||
$strPassword = 'Password';
|
||||
$strPasswordEmpty = 'Es wurde kein Passwort angegeben!';
|
||||
$strPasswordNotSame = 'Die eingegebenen Passwörter sind nicht identisch!';
|
||||
$strPHPVersion = 'PHP Version';
|
||||
$strPos1 = 'Anfang';
|
||||
$strPrevious = 'Vorherige';
|
||||
$strPrimary = 'Primärschlüssel';
|
||||
$strPrimaryKey = 'Primärschlüssel';
|
||||
$strPrinterFriendly = 'Druckerfreundliche Version der Tabelle';
|
||||
$strPrintView = 'Druckansicht';
|
||||
$strPrivileges = 'Rechte';
|
||||
$strProducedAnError = 'erzeugte einen Fehler.';
|
||||
$strProperties = 'Eigenschaften';
|
||||
|
||||
$strReadTheDocs = "MySQL-Dokumentation zu LOAD DATA INFILE lesen";
|
||||
$strRecords = "Einträge";
|
||||
$strReloadFailed = "MySQL Neuladen fehlgeschlagen.";
|
||||
$strReloadMySQL = "MySQL neu starten";
|
||||
$strRememberReload = "Der Server muss neugestartet werden.";
|
||||
$strRenameTable = "Tabelle umbennen in";
|
||||
$strRenameTableOK = "Tabelle %s wurde umbenannt in %s.";
|
||||
$strRepairTable = "Repariere Tabelle";
|
||||
$strReplace = "Ersetzen";
|
||||
$strReplaceTable = "Tabelleninhalt ersetzen";
|
||||
$strReset = "Zurücksetzen";
|
||||
$strReType = "Wiederholen";
|
||||
$strRevoke = "Entfernen";
|
||||
$strRevokeGrant = "'Grant' entfernen";
|
||||
$strRevokeGrantMessage = "Du hast das Recht 'Grant' entfernt für";
|
||||
$strRevokeMessage = "Du hast die Rechte entfernt für";
|
||||
$strRevokePriv = "Rechte entfernen";
|
||||
$strRowLength = "Zeilenlänge";
|
||||
$strRows = "Zeilen";
|
||||
$strRowsFrom = "Datensätze, beginnend ab";
|
||||
$strRowsStatistic = "Zeilenstatistik";
|
||||
$strRunning = "auf ";
|
||||
$strRunQuery = "SQL Befehl ausführen";
|
||||
$strRunSQLQuery = "SQL-Befehl(e) ausführen in Datenbank ";
|
||||
$strQBE = 'Suche über Beispielwerte';
|
||||
$strQBEDel = 'Entf.';
|
||||
$strQBEIns = 'Einf.';
|
||||
$strQueryOnDb = ' SQL-Befehl in der Datenbank ';
|
||||
|
||||
$strSave = "Speichern";
|
||||
$strSelect = "Teilw. anzeigen";
|
||||
$strSelectFields = "Felder auswählen (mind. eines):";
|
||||
$strSelectNumRows = "in der Abfrage";
|
||||
$strSend = "Senden";
|
||||
$strSequence = " Sequenz ";
|
||||
$strServerVersion = "Server Version";
|
||||
$strShow = "Zeige";
|
||||
$strShowingRecords = "Zeige Datensätze ";
|
||||
$strSingly = "(einmalig)";
|
||||
$strSize = "Größe";
|
||||
$strSort = "Sortierung";
|
||||
$strSpaceUsage = "Speicherplatzverbrauch";
|
||||
$strSQLQuery = "SQL-Befehl";
|
||||
$strStatement = "Angaben";
|
||||
$strStrucCSV = "CSV-Daten";
|
||||
$strStrucData = "Struktur und Daten";
|
||||
$strStrucDrop = "Mit 'drop table'";
|
||||
$strStrucOnly = "Nur Struktur";
|
||||
$strSubmit = "Abschicken";
|
||||
$strSuccess = "Ihr SQL-Befehl wurde erfolgreich ausgeführt.";
|
||||
$strSum = "Summe";
|
||||
$strReadTheDocs = 'MySQL-Dokumentation zu LOAD DATA INFILE lesen';
|
||||
$strRecords = 'Einträge';
|
||||
$strReloadFailed = 'MySQL Neuladen fehlgeschlagen.';
|
||||
$strReloadMySQL = 'MySQL neu starten';
|
||||
$strRememberReload = 'Der Server muss neugestartet werden.';
|
||||
$strRenameTable = 'Tabelle umbennen in';
|
||||
$strRenameTableOK = 'Tabelle %s wurde umbenannt in %s.';
|
||||
$strRepairTable = 'Repariere Tabelle';
|
||||
$strReplace = 'Ersetzen';
|
||||
$strReplaceTable = 'Tabelleninhalt ersetzen';
|
||||
$strReset = 'Zurücksetzen';
|
||||
$strReType = 'Wiederholen';
|
||||
$strRevoke = 'Entfernen';
|
||||
$strRevokeGrant = '\'Grant\' entfernen';
|
||||
$strRevokeGrantMessage = 'Du hast das Recht \'Grant\' entfernt für';
|
||||
$strRevokeMessage = 'Du hast die Rechte entfernt für';
|
||||
$strRevokePriv = 'Rechte entfernen';
|
||||
$strRowLength = 'Zeilenlänge';
|
||||
$strRows = 'Zeilen';
|
||||
$strRowsFrom = 'Datensätze, beginnend ab';
|
||||
$strRowSize = 'Zeilengröße';
|
||||
$strRowsStatistic = 'Zeilenstatistik';
|
||||
$strRunning = 'auf ';
|
||||
$strRunQuery = 'SQL Befehl ausführen';
|
||||
$strRunSQLQuery = 'SQL-Befehl(e) ausführen in Datenbank ';
|
||||
|
||||
$strTable = "Tabelle ";
|
||||
$strTableComments = "Tabellen-Kommentar";
|
||||
$strTableEmpty = "Der Tabellenname ist leer!";
|
||||
$strTableMaintenance = "Hilfsmittel";
|
||||
$strTableStructure = "Tabellenstruktur für Tabelle";
|
||||
$strTableType = "Tabellentyp";
|
||||
$strTerminatedBy = "getrennt mit";
|
||||
$strTextAreaLength = " Wegen der Länge ist dieses<br>Feld vieleicht nicht editierbar.";
|
||||
$strTheContent = "Der Inhalt Ihrer Datei wurde eingefügt.";
|
||||
$strTheContents = "Der Inhalt der CSV-Datei ersetzt die Einträge mit den gleichen Primär- oder Unique-Schlüsseln.";
|
||||
$strTheTerminator = "Der Trenner zwischen den Feldern.";
|
||||
$strTotal = "insgesamt";
|
||||
$strType = "Typ";
|
||||
$strSave = 'Speichern';
|
||||
$strSelect = 'Teilw. anzeigen';
|
||||
$strSelectFields = 'Felder auswählen (mind. eines):';
|
||||
$strSelectNumRows = 'in der Abfrage';
|
||||
$strSend = 'Senden';
|
||||
$strSequence = ' Sequenz ';
|
||||
$strServerVersion = 'Server Version';
|
||||
$strShow = 'Zeige';
|
||||
$strShowingRecords = 'Zeige Datensätze ';
|
||||
$strShowThisQuery = 'SQL Befehl hier wieder anzeigen';
|
||||
$strSingly = '(einmalig)';
|
||||
$strSize = 'Größe';
|
||||
$strSort = 'Sortierung';
|
||||
$strSpaceUsage = 'Speicherplatzverbrauch';
|
||||
$strSQLQuery = 'SQL-Befehl';
|
||||
$strStatement = 'Angaben';
|
||||
$strStrucCSV = 'CSV-Daten';
|
||||
$strStrucData = 'Struktur und Daten';
|
||||
$strStrucDrop = 'Mit \'drop table\'';
|
||||
$strStrucOnly = 'Nur Struktur';
|
||||
$strSubmit = 'Abschicken';
|
||||
$strSuccess = 'Ihr SQL-Befehl wurde erfolgreich ausgeführt.';
|
||||
$strSum = 'Summe';
|
||||
|
||||
$strUncheckAll = "Auswahl entfernen";
|
||||
$strUnique = "Unique";
|
||||
$strUpdatePassMessage = "Das Password wurde geändert:";
|
||||
$strUpdatePassword = "Password ändern";
|
||||
$strUpdatePrivMessage = "Die Rechte wurden geändert:";
|
||||
$strUpdateQuery = "Aktualisieren";
|
||||
$strUsage = "Verbrauch";
|
||||
$strUser = "Benutzer";
|
||||
$strUserEmpty = "Kein Benutzername eingegeben!";
|
||||
$strUserName = "Benutzername";
|
||||
$strUsers = "Benutzer";
|
||||
$strUseTables = "Verwendete Tabellen";
|
||||
$strTable = 'Tabelle ';
|
||||
$strTableComments = 'Tabellen-Kommentar';
|
||||
$strTableEmpty = 'Der Tabellenname ist leer!';
|
||||
$strTableMaintenance = 'Hilfsmittel';
|
||||
$strTableStructure = 'Tabellenstruktur für Tabelle';
|
||||
$strTableType = 'Tabellentyp';
|
||||
$strTerminatedBy = 'getrennt mit';
|
||||
$strTextAreaLength = ' Wegen der Länge ist dieses<br />Feld vieleicht nicht editierbar.';
|
||||
$strTheContent = 'Der Inhalt Ihrer Datei wurde eingefügt.';
|
||||
$strTheContents = 'Der Inhalt der CSV-Datei ersetzt die Einträge mit den gleichen Primär- oder Unique-Schlüsseln.';
|
||||
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
|
||||
$strTotal = 'insgesamt';
|
||||
$strType = 'Typ';
|
||||
|
||||
$strValue = "Wert";
|
||||
$strViewDump = "Dump (Schema) der Tabelle anzeigen";
|
||||
$strViewDumpDB = "Dump (Schema) der Datenbank anzeigen";
|
||||
$strUncheckAll = 'Auswahl entfernen';
|
||||
$strUnique = 'Unique';
|
||||
$strUpdatePassMessage = 'Das Password wurde geändert:';
|
||||
$strUpdatePassword = 'Password ändern';
|
||||
$strUpdatePrivMessage = 'Die Rechte wurden geändert:';
|
||||
$strUpdateQuery = 'Aktualisieren';
|
||||
$strUsage = 'Verbrauch';
|
||||
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anführungszeichen ';
|
||||
$strUser = 'Benutzer';
|
||||
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
||||
$strUserName = 'Benutzername';
|
||||
$strUsers = 'Benutzer';
|
||||
$strUseTables = 'Verwendete Tabellen';
|
||||
|
||||
$strWelcome = "Willkommen bei ";
|
||||
$strWrongUser = "Falscher Benutzername/Passwort. Zugriff verweigert.";
|
||||
$strValue = 'Wert';
|
||||
$strViewDump = 'Dump (Schema) der Tabelle anzeigen';
|
||||
$strViewDumpDB = 'Dump (Schema) der Datenbank anzeigen';
|
||||
|
||||
$strYes = "Ja";
|
||||
$strWelcome = 'Willkommen bei ';
|
||||
$strWrongUser = 'Falscher Benutzername/Passwort. Zugriff verweigert.';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binär ";
|
||||
$strBinaryDoNotEdit=" Binär - nicht editierbar !";
|
||||
$strEnglishPrivileges=" Anmerkung: MySQL Rechtename werden in Englisch angegeben ";
|
||||
$strNotNumber = "Das ist keine Zahl!";
|
||||
$strNotValidNumber = " ist keine gültige Zeilennummer!"; // do not html quote
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"BZip komprimiert\"";
|
||||
$strGzip = "\"GZip komprimiert\"";
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "Datensätze";
|
||||
$strRowSize = "Zeilengröße";
|
||||
$strShowThisQuery = "SQL Befehl hier wieder anzeigen";
|
||||
$strUseBackquotes=" Tabellen- und Feldnamen in einfachen Anführungszeichen ";
|
||||
$strQueryOnDb=" SQL-Befehl in der Datenbank ";
|
||||
$strFieldsEmpty=" Sie müssen angeben wieviele Felder die Tabelle haben soll! ";
|
||||
$strAffectedRows=" Betroffene Datensätze: ";
|
||||
$strYes = 'Ja';
|
||||
?>
|
||||
|
||||
@ -2,288 +2,286 @@
|
||||
/* $Id$ */
|
||||
/* Alessandro Astarita <aleast@capri.it> 21 July 2001 */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ".";
|
||||
$number_decimal_separator = ",";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = '.';
|
||||
$number_decimal_separator = ',';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Accesso negato";
|
||||
$strAction = "Azione";
|
||||
$strAddDeleteColumn = "Aggiungi/Cancella campo";
|
||||
$strAddDeleteRow = "Aggiungi/Cancella criterio";
|
||||
$strAddNewField = "Aggiungi un nuovo campo";
|
||||
$strAddPriv = "Aggiungi un nuovo privilegio";
|
||||
$strAddPrivMessage = "Hai aggiunto un nuovo privilegio.";
|
||||
$strAddSearchConditions = "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):";
|
||||
$strAddUser = "Aggiungi un nuovo utente";
|
||||
$strAddUserMessage = "Hai aggiunto un nuovo utente.";
|
||||
$strAfter = "Dopo";
|
||||
$strAll = "Tutti";
|
||||
$strAlterOrderBy = "Altera tabella ordinata per";
|
||||
$strAnalyzeTable = "Analizza tabella";
|
||||
$strAnd = "E";
|
||||
$strAnIndex = "E' stato aggiunto un indice per ";
|
||||
$strAny = "Qualsiasi";
|
||||
$strAnyColumn = "Qualsiasi colonna";
|
||||
$strAnyDatabase = "Qualsiasi database";
|
||||
$strAnyHost = "Qualsiasi host";
|
||||
$strAnyTable = "Qualsiasi tabella";
|
||||
$strAnyUser = "Qualsiasi utente";
|
||||
$strAPrimaryKey = "E' stata creata una chiave primaria per ";
|
||||
$strAscending = "Crescente";
|
||||
$strAtBeginningOfTable = "All'inizio della tabella";
|
||||
$strAtEndOfTable = "Alla fine della tabella";
|
||||
$strAttr = "Attributi";
|
||||
|
||||
$strBack = "Indietro";
|
||||
$strBookmarkLabel = "Etichetta";
|
||||
$strBookmarkQuery = "Query SQL aggiunte ai preferiti";
|
||||
$strBookmarkThis = "Aggiungi ai preferiti questa query SQL";
|
||||
$strBookmarkView = "Visualizza solo";
|
||||
$strBrowse = "Mostra";
|
||||
$strAccessDenied = 'Accesso negato';
|
||||
$strAction = 'Azione';
|
||||
$strAddDeleteColumn = 'Aggiungi/Cancella campo';
|
||||
$strAddDeleteRow = 'Aggiungi/Cancella criterio';
|
||||
$strAddNewField = 'Aggiungi un nuovo campo';
|
||||
$strAddPriv = 'Aggiungi un nuovo privilegio';
|
||||
$strAddPrivMessage = 'Hai aggiunto un nuovo privilegio.';
|
||||
$strAddSearchConditions = 'Aggiungi condizioni di ricerca (corpo della clausola "where"):';
|
||||
$strAddUser = 'Aggiungi un nuovo utente';
|
||||
$strAddUserMessage = 'Hai aggiunto un nuovo utente.';
|
||||
$strAfter = 'Dopo';
|
||||
$strAll = 'Tutti';
|
||||
$strAlterOrderBy = 'Altera tabella ordinata per';
|
||||
$strAnalyzeTable = 'Analizza tabella';
|
||||
$strAnd = 'E';
|
||||
$strAnIndex = 'E\' stato aggiunto un indice per ';
|
||||
$strAny = 'Qualsiasi';
|
||||
$strAnyColumn = 'Qualsiasi colonna';
|
||||
$strAnyDatabase = 'Qualsiasi database';
|
||||
$strAnyHost = 'Qualsiasi host';
|
||||
$strAnyTable = 'Qualsiasi tabella';
|
||||
$strAnyUser = 'Qualsiasi utente';
|
||||
$strAPrimaryKey = 'E\' stata creata una chiave primaria per ';
|
||||
$strAscending = 'Crescente';
|
||||
$strAtBeginningOfTable = 'All\'inizio della tabella';
|
||||
$strAtEndOfTable = 'Alla fine della tabella';
|
||||
$strAttr = 'Attributi';
|
||||
|
||||
$strCantLoadMySQL = "impossibile caricare l'estensione MySQL,<br>controlla la configurazione di PHP.";
|
||||
$strCarriage = "Ritorno carrello: \\r";
|
||||
$strChange = "Modifica";
|
||||
$strCheckAll = "Seleziona tutti";
|
||||
$strCheckDbPriv = "Controlla i privilegi del database";
|
||||
$strCheckTable = "Controlla tabella";
|
||||
$strColumn = "Colonna";
|
||||
$strColumnEmpty = "Il nome della colonna è vuoto!";
|
||||
$strColumnNames = "Nomi delle colonne";
|
||||
$strCompleteInserts = "Inserimenti completi";
|
||||
$strConfirm = "Sicuro di volerlo fare?";
|
||||
$strCopyTable = "Copia la tabella su";
|
||||
$strCopyTableOK = "La tabella %s è stata copiata su %s.";
|
||||
$strCreate = "Crea";
|
||||
$strCreateNewDatabase = "Crea un nuovo database";
|
||||
$strCreateNewTable = "Crea una nuova tabella nel database ";
|
||||
$strCriteria = "Criterio";
|
||||
$strBack = 'Indietro';
|
||||
$strBinary = 'Binario';
|
||||
$strBinaryDoNotEdit = 'Binario - non modificare';
|
||||
$strBookmarkLabel = 'Etichetta';
|
||||
$strBookmarkQuery = 'Query SQL aggiunte ai preferiti';
|
||||
$strBookmarkThis = 'Aggiungi ai preferiti questa query SQL';
|
||||
$strBookmarkView = 'Visualizza solo';
|
||||
$strBrowse = 'Mostra';
|
||||
$strBzip = '"compresso con bzip2"';
|
||||
|
||||
$strData = "Dati";
|
||||
$strDatabase = "Database ";
|
||||
$strDatabases = "database";
|
||||
$strDataOnly = "Solo dati";
|
||||
$strDbEmpty = "Il nome del database è vuoto!";
|
||||
$strDefault = "Predefinito";
|
||||
$strDelete = "Cancella";
|
||||
$strDeleted = "La riga è stata cancellata";
|
||||
$strDeleteFailed = "Cancellazione fallita!";
|
||||
$strDeletePassword = "Cancella Password";
|
||||
$strDeleteUserMessage = "Hai cancellato l'utente";
|
||||
$strDelPassMessage = "Hai cancellato la password per";
|
||||
$strDescending = "Decrescente";
|
||||
$strDisableMagicQuotes = "<b>Attenzione:</b> Hai l'opzione 'magic_quotes_gpc' abilitata nel file di configurazione di PHP. Questa versione di PhpMyAdmin non funziona correttamente con essa. Fai riferimento alla sezione relativa alla configurazione del manuale PHP per informazioni su come disabilitarla.";
|
||||
$strDisplay = "Visualizza";
|
||||
$strDoAQuery = "Esegui \"query da esempio\" (carattere jolly: \"%\")";
|
||||
$strDocu = "Documentazione";
|
||||
$strDoYouReally = "Confermi: ";
|
||||
$strDrop = "Elimina";
|
||||
$strDropDB = "Elimina database ";
|
||||
$strDumpingData = "Dump dei dati per la tabella";
|
||||
$strDynamic = "dinamico";
|
||||
$strCantLoadMySQL = 'impossibile caricare l\'estensione MySQL,<br />controlla la configurazione di PHP.';
|
||||
$strCarriage = 'Ritorno carrello: \\r';
|
||||
$strChange = 'Modifica';
|
||||
$strCheckAll = 'Seleziona tutti';
|
||||
$strCheckDbPriv = 'Controlla i privilegi del database';
|
||||
$strCheckTable = 'Controlla tabella';
|
||||
$strColumn = 'Colonna';
|
||||
$strColumnEmpty = 'Il nome della colonna è vuoto!';
|
||||
$strColumnNames = 'Nomi delle colonne';
|
||||
$strCompleteInserts = 'Inserimenti completi';
|
||||
$strConfirm = 'Sicuro di volerlo fare?';
|
||||
$strCopyTable = 'Copia la tabella su';
|
||||
$strCopyTableOK = 'La tabella %s è stata copiata su %s.';
|
||||
$strCreate = 'Crea';
|
||||
$strCreateNewDatabase = 'Crea un nuovo database';
|
||||
$strCreateNewTable = 'Crea una nuova tabella nel database ';
|
||||
$strCriteria = 'Criterio';
|
||||
|
||||
$strEdit = "Modifica";
|
||||
$strEditPrivileges = "Modifica Privilegi";
|
||||
$strEffective = "Effettivo";
|
||||
$strEmpty = "Svuota";
|
||||
$strEmptyResultSet = "MySQL ha restituito un insieme vuoto (i.e. zero righe).";
|
||||
$strEnableMagicQuotes = "<b>Attenzione:</b> Non hai abilitato l'opzione 'magic_quotes_gpc' nella configurazione del PHP. PhpMyAdmin ne ha bisogno per funzionare correttamente. Fai riferimento alla sezione relativa alla configurazione del manuale PHP per informazioni su come abilitala.";
|
||||
$strEnclosedBy = "delimitati da";
|
||||
$strEnd = "Fine";
|
||||
$strError = "Errore";
|
||||
$strEscapedBy = "con escape";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Dati';
|
||||
$strDatabase = 'Database ';
|
||||
$strDatabases = 'database';
|
||||
$strDataOnly = 'Solo dati';
|
||||
$strDbEmpty = 'Il nome del database è vuoto!';
|
||||
$strDefault = 'Predefinito';
|
||||
$strDelete = 'Cancella';
|
||||
$strDeleted = 'La riga è stata cancellata';
|
||||
$strDeleteFailed = 'Cancellazione fallita!';
|
||||
$strDeletePassword = 'Cancella Password';
|
||||
$strDeleteUserMessage = 'Hai cancellato l\'utente';
|
||||
$strDelPassMessage = 'Hai cancellato la password per';
|
||||
$strDescending = 'Decrescente';
|
||||
$strDisableMagicQuotes = '<b>Attenzione:</b> Hai l\'opzione \'magic_quotes_gpc\' abilitata nel file di configurazione di PHP. Questa versione di PhpMyAdmin non funziona correttamente con essa. Fai riferimento alla sezione relativa alla configurazione del manuale PHP per informazioni su come disabilitarla.';
|
||||
$strDisplay = 'Visualizza';
|
||||
$strDoAQuery = 'Esegui "query da esempio" (carattere jolly: "%")';
|
||||
$strDocu = 'Documentazione';
|
||||
$strDoYouReally = 'Confermi: ';
|
||||
$strDrop = 'Elimina';
|
||||
$strDropDB = 'Elimina database ';
|
||||
$strDumpingData = 'Dump dei dati per la tabella';
|
||||
$strDynamic = 'dinamico';
|
||||
|
||||
$strField = "Campo";
|
||||
$strFields = "Campi";
|
||||
$strFixed = "fisso";
|
||||
$strFormat = "Formato";
|
||||
$strFunction = "Funzione";
|
||||
$strEdit = 'Modifica';
|
||||
$strEditPrivileges = 'Modifica Privilegi';
|
||||
$strEffective = 'Effettivo';
|
||||
$strEmpty = 'Svuota';
|
||||
$strEmptyResultSet = 'MySQL ha restituito un insieme vuoto (i.e. zero righe).';
|
||||
$strEnableMagicQuotes = '<b>Attenzione:</b> Non hai abilitato l\'opzione \'magic_quotes_gpc\' nella configurazione del PHP. PhpMyAdmin ne ha bisogno per funzionare correttamente. Fai riferimento alla sezione relativa alla configurazione del manuale PHP per informazioni su come abilitala.';
|
||||
$strEnclosedBy = 'delimitati da';
|
||||
$strEnd = 'Fine';
|
||||
$strEnglishPrivileges = 'Nota: i nomi dei privilegi di MySQL sono in Inglese';
|
||||
$strError = 'Errore';
|
||||
$strEscapedBy = 'con escape';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Generato il";
|
||||
$strGo = "Esegui";
|
||||
$strGrants = "Permetti";
|
||||
$strField = 'Campo';
|
||||
$strFields = 'Campi';
|
||||
$strFixed = 'fisso';
|
||||
$strFormat = 'Formato';
|
||||
$strFunction = 'Funzione';
|
||||
|
||||
$strHasBeenAltered = "è stato modificato.";
|
||||
$strHasBeenCreated = "è stato creato.";
|
||||
$strHasBeenDropped = "è stato eliminato.";
|
||||
$strHasBeenEmptied = "è stato svuotato.";
|
||||
$strHome = "Home";
|
||||
$strHomepageOfficial = "Home page ufficiale di phpMyAdmin";
|
||||
$strHomepageSourceforge = "Home page di phpMyAdmin su sourceforge.net";
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "Il nome di host è vuoto!";
|
||||
$strGenTime = 'Generato il';
|
||||
$strGo = 'Esegui';
|
||||
$strGrants = 'Permetti';
|
||||
$strGzip = '"compresso con gzip"';
|
||||
|
||||
$strIfYouWish = "Per caricare i dati solo per alcune colonne della tabella, specificare la lista dei campi (separati da virgole).";
|
||||
$strIndex = "Indice";
|
||||
$strIndexes = "Indici";
|
||||
$strInsert = "Inserisci";
|
||||
$strInsertAsNewRow = "Inserisci come nuova riga";
|
||||
$strInsertIntoTable = "Inserisci nella tabella";
|
||||
$strInsertNewRow = "Inserisci una nuova riga";
|
||||
$strInsertTextfiles = "Inserisci un file di testo nella tabella";
|
||||
$strInUse = "in uso";
|
||||
$strHasBeenAltered = 'è stato modificato.';
|
||||
$strHasBeenCreated = 'è stato creato.';
|
||||
$strHasBeenDropped = 'è stato eliminato.';
|
||||
$strHasBeenEmptied = 'è stato svuotato.';
|
||||
$strHome = 'Home';
|
||||
$strHomepageOfficial = 'Home page ufficiale di phpMyAdmin';
|
||||
$strHomepageSourceforge = 'Home page di phpMyAdmin su sourceforge.net';
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'Il nome di host è vuoto!';
|
||||
|
||||
$strKeyname = "Nome chiave";
|
||||
$strKill = "Uccidi";
|
||||
$strIfYouWish = 'Per caricare i dati solo per alcune colonne della tabella, specificare la lista dei campi (separati da virgole).';
|
||||
$strIndex = 'Indice';
|
||||
$strIndexes = 'Indici';
|
||||
$strInsert = 'Inserisci';
|
||||
$strInsertAsNewRow = 'Inserisci come nuova riga';
|
||||
$strInsertIntoTable = 'Inserisci nella tabella';
|
||||
$strInsertNewRow = 'Inserisci una nuova riga';
|
||||
$strInsertTextfiles = 'Inserisci un file di testo nella tabella';
|
||||
$strInUse = 'in uso';
|
||||
|
||||
$strLength = "Lunghezza";
|
||||
$strLengthSet = "Lunghezza/Set";
|
||||
$strLimitNumRows = "record per pagina";
|
||||
$strLineFeed = "Fine riga: \\n";
|
||||
$strLines = "Righe";
|
||||
$strLocationTextfile = "Percorso del file";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Disconnetti";
|
||||
$strKeyname = 'Nome chiave';
|
||||
$strKill = 'Uccidi';
|
||||
|
||||
$strModifications = "Le modifiche sono state salvate";
|
||||
$strModify = "Modifica";
|
||||
$strMySQLReloaded = "MySQL riavviato.";
|
||||
$strMySQLSaid = "Messaggio di MySQL: ";
|
||||
$strMySQLShowProcess = "Visualizza processi in esecuzione";
|
||||
$strMySQLShowStatus = "Visualizza informazioni di runtime di MySQL";
|
||||
$strMySQLShowVars = "Visualizza variabili di sistema di MySQL";
|
||||
$strLength = 'Lunghezza';
|
||||
$strLengthSet = 'Lunghezza/Set';
|
||||
$strLimitNumRows = 'record per pagina';
|
||||
$strLineFeed = 'Fine riga: \\n';
|
||||
$strLines = 'Righe';
|
||||
$strLocationTextfile = 'Percorso del file';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Disconnetti';
|
||||
|
||||
$strName = "Nome";
|
||||
$strNext = "Prossimo";
|
||||
$strNo = " No ";
|
||||
$strNoPassword = "Nessuna Password";
|
||||
$strNoPrivileges = "Nessun Privilegio";
|
||||
$strNoRights = "Non hai i permessi per effettuare questa operazione!";
|
||||
$strNoTablesFound = "Non ci sono tabelle nel database.";
|
||||
$strNoUsersFound = "Nessun utente trovato.";
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = "Numero di indici avanzati";
|
||||
$strModifications = 'Le modifiche sono state salvate';
|
||||
$strModify = 'Modifica';
|
||||
$strMySQLReloaded = 'MySQL riavviato.';
|
||||
$strMySQLSaid = 'Messaggio di MySQL: ';
|
||||
$strMySQLShowProcess = 'Visualizza processi in esecuzione';
|
||||
$strMySQLShowStatus = 'Visualizza informazioni di runtime di MySQL';
|
||||
$strMySQLShowVars = 'Visualizza variabili di sistema di MySQL';
|
||||
|
||||
$strOftenQuotation = "In genere da doppi apici (virgolette). OPZIONALE indica che solo i campi <I>char</I> e <I>varchar</I> devono essere delimitati dal carattere indicato.";
|
||||
$strOptimizeTable = "Ottimizza tabella";
|
||||
$strOptionalControls = "Opzionale. Questo carattere controlla come scrivere o leggere i caratteri speciali.";
|
||||
$strOptionally = "OPZIONALE";
|
||||
$strOr = "O";
|
||||
$strOverhead = "Overhead";
|
||||
$strName = 'Nome';
|
||||
$strNbRecords = 'n. di record';
|
||||
$strNext = 'Prossimo';
|
||||
$strNo = ' No ';
|
||||
$strNoPassword = 'Nessuna Password';
|
||||
$strNoPrivileges = 'Nessun Privilegio';
|
||||
$strNoRights = 'Non hai i permessi per effettuare questa operazione!';
|
||||
$strNoTablesFound = 'Non ci sono tabelle nel database.';
|
||||
$strNotNumber = 'Questo non è un numero!';
|
||||
$strNotValidNumber = ' non è una riga valida!';
|
||||
$strNoUsersFound = 'Nessun utente trovato.';
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = 'Numero di indici avanzati';
|
||||
|
||||
$strPassword = "Password";
|
||||
$strPasswordEmpty = "La password è vuota!";
|
||||
$strPasswordNotSame = "La password non coincide!";
|
||||
$strPHPVersion = "Versione PHP";
|
||||
$strPos1 = "Inizio";
|
||||
$strPrevious = "Precedente";
|
||||
$strPrimary = "Primaria";
|
||||
$strPrimaryKey = "Chiave primaria";
|
||||
$strPrinterFriendly = "Visulizzazione <I>per stampa</I> della tabella precedente";
|
||||
$strPrintView = "Visualizza per stampa";
|
||||
$strPrivileges = "Privilegi";
|
||||
$strProducedAnError = "ha causato un errore.";
|
||||
$strProperties = "Proprietà";
|
||||
$strOffSet = 'Spiazzamento';
|
||||
$strOftenQuotation = 'In genere da doppi apici (virgolette). OPZIONALE indica che solo i campi <I>char</I> e <I>varchar</I> devono essere delimitati dal carattere indicato.';
|
||||
$strOptimizeTable = 'Ottimizza tabella';
|
||||
$strOptionalControls = 'Opzionale. Questo carattere controlla come scrivere o leggere i caratteri speciali.';
|
||||
$strOptionally = 'OPZIONALE';
|
||||
$strOr = 'O';
|
||||
$strOverhead = 'Overhead'; // To translate
|
||||
|
||||
$strQBE = "Query da esempio";
|
||||
$strQBEDel = "Cancella";
|
||||
$strQBEIns = "Aggiungi";
|
||||
$strPassword = 'Password';
|
||||
$strPasswordEmpty = 'La password è vuota!';
|
||||
$strPasswordNotSame = 'La password non coincide!';
|
||||
$strPHPVersion = 'Versione PHP';
|
||||
$strPos1 = 'Inizio';
|
||||
$strPrevious = 'Precedente';
|
||||
$strPrimary = 'Primaria';
|
||||
$strPrimaryKey = 'Chiave primaria';
|
||||
$strPrinterFriendly = 'Visulizzazione <I>per stampa</I> della tabella precedente';
|
||||
$strPrintView = 'Visualizza per stampa';
|
||||
$strPrivileges = 'Privilegi';
|
||||
$strProducedAnError = 'ha causato un errore.';
|
||||
$strProperties = 'Proprietà';
|
||||
|
||||
$strReadTheDocs = "Leggere la docomentazione";
|
||||
$strRecords = "Record";
|
||||
$strReloadFailed = "Riavvio di MySQL fallito.";
|
||||
$strReloadMySQL = "Riavvia MySQL";
|
||||
$strRememberReload = "Ricorda di riavviare MySQL.";
|
||||
$strRenameTable = "Rinomina la tabella in";
|
||||
$strRenameTableOK = "La tabella %s è stata rinominata %s";
|
||||
$strRepairTable = "Ripara tabella";
|
||||
$strReplace = "Sostituisci";
|
||||
$strReplaceTable = "Sostituisci i dati della tabella col file";
|
||||
$strReset = "Riavvia";
|
||||
$strReType = "Reinserisci";
|
||||
$strRevoke = "Revoca";
|
||||
$strRevokeGrant = "Revoca permessi";
|
||||
$strRevokeGrantMessage = "Hai revocato i privilegi di permesso per";
|
||||
$strRevokeMessage = "Hai revocato i privilegi per";
|
||||
$strRevokePriv = "Revoca privilegi";
|
||||
$strRowLength = "Lunghezza riga";
|
||||
$strRows = "Righe";
|
||||
$strRowsFrom = "righe a partire da";
|
||||
$strRowsStatistic = "Statistiche righe";
|
||||
$strRunning = "in esecuzione su ";
|
||||
$strRunQuery = "Invia Query";
|
||||
$strRunSQLQuery = "Esegui una/più query SQL sul database ";
|
||||
$strQBE = 'Query da esempio';
|
||||
$strQBEDel = 'Cancella';
|
||||
$strQBEIns = 'Aggiungi';
|
||||
|
||||
$strSave = "Salva";
|
||||
$strSelect = "Seleziona";
|
||||
$strSelectFields = "Seleziona campi (almeno uno):";
|
||||
$strSelectNumRows = "nella query";
|
||||
$strSend = "Invia";
|
||||
$strSequence = "Sequenza";
|
||||
$strServerVersion = "Versione MySQL";
|
||||
$strShow = "Mostra";
|
||||
$strShowingRecords = "Visualizzazione record ";
|
||||
$strSingly = "(singolarmente)";
|
||||
$strSize = "Dimensione";
|
||||
$strSort = "Ordinamento";
|
||||
$strSpaceUsage = "Spazio utilizzato";
|
||||
$strSQLQuery = "query SQL";
|
||||
$strStatement = "Istruzioni";
|
||||
$strStrucCSV = "dati CSV";
|
||||
$strStrucData = "Struttura e dati";
|
||||
$strStrucDrop = "Aggiungi 'drop table'";
|
||||
$strStrucOnly = "Solo struttura";
|
||||
$strSubmit = "Invia";
|
||||
$strSuccess = "La query è stata eseguita con successo";
|
||||
$strSum = "Totali";
|
||||
$strReadTheDocs = 'Leggere la docomentazione';
|
||||
$strRecords = 'Record';
|
||||
$strReloadFailed = 'Riavvio di MySQL fallito.';
|
||||
$strReloadMySQL = 'Riavvia MySQL';
|
||||
$strRememberReload = 'Ricorda di riavviare MySQL.';
|
||||
$strRenameTable = 'Rinomina la tabella in';
|
||||
$strRenameTableOK = 'La tabella %s è stata rinominata %s';
|
||||
$strRepairTable = 'Ripara tabella';
|
||||
$strReplace = 'Sostituisci';
|
||||
$strReplaceTable = 'Sostituisci i dati della tabella col file';
|
||||
$strReset = 'Riavvia';
|
||||
$strReType = 'Reinserisci';
|
||||
$strRevoke = 'Revoca';
|
||||
$strRevokeGrant = 'Revoca permessi';
|
||||
$strRevokeGrantMessage = 'Hai revocato i privilegi di permesso per';
|
||||
$strRevokeMessage = 'Hai revocato i privilegi per';
|
||||
$strRevokePriv = 'Revoca privilegi';
|
||||
$strRowLength = 'Lunghezza riga';
|
||||
$strRows = 'Righe';
|
||||
$strRowsFrom = 'righe a partire da';
|
||||
$strRowSize = 'Dimensione riga';
|
||||
$strRowsStatistic = 'Statistiche righe';
|
||||
$strRunning = 'in esecuzione su ';
|
||||
$strRunQuery = 'Invia Query';
|
||||
$strRunSQLQuery = 'Esegui una/più query SQL sul database ';
|
||||
|
||||
$strTable = "tabella ";
|
||||
$strTableComments = "Commenti sulla tabella";
|
||||
$strTableEmpty = "Il nome della tabella è vuoto!";
|
||||
$strTableMaintenance = "Amministrazione tabella";
|
||||
$strTableStructure = "Struttura della tabella";
|
||||
$strTableType = "Tipo tabella";
|
||||
$strTerminatedBy = "terminati da";
|
||||
$strTextAreaLength = " A causa della sua lunghezza,<br> questo campo non può essere modificato ";
|
||||
$strTheContent = "Il contenuto del file è stato inserito.";
|
||||
$strTheContents = "Il contenuto del file sostituisce le righe della tabella con la stessa chiave primaria o chiave unica.";
|
||||
$strTheTerminator = "Il carattere terminatore dei campi.";
|
||||
$strTotal = "Totali";
|
||||
$strType = "Tipo";
|
||||
$strSave = 'Salva';
|
||||
$strSelect = 'Seleziona';
|
||||
$strSelectFields = 'Seleziona campi (almeno uno):';
|
||||
$strSelectNumRows = 'nella query';
|
||||
$strSend = 'Invia';
|
||||
$strSequence = 'Sequenza';
|
||||
$strServerVersion = 'Versione MySQL';
|
||||
$strShow = 'Mostra';
|
||||
$strShowingRecords = 'Visualizzazione record ';
|
||||
$strShowThisQuery = 'Mostra questa query di nuovo';
|
||||
$strSingly = '(singolarmente)';
|
||||
$strSize = 'Dimensione';
|
||||
$strSort = 'Ordinamento';
|
||||
$strSpaceUsage = 'Spazio utilizzato';
|
||||
$strSQLQuery = 'query SQL';
|
||||
$strStatement = 'Istruzioni';
|
||||
$strStrucCSV = 'dati CSV';
|
||||
$strStrucData = 'Struttura e dati';
|
||||
$strStrucDrop = 'Aggiungi \'drop table\'';
|
||||
$strStrucOnly = 'Solo struttura';
|
||||
$strSubmit = 'Invia';
|
||||
$strSuccess = 'La query è stata eseguita con successo';
|
||||
$strSum = 'Totali';
|
||||
|
||||
$strUncheckAll = "Deseleziona tutti";
|
||||
$strUnique = "Unica";
|
||||
$strUpdatePassMessage = "Hai aggiornato la password per";
|
||||
$strUpdatePassword = "Aggiorna Password";
|
||||
$strUpdatePrivMessage = "Hai aggiornato i permessi per";
|
||||
$strUpdateQuery = "Aggiorna Query";
|
||||
$strUsage = "Utilizzo";
|
||||
$strUser = "Utente";
|
||||
$strUserEmpty = "Il nome utente è vuoto!";
|
||||
$strUserName = "Nome utente";
|
||||
$strUsers = "Utenti";
|
||||
$strUseTables = "Utilizza tabelle";
|
||||
$strTable = 'tabella ';
|
||||
$strTableComments = 'Commenti sulla tabella';
|
||||
$strTableEmpty = 'Il nome della tabella è vuoto!';
|
||||
$strTableMaintenance = 'Amministrazione tabella';
|
||||
$strTableStructure = 'Struttura della tabella';
|
||||
$strTableType = 'Tipo tabella';
|
||||
$strTerminatedBy = 'terminati da';
|
||||
$strTextAreaLength = ' A causa della sua lunghezza,<br /> questo campo non può essere modificato ';
|
||||
$strTheContent = 'Il contenuto del file è stato inserito.';
|
||||
$strTheContents = 'Il contenuto del file sostituisce le righe della tabella con la stessa chiave primaria o chiave unica.';
|
||||
$strTheTerminator = 'Il carattere terminatore dei campi.';
|
||||
$strTotal = 'Totali';
|
||||
$strType = 'Tipo';
|
||||
|
||||
$strValue = "Valore";
|
||||
$strViewDump = "Visualizza dump (schema) della tabella";
|
||||
$strViewDumpDB = "Visualizza dump (schema) del database";
|
||||
$strUncheckAll = 'Deseleziona tutti';
|
||||
$strUnique = 'Unica';
|
||||
$strUpdatePassMessage = 'Hai aggiornato la password per';
|
||||
$strUpdatePassword = 'Aggiorna Password';
|
||||
$strUpdatePrivMessage = 'Hai aggiornato i permessi per';
|
||||
$strUpdateQuery = 'Aggiorna Query';
|
||||
$strUsage = 'Utilizzo';
|
||||
$strUser = 'Utente';
|
||||
$strUserEmpty = 'Il nome utente è vuoto!';
|
||||
$strUserName = 'Nome utente';
|
||||
$strUsers = 'Utenti';
|
||||
$strUseTables = 'Utilizza tabelle';
|
||||
|
||||
$strWelcome = "Benvenuto in ";
|
||||
$strWrongUser = "Nome utente o password errati. Accesso negato.";
|
||||
$strValue = 'Valore';
|
||||
$strViewDump = 'Visualizza dump (schema) della tabella';
|
||||
$strViewDumpDB = 'Visualizza dump (schema) del database';
|
||||
|
||||
$strYes = " Si ";
|
||||
$strWelcome = 'Benvenuto in ';
|
||||
$strWrongUser = 'Nome utente o password errati. Accesso negato.';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary = "Binario"; //to translate
|
||||
$strBinaryDoNotEdit = "Binario - non modificare";
|
||||
$strEnglishPrivileges = "Nota: i nomi dei privilegi di MySQL sono in Inglese";
|
||||
$strNotNumber = "Questo non è un numero!";
|
||||
$strNotValidNumber = " non è una riga valida!";
|
||||
$strYes = ' Si ';
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"compresso con bzip2\"";
|
||||
$strGzip = "\"compresso con gzip\"";
|
||||
$strOffSet = "Spiazzamento";
|
||||
$strNbRecords = "n. di record";
|
||||
$strRowSize = "Dimensione riga";
|
||||
$strShowThisQuery = "Mostra questa query di nuovo";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "euc-jp";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'euc-jp';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "アクセスは拒否されました。";
|
||||
$strAction = "実行";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "フィールドの追加";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "検索条件文を追加してください。(\"where\"の節文):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "後に-->";
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "テーブルを分析します。";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "インデックスを追加しました。";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "Primaryキーを追加しました。 --> ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "テーブルの最初";
|
||||
$strAtEndOfTable = "テーブルの最後";
|
||||
$strAttr = "表示";
|
||||
|
||||
$strBack = "戻る";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "表示";
|
||||
$strAccessDenied = 'アクセスは拒否されました。';
|
||||
$strAction = '実行';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'フィールドの追加';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = '検索条件文を追加してください。("where"の節文):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = '後に-->';
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'テーブルを分析します。';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'インデックスを追加しました。';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'Primaryキーを追加しました。 --> ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'テーブルの最初';
|
||||
$strAtEndOfTable = 'テーブルの最後';
|
||||
$strAttr = '表示';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "キャリッジリターン: \\r";
|
||||
$strChange = "変更";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "テーブルをチェックします。";
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "列(コラム)名";
|
||||
$strCompleteInserts = "完全なINSERT文の作成";
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "テーブルを次へコピーします。-->";
|
||||
$strCopyTableOK = "%sテーブルを%sにコピーしました。";
|
||||
$strCreate = "作成";
|
||||
$strCreateNewDatabase = "新しいDBを作成します。";
|
||||
$strCreateNewTable = "現在のDBに新しいテーブルを作成します。 --> ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = '戻る';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = '表示';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "データベース";
|
||||
$strDatabases = "データベース";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "基本値";
|
||||
$strDelete = "削除";
|
||||
$strDeleted = "選択した列を削除しました。";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> PHP 'magic_quotes_gpc'がEnableに設定されていますが、このバージョンのphpMyAdminでは正しく作動しません。PHPマニュアルを参照してdisableに設定してください。";
|
||||
$strDisplay = "表示";
|
||||
$strDoAQuery = "\"例のQUERY\"を実行 (wildcard: \"%\")";
|
||||
$strDocu = "ヘルプ";
|
||||
$strDoYouReally = "本当に次を実行しまか。 --> ";
|
||||
$strDrop = "削除";
|
||||
$strDropDB = "DBの削除 -->";
|
||||
$strDumpingData = "テーブルのダンプデータ";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'キャリッジリターン: \\r';
|
||||
$strChange = '変更';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'テーブルをチェックします。';
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = '列(コラム)名';
|
||||
$strCompleteInserts = '完全なINSERT文の作成';
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'テーブルを次へコピーします。-->';
|
||||
$strCopyTableOK = '%sテーブルを%sにコピーしました。';
|
||||
$strCreate = '作成';
|
||||
$strCreateNewDatabase = '新しいDBを作成します。';
|
||||
$strCreateNewTable = '現在のDBに新しいテーブルを作成します。 --> ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "修正";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "空にする";
|
||||
$strEmptyResultSet = "MySQLが空の値をリターンしました。(i.e. zero rows).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> PHP 'magic_quotes_gpc'がEnableに設定されていません。phpMyAdminはEnableの状態で正しく作動します。PHPマニュアルを参照しEnableに設定してください。";
|
||||
$strEnclosedBy = "囲み文字";
|
||||
$strEnd = "最後";
|
||||
$strError = "エラー";
|
||||
$strEscapedBy = "エスケープ文字";
|
||||
$strExtra = "追加";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'データベース';
|
||||
$strDatabases = 'データベース';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = '基本値';
|
||||
$strDelete = '削除';
|
||||
$strDeleted = '選択した列を削除しました。';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> PHP \'magic_quotes_gpc\'がEnableに設定されていますが、このバージョンのphpMyAdminでは正しく作動しません。PHPマニュアルを参照してdisableに設定してください。';
|
||||
$strDisplay = '表示';
|
||||
$strDoAQuery = '"例のQUERY"を実行 (wildcard: "%")';
|
||||
$strDocu = 'ヘルプ';
|
||||
$strDoYouReally = '本当に次を実行しまか。 --> ';
|
||||
$strDrop = '削除';
|
||||
$strDropDB = 'DBの削除 -->';
|
||||
$strDumpingData = 'テーブルのダンプデータ';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "フィールド";
|
||||
$strFields = "フィールド";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "関数";
|
||||
$strEdit = '修正';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = '空にする';
|
||||
$strEmptyResultSet = 'MySQLが空の値をリターンしました。(i.e. zero rows).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> PHP \'magic_quotes_gpc\'がEnableに設定されていません。phpMyAdminはEnableの状態で正しく作動します。PHPマニュアルを参照しEnableに設定してください。';
|
||||
$strEnclosedBy = '囲み文字';
|
||||
$strEnd = '最後';
|
||||
$strError = 'エラー';
|
||||
$strEscapedBy = 'エスケープ文字';
|
||||
$strExtra = '追加';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "実行";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'フィールド';
|
||||
$strFields = 'フィールド';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = '関数';
|
||||
|
||||
$strHasBeenAltered = "を変更しました。";
|
||||
$strHasBeenCreated = "を作成しました。";
|
||||
$strHasBeenDropped = "を削除しました。";
|
||||
$strHasBeenEmptied = "を空にしました。";
|
||||
$strHome = "MainPage";
|
||||
$strHomepageOfficial = "phpMyAdminホーム";
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page";
|
||||
$strHost = "ホスト";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = '実行';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "テーブルのコラム(列)にデータを追加する場合は、フィールドリストをカンマで区分してください。";
|
||||
$strIndex = "インデックス";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "追加";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "テーブルに追加";
|
||||
$strInsertNewRow = "新しい列の追加";
|
||||
$strInsertTextfiles = "テーブルにテキストファイルの追加";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'を変更しました。';
|
||||
$strHasBeenCreated = 'を作成しました。';
|
||||
$strHasBeenDropped = 'を削除しました。';
|
||||
$strHasBeenEmptied = 'を空にしました。';
|
||||
$strHome = 'MainPage';
|
||||
$strHomepageOfficial = 'phpMyAdminホーム';
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page';
|
||||
$strHost = 'ホスト';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Key名";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'テーブルのコラム(列)にデータを追加する場合は、フィールドリストをカンマで区分してください。';
|
||||
$strIndex = 'インデックス';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = '追加';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'テーブルに追加';
|
||||
$strInsertNewRow = '新しい列の追加';
|
||||
$strInsertTextfiles = 'テーブルにテキストファイルの追加';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "長さ/セット";
|
||||
$strLimitNumRows = "ページのレコード数";
|
||||
$strLineFeed = "改行文字: \\n";
|
||||
$strLines = "行";
|
||||
$strLocationTextfile = "SQLのダンプデータが保存されているテキストファイル";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "ログアウト";
|
||||
$strKeyname = 'Key名';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "を正しく修正しました。";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQLを新しく読み込みました。";
|
||||
$strMySQLSaid = "MySQLのメッセージ --> ";
|
||||
$strMySQLShowProcess = "MySQLプロセスの表示";
|
||||
$strMySQLShowStatus = "MySQLのランタイム情報";
|
||||
$strMySQLShowVars = "MySQLのシステム変数";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = '長さ/セット';
|
||||
$strLimitNumRows = 'ページのレコード数';
|
||||
$strLineFeed = '改行文字: \\n';
|
||||
$strLines = '行';
|
||||
$strLocationTextfile = 'SQLのダンプデータが保存されているテキストファイル';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'ログアウト';
|
||||
|
||||
$strName = "名前";
|
||||
$strNext = "次へ";
|
||||
$strNo = "いいえ";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "現在のDBにテーブルはありません。";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "空の値(Null)";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'を正しく修正しました。';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQLを新しく読み込みました。';
|
||||
$strMySQLSaid = 'MySQLのメッセージ --> ';
|
||||
$strMySQLShowProcess = 'MySQLプロセスの表示';
|
||||
$strMySQLShowStatus = 'MySQLのランタイム情報';
|
||||
$strMySQLShowVars = 'MySQLのシステム変数';
|
||||
|
||||
$strOftenQuotation = "引用符号です。オプションは、charまたはvarcharフィールドのみ\" \"で囲まれていることを意味します。";
|
||||
$strOptimizeTable = "テーブルを最適化します。";
|
||||
$strOptionalControls = "特殊文字の読み込み/書き込みオプション";
|
||||
$strOptionally = "オプションです。";
|
||||
$strOr = "または";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = '名前';
|
||||
$strNext = '次へ';
|
||||
$strNo = 'いいえ';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = '現在のDBにテーブルはありません。';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = '空の値(Null)';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "最初";
|
||||
$strPrevious = "以前";
|
||||
$strPrimary = "Primary";
|
||||
$strPrimaryKey = "Primaryキー";
|
||||
$strPrinterFriendly = "上記テーブルの印刷用表示";
|
||||
$strPrintView = "印刷用表示";
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "エラーが発生しました。";
|
||||
$strProperties = "プロパティ";
|
||||
$strOftenQuotation = '引用符号です。オプションは、charまたはvarcharフィールドのみ" "で囲まれていることを意味します。';
|
||||
$strOptimizeTable = 'テーブルを最適化します。';
|
||||
$strOptionalControls = '特殊文字の読み込み/書き込みオプション';
|
||||
$strOptionally = 'オプションです。';
|
||||
$strOr = 'または';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "例からクエリー実行";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = '最初';
|
||||
$strPrevious = '以前';
|
||||
$strPrimary = 'Primary';
|
||||
$strPrimaryKey = 'Primaryキー';
|
||||
$strPrinterFriendly = '上記テーブルの印刷用表示';
|
||||
$strPrintView = '印刷用表示';
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'エラーが発生しました。';
|
||||
$strProperties = 'プロパティ';
|
||||
|
||||
$strReadTheDocs = "文書の読み込み";
|
||||
$strRecords = "レコード数";
|
||||
$strReloadFailed = "MySQLのリロードに失敗しました。";
|
||||
$strReloadMySQL = "MySQLのリロード";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "テーブル名の変更";
|
||||
$strRenameTableOK = "%sを%sに名前を変更しました。";
|
||||
$strRepairTable = "テーブルを復旧します。";
|
||||
$strReplace = "置き換える";
|
||||
$strReplaceTable = "ファイルでテーブルを置き換える";
|
||||
$strReset = "リセット";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "開始行";
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "が実行中です。";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "現在のDBにSQLクエリーを実行します。 --> ";
|
||||
$strQBE = '例からクエリー実行';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "保存";
|
||||
$strSelect = "選択";
|
||||
$strSelectFields = "フィールドの選択(一つ以上):";
|
||||
$strSelectNumRows = "クエリー";
|
||||
$strSend = "送信";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "表示";
|
||||
$strShowingRecords = "レコード表示";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "実行されたSQLクエリー";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSVデータ";
|
||||
$strStrucData = "構造とデータ";
|
||||
$strStrucDrop = "'drop table'の追加";
|
||||
$strStrucOnly = "構造のみ";
|
||||
$strSubmit = "実行";
|
||||
$strSuccess = "SQLクエリーが正常に実行されました。";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = '文書の読み込み';
|
||||
$strRecords = 'レコード数';
|
||||
$strReloadFailed = 'MySQLのリロードに失敗しました。';
|
||||
$strReloadMySQL = 'MySQLのリロード';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'テーブル名の変更';
|
||||
$strRenameTableOK = '%sを%sに名前を変更しました。';
|
||||
$strRepairTable = 'テーブルを復旧します。';
|
||||
$strReplace = '置き換える';
|
||||
$strReplaceTable = 'ファイルでテーブルを置き換える';
|
||||
$strReset = 'リセット';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = '開始行';
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'が実行中です。';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = '現在のDBにSQLクエリーを実行します。 --> ';
|
||||
|
||||
$strTable = "テーブル ";
|
||||
$strTableComments = "テーブルの説明";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "テーブルの構造";
|
||||
$strTableType = "テーブルのタイプ";
|
||||
$strTerminatedBy = "終了文字 ";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "ファイルのデータを挿入しました。";
|
||||
$strTheContents = "ファイルのデータで、選択したテーブルのPrimaryまたはUniqueキーに一致する列を置き換えます。";
|
||||
$strTheTerminator = "フィールドの終了文字です。";
|
||||
$strTotal = "合計";
|
||||
$strType = "フィールドタイプ";
|
||||
$strSave = '保存';
|
||||
$strSelect = '選択';
|
||||
$strSelectFields = 'フィールドの選択(一つ以上):';
|
||||
$strSelectNumRows = 'クエリー';
|
||||
$strSend = '送信';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = '表示';
|
||||
$strShowingRecords = 'レコード表示';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = '実行されたSQLクエリー';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSVデータ';
|
||||
$strStrucData = '構造とデータ';
|
||||
$strStrucDrop = '\'drop table\'の追加';
|
||||
$strStrucOnly = '構造のみ';
|
||||
$strSubmit = '実行';
|
||||
$strSuccess = 'SQLクエリーが正常に実行されました。';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "ユニークタイプ";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'テーブル ';
|
||||
$strTableComments = 'テーブルの説明';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'テーブルの構造';
|
||||
$strTableType = 'テーブルのタイプ';
|
||||
$strTerminatedBy = '終了文字 ';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'ファイルのデータを挿入しました。';
|
||||
$strTheContents = 'ファイルのデータで、選択したテーブルのPrimaryまたはUniqueキーに一致する列を置き換えます。';
|
||||
$strTheTerminator = 'フィールドの終了文字です。';
|
||||
$strTotal = '合計';
|
||||
$strType = 'フィールドタイプ';
|
||||
|
||||
$strValue = "値";
|
||||
$strViewDump = "テーブルのダンプ(スキーマ)表示";
|
||||
$strViewDumpDB = "DBのダンプ(スキーマ)表示";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'ユニークタイプ';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Welcome to ";
|
||||
$strWrongUser = "ユーザ名またはパスワードが正しくありません。<br>アクセスは拒否されました。";
|
||||
$strValue = '値';
|
||||
$strViewDump = 'テーブルのダンプ(スキーマ)表示';
|
||||
$strViewDumpDB = 'DBのダンプ(スキーマ)表示';
|
||||
|
||||
$strYes = " はい ";
|
||||
$strWelcome = 'Welcome to ';
|
||||
$strWrongUser = 'ユーザ名またはパスワードが正しくありません。<br />アクセスは拒否されました。';
|
||||
|
||||
$strYes = ' はい ';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "ks_c_5601-1987";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'ks_c_5601-1987';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "접근이 거부되었습니다.";
|
||||
$strAction = "실행";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "필드 추가하기";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "검색 조건 문법을 추가하십시요. (\"where\" 쿼리문):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "다음에-->";
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "테이블 분석";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "인덱스를 추가하였습니다. ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "primary key를 추가 하였습니다 ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "테이블의 처음";
|
||||
$strAtEndOfTable = "테이블의 마지막";
|
||||
$strAttr = "보기";
|
||||
|
||||
$strBack = "뒤로";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "보기";
|
||||
$strAccessDenied = '접근이 거부되었습니다.';
|
||||
$strAction = '실행';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = '필드 추가하기';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = '검색 조건 문법을 추가하십시요. ("where" 쿼리문):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = '다음에-->';
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = '테이블 분석';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = '인덱스를 추가하였습니다. ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'primary key를 추가 하였습니다 ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = '테이블의 처음';
|
||||
$strAtEndOfTable = '테이블의 마지막';
|
||||
$strAttr = '보기';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "캐리지 리턴: \\r";
|
||||
$strChange = "변경";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "테이블 체크";
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "칼럼(列) 이름";
|
||||
$strCompleteInserts = "완전한 INSERT문 작성";
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "테이블을 다음에 복사합니다. -->";
|
||||
$strCopyTableOK = "%s 테이블이 %s 으로 복사되었습니다.";
|
||||
$strCreate = " 만들기 ";
|
||||
$strCreateNewDatabase = "새로운 데이터 베이스를 만듭니다";
|
||||
$strCreateNewTable = "현재의 데이터 베이스에 새로운 테이블을 만듭니다. -->";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = '뒤로';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = '보기';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "데이터 베이스 ";
|
||||
$strDatabases = "데이터 베이스 ";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "기본값";
|
||||
$strDelete = "삭제";
|
||||
$strDeleted = "선택한 열을 삭제 하였습니다.";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> PHP 'magic_quotes_gpc'가 Enable로 설정되어 있습니다만, 이 버전의 phpMyAdmin에서는 작동하지 않습니다. PHP 매뉴얼을 참조하여 disable로 설정해 주십시요.";
|
||||
$strDisplay = "보기";
|
||||
$strDoAQuery = "\"QUERY 예(例)\"를 실행 (wildcard: \"%\")";
|
||||
$strDocu = "도움말";
|
||||
$strDoYouReally = "정말로 다음을 실행하시겠습니까? --> ";
|
||||
$strDrop = "삭제";
|
||||
$strDropDB = "데이터 베이스 삭제 -->";
|
||||
$strDumpingData = "테이블의 덤프 데이터";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = '캐리지 리턴: \\r';
|
||||
$strChange = '변경';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = '테이블 체크';
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = '칼럼(列) 이름';
|
||||
$strCompleteInserts = '완전한 INSERT문 작성';
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = '테이블을 다음에 복사합니다. -->';
|
||||
$strCopyTableOK = '%s 테이블이 %s 으로 복사되었습니다.';
|
||||
$strCreate = ' 만들기 ';
|
||||
$strCreateNewDatabase = '새로운 데이터 베이스를 만듭니다';
|
||||
$strCreateNewTable = '현재의 데이터 베이스에 새로운 테이블을 만듭니다. -->';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "수정";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "비우기";
|
||||
$strEmptyResultSet = "MySQL 이 빈값을 리턴하였습니다.";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> PHP 'magic_quotes_gpc'이 Enable로 설정되어 있스지 않습니다. phpMyAdmin은 Enable상태에서 정상 작동합니다. PHP 매뉴얼을 참조하여 Enable로 설정해 주십시요.";
|
||||
$strEnclosedBy = "인용 기호";
|
||||
$strEnd = "마지막";
|
||||
$strError = "오류";
|
||||
$strEscapedBy = "에스케이프 기호";
|
||||
$strExtra = "추가";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = '데이터 베이스 ';
|
||||
$strDatabases = '데이터 베이스 ';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = '기본값';
|
||||
$strDelete = '삭제';
|
||||
$strDeleted = '선택한 열을 삭제 하였습니다.';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> PHP \'magic_quotes_gpc\'가 Enable로 설정되어 있습니다만, 이 버전의 phpMyAdmin에서는 작동하지 않습니다. PHP 매뉴얼을 참조하여 disable로 설정해 주십시요.';
|
||||
$strDisplay = '보기';
|
||||
$strDoAQuery = '"QUERY 예(例)"를 실행 (wildcard: "%")';
|
||||
$strDocu = '도움말';
|
||||
$strDoYouReally = '정말로 다음을 실행하시겠습니까? --> ';
|
||||
$strDrop = '삭제';
|
||||
$strDropDB = '데이터 베이스 삭제 -->';
|
||||
$strDumpingData = '테이블의 덤프 데이터';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "필드";
|
||||
$strFields = "필드";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "함수";
|
||||
$strEdit = '수정';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = '비우기';
|
||||
$strEmptyResultSet = 'MySQL 이 빈값을 리턴하였습니다.';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> PHP \'magic_quotes_gpc\'이 Enable로 설정되어 있스지 않습니다. phpMyAdmin은 Enable상태에서 정상 작동합니다. PHP 매뉴얼을 참조하여 Enable로 설정해 주십시요.';
|
||||
$strEnclosedBy = '인용 기호';
|
||||
$strEnd = '마지막';
|
||||
$strError = '오류';
|
||||
$strEscapedBy = '에스케이프 기호';
|
||||
$strExtra = '추가';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "실행";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = '필드';
|
||||
$strFields = '필드';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = '함수';
|
||||
|
||||
$strHasBeenAltered = "을(를) 변경하였습니다.";
|
||||
$strHasBeenCreated = "을(를) 작성하였습니다.";
|
||||
$strHasBeenDropped = "을(를) 삭제하였습니다.";
|
||||
$strHasBeenEmptied = "을(를) 비웠습니다.";
|
||||
$strHome = "MainPage";
|
||||
$strHomepageOfficial = "phpMyAdmin 홈 페이지";
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page";
|
||||
$strHost = "호스트";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = '실행';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "테이블 열(콜럼)에 데이터를 추가할 때는 필드 리스트를 콤마로 구분해 주십시요. ";
|
||||
$strIndex = "인덱스";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "추가";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "테이블에 추가";
|
||||
$strInsertNewRow = "새 열에 추가";
|
||||
$strInsertTextfiles = "테이블에 텍스트 파일 추가";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = '을(를) 변경하였습니다.';
|
||||
$strHasBeenCreated = '을(를) 작성하였습니다.';
|
||||
$strHasBeenDropped = '을(를) 삭제하였습니다.';
|
||||
$strHasBeenEmptied = '을(를) 비웠습니다.';
|
||||
$strHome = 'MainPage';
|
||||
$strHomepageOfficial = 'phpMyAdmin 홈 페이지';
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page';
|
||||
$strHost = '호스트';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "키 이름";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = '테이블 열(콜럼)에 데이터를 추가할 때는 필드 리스트를 콤마로 구분해 주십시요. ';
|
||||
$strIndex = '인덱스';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = '추가';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = '테이블에 추가';
|
||||
$strInsertNewRow = '새 열에 추가';
|
||||
$strInsertTextfiles = '테이블에 텍스트 파일 추가';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "길이/세트";
|
||||
$strLimitNumRows = "페이지의 레코드 수";
|
||||
$strLineFeed = "개행 문자: \\n";
|
||||
$strLines = "줄(行)";
|
||||
$strLocationTextfile = "SQL 덤프 데이터 텍스트 파일";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "로그 아웃";
|
||||
$strKeyname = '키 이름';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "을 바르게 수정하였습니다.";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL을 새로 읽어 들였습니다.";
|
||||
$strMySQLSaid = "MySQL 메세지: ";
|
||||
$strMySQLShowProcess = "MySQL 프로세스 보기";
|
||||
$strMySQLShowStatus = "MySQL 런타임 정보 보기";
|
||||
$strMySQLShowVars = "MySQL 시스템 변수 보기";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = '길이/세트';
|
||||
$strLimitNumRows = '페이지의 레코드 수';
|
||||
$strLineFeed = '개행 문자: \\n';
|
||||
$strLines = '줄(行)';
|
||||
$strLocationTextfile = 'SQL 덤프 데이터 텍스트 파일';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = '로그 아웃';
|
||||
|
||||
$strName = "이름";
|
||||
$strNext = "다음으로";
|
||||
$strNo = " 아니오 ";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "현재의 DB에는 테이블이 없습니다.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = '을 바르게 수정하였습니다.';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL을 새로 읽어 들였습니다.';
|
||||
$strMySQLSaid = 'MySQL 메세지: ';
|
||||
$strMySQLShowProcess = 'MySQL 프로세스 보기';
|
||||
$strMySQLShowStatus = 'MySQL 런타임 정보 보기';
|
||||
$strMySQLShowVars = 'MySQL 시스템 변수 보기';
|
||||
|
||||
$strOftenQuotation = "인용 기호입니다. 옵션은, char 혹은 varchar 필드만이 \" \"로 감싸여진 것을 의미합니다.";
|
||||
$strOptimizeTable = "테이블 최적화";
|
||||
$strOptionalControls = "특수문자 읽기/쓰기 옵션";
|
||||
$strOptionally = "옵션입니다.";
|
||||
$strOr = "혹은";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = '이름';
|
||||
$strNext = '다음으로';
|
||||
$strNo = ' 아니오 ';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = '현재의 DB에는 테이블이 없습니다.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "처음";
|
||||
$strPrevious = "이전으로";
|
||||
$strPrimary = "Primary";
|
||||
$strPrimaryKey = "Primary 키";
|
||||
$strPrinterFriendly = "위 테이블 인쇄용 보기";
|
||||
$strPrintView = "인쇄용 보기";
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "에러가 발생하였습니다";
|
||||
$strProperties = "프로파티";
|
||||
$strOftenQuotation = '인용 기호입니다. 옵션은, char 혹은 varchar 필드만이 " "로 감싸여진 것을 의미합니다.';
|
||||
$strOptimizeTable = '테이블 최적화';
|
||||
$strOptionalControls = '특수문자 읽기/쓰기 옵션';
|
||||
$strOptionally = '옵션입니다.';
|
||||
$strOr = '혹은';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "예(例)에서 쿼리 실행";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = '처음';
|
||||
$strPrevious = '이전으로';
|
||||
$strPrimary = 'Primary';
|
||||
$strPrimaryKey = 'Primary 키';
|
||||
$strPrinterFriendly = '위 테이블 인쇄용 보기';
|
||||
$strPrintView = '인쇄용 보기';
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = '에러가 발생하였습니다';
|
||||
$strProperties = '프로파티';
|
||||
|
||||
$strReadTheDocs = "문서 읽어 들이기";
|
||||
$strRecords = "기록수";
|
||||
$strReloadFailed = "MySQL이 읽어 들이기에 실패하였습니다.";
|
||||
$strReloadMySQL = "MySQL 다시 읽어 들이기";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "테이블 이름 변경하기";
|
||||
$strRenameTableOK = "%s을(를) %s(으)로 변경하였습니다.";
|
||||
$strRepairTable = "테이블 복구";
|
||||
$strReplace = "대치(代置)하기";
|
||||
$strReplaceTable = "파일로 테이블 대치하기";
|
||||
$strReset = "리세트";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "개시행";
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "가 실행중입니다. ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "현재의 데이터 베이스에 SQL 쿼리를 실행합니다. -->";
|
||||
$strQBE = '예(例)에서 쿼리 실행';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "보존";
|
||||
$strSelect = "선택";
|
||||
$strSelectFields = "필드 선택 (하나 이상):";
|
||||
$strSelectNumRows = "쿼리";
|
||||
$strSend = "송신";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "보기";
|
||||
$strShowingRecords = "기록 보기";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "실행된 SQL쿼리";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV 데이터";
|
||||
$strStrucData = "구조와 데이터";
|
||||
$strStrucDrop = "'drop table' 추가";
|
||||
$strStrucOnly = "구조만";
|
||||
$strSubmit = "실행";
|
||||
$strSuccess = "SQL-query가 바르게 실행되었습니다.";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = '문서 읽어 들이기';
|
||||
$strRecords = '기록수';
|
||||
$strReloadFailed = 'MySQL이 읽어 들이기에 실패하였습니다.';
|
||||
$strReloadMySQL = 'MySQL 다시 읽어 들이기';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = '테이블 이름 변경하기';
|
||||
$strRenameTableOK = '%s을(를) %s(으)로 변경하였습니다.';
|
||||
$strRepairTable = '테이블 복구';
|
||||
$strReplace = '대치(代置)하기';
|
||||
$strReplaceTable = '파일로 테이블 대치하기';
|
||||
$strReset = '리세트';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = '개시행';
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = '가 실행중입니다. ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = '현재의 데이터 베이스에 SQL 쿼리를 실행합니다. -->';
|
||||
|
||||
$strTable = "테이블 ";
|
||||
$strTableComments = "테이블 설명";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "테이블 구조";
|
||||
$strTableType = "테이블 타입";
|
||||
$strTerminatedBy = "종료 기호";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "파일의 데이터를 삽입하였습니다.";
|
||||
$strTheContents = "파일의 데이터로 선택한 테이블의 primary 혹은 unique 키와 일치하는 열을 대치(代置)시키겠습니다.";
|
||||
$strTheTerminator = "필드의 종료 기호 입니다.";
|
||||
$strTotal = "합계";
|
||||
$strType = "필드 타이프";
|
||||
$strSave = '보존';
|
||||
$strSelect = '선택';
|
||||
$strSelectFields = '필드 선택 (하나 이상):';
|
||||
$strSelectNumRows = '쿼리';
|
||||
$strSend = '송신';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = '보기';
|
||||
$strShowingRecords = '기록 보기';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = '실행된 SQL쿼리';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV 데이터';
|
||||
$strStrucData = '구조와 데이터';
|
||||
$strStrucDrop = '\'drop table\' 추가';
|
||||
$strStrucOnly = '구조만';
|
||||
$strSubmit = '실행';
|
||||
$strSuccess = 'SQL-query가 바르게 실행되었습니다.';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "유니크 타이프";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = '테이블 ';
|
||||
$strTableComments = '테이블 설명';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = '테이블 구조';
|
||||
$strTableType = '테이블 타입';
|
||||
$strTerminatedBy = '종료 기호';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = '파일의 데이터를 삽입하였습니다.';
|
||||
$strTheContents = '파일의 데이터로 선택한 테이블의 primary 혹은 unique 키와 일치하는 열을 대치(代置)시키겠습니다.';
|
||||
$strTheTerminator = '필드의 종료 기호 입니다.';
|
||||
$strTotal = '합계';
|
||||
$strType = '필드 타이프';
|
||||
|
||||
$strValue = "값";
|
||||
$strViewDump = "테이블의 덤프(스키마) 데이터 보기";
|
||||
$strViewDumpDB = "DB의 덤프(스키마) 데이터 보기";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = '유니크 타이프';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Welcome to ";
|
||||
$strWrongUser = "유저명 혹은 패스워드가 바르지 않습니다. <br> 접근이 거부되었습니다.";
|
||||
$strValue = '값';
|
||||
$strViewDump = '테이블의 덤프(스키마) 데이터 보기';
|
||||
$strViewDumpDB = 'DB의 덤프(스키마) 데이터 보기';
|
||||
|
||||
$strYes = " 예 ";
|
||||
$strWelcome = 'Welcome to ';
|
||||
$strWrongUser = '유저명 혹은 패스워드가 바르지 않습니다. <br /> 접근이 거부되었습니다.';
|
||||
|
||||
$strYes = ' 예 ';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Ingen tilgang";
|
||||
$strAction = "Handling";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Legg til felt";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Legg til søke-kriterier (innhold i \"where\"-setningen):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "En indeks er lagt til for ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "En primærnøkkel er lagt til for ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "Attributes";
|
||||
|
||||
$strBack = "Back"; //to translate
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Se på";
|
||||
$strAccessDenied = 'Ingen tilgang';
|
||||
$strAction = 'Handling';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Legg til felt';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Legg til søke-kriterier (innhold i "where"-setningen):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'En indeks er lagt til for ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'En primærnøkkel er lagt til for ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = 'Attributes';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Carriage return: \\r";
|
||||
$strChange = "Endre";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Kolonnenavn";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Kopier tabell til:";
|
||||
$strCopyTableOK = "Tabellen %s er kopiert til %s.";
|
||||
$strCreate = "Opprett";
|
||||
$strCreateNewDatabase = "Opprett ny database";
|
||||
$strCreateNewTable = "Opprett ny tabell i database ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Back'; //to translate
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Se på';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "Database ";
|
||||
$strDatabases = "databaser";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Default";
|
||||
$strDelete = "Slett";
|
||||
$strDeleted = "Raden er slettet";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "Utfør en \"query by example\" (wildcard: \"%\")";
|
||||
$strDocu = "Dokumentasjon";
|
||||
$strDoYouReally = "Vil du virkelig ";
|
||||
$strDrop = "Slett";
|
||||
$strDropDB = "Slett databasen ";
|
||||
$strDumpingData = "Data-ark for tabell";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Carriage return: \\r';
|
||||
$strChange = 'Endre';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Kolonnenavn';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Kopier tabell til:';
|
||||
$strCopyTableOK = 'Tabellen %s er kopiert til %s.';
|
||||
$strCreate = 'Opprett';
|
||||
$strCreateNewDatabase = 'Opprett ny database';
|
||||
$strCreateNewTable = 'Opprett ny tabell i database ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Endre";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Tøm";
|
||||
$strEmptyResultSet = "MySQL returnerte tomt resultat (m.a.o. ingen rader).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "omfattet av";
|
||||
$strEnd = "Slutt";
|
||||
$strError = "Feil";
|
||||
$strEscapedBy = "\"escaped\" av";
|
||||
$strExtra = "Ekstra";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'Database ';
|
||||
$strDatabases = 'databaser';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Default';
|
||||
$strDelete = 'Slett';
|
||||
$strDeleted = 'Raden er slettet';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = 'Utfør en "query by example" (wildcard: "%")';
|
||||
$strDocu = 'Dokumentasjon';
|
||||
$strDoYouReally = 'Vil du virkelig ';
|
||||
$strDrop = 'Slett';
|
||||
$strDropDB = 'Slett databasen ';
|
||||
$strDumpingData = 'Data-ark for tabell';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Felt";
|
||||
$strFields = "Felter";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Funksjon";
|
||||
$strEdit = 'Endre';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Tøm';
|
||||
$strEmptyResultSet = 'MySQL returnerte tomt resultat (m.a.o. ingen rader).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'omfattet av';
|
||||
$strEnd = 'Slutt';
|
||||
$strError = 'Feil';
|
||||
$strEscapedBy = '"escaped" av';
|
||||
$strExtra = 'Ekstra';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Utfør";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Felt';
|
||||
$strFields = 'Felter';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Funksjon';
|
||||
|
||||
$strHasBeenAltered = "er endret.";
|
||||
$strHasBeenCreated = "er opprettet.";
|
||||
$strHasBeenDropped = "er slettet.";
|
||||
$strHasBeenEmptied = "er tømt.";
|
||||
$strHome = "Hjem";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Utfør';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "Hvis du ønsker å kun lese inn enkelte av tabellens kolonner, angi en komme-separert felt-liste.";
|
||||
$strIndex = "Indeks";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Sett inn";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Sett inn i tabell";
|
||||
$strInsertNewRow = "Sett inn ny rad";
|
||||
$strInsertTextfiles = "Les tekstfil inn i tabell";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'er endret.';
|
||||
$strHasBeenCreated = 'er opprettet.';
|
||||
$strHasBeenDropped = 'er slettet.';
|
||||
$strHasBeenEmptied = 'er tømt.';
|
||||
$strHome = 'Hjem';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Nøkkel";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'Hvis du ønsker å kun lese inn enkelte av tabellens kolonner, angi en komme-separert felt-liste.';
|
||||
$strIndex = 'Indeks';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Sett inn';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Sett inn i tabell';
|
||||
$strInsertNewRow = 'Sett inn ny rad';
|
||||
$strInsertTextfiles = 'Les tekstfil inn i tabell';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Lengde/Sett";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "Linefeed: \\n";
|
||||
$strLines = "Linjer";
|
||||
$strLocationTextfile = "Plassering av filen";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Log out"; //to translate
|
||||
$strKeyname = 'Nøkkel';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "Endringene er lagret";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL omstartet.";
|
||||
$strMySQLSaid = "MySQL sa: ";
|
||||
$strMySQLShowProcess = "Show processes"; //to translate
|
||||
$strMySQLShowStatus = "Vis MySQL runtime informasjon";
|
||||
$strMySQLShowVars = "Vis MySQL systemvariabler";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Lengde/Sett';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = 'Linefeed: \\n';
|
||||
$strLines = 'Linjer';
|
||||
$strLocationTextfile = 'Plassering av filen';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Log out'; //to translate
|
||||
|
||||
$strName = "Navn";
|
||||
$strNext = "Neste";
|
||||
$strNo = "Nei";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Ingen tabeller i databasen.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'Endringene er lagret';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL omstartet.';
|
||||
$strMySQLSaid = 'MySQL sa: ';
|
||||
$strMySQLShowProcess = 'Show processes'; //to translate
|
||||
$strMySQLShowStatus = 'Vis MySQL runtime informasjon';
|
||||
$strMySQLShowVars = 'Vis MySQL systemvariabler';
|
||||
|
||||
$strOftenQuotation = "Ofte anførselstegn. Valgfritt innebærer at kun tekstfelter (\"char\" og \"varchar\") felter er omfattet av tegnet.";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Valgfritt. Angir hvordan spesialtegn skrives eller leses.";
|
||||
$strOptionally = "Valgfritt";
|
||||
$strOr = "Or"; //to translate
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Navn';
|
||||
$strNext = 'Neste';
|
||||
$strNo = 'Nei';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Ingen tabeller i databasen.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Start";
|
||||
$strPrevious = "Forrige";
|
||||
$strPrimary = "Primær";
|
||||
$strPrimaryKey = "Primærnøkkel";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "resulterte i en feil.";
|
||||
$strProperties = "Egenskaper";
|
||||
$strOftenQuotation = 'Ofte anførselstegn. Valgfritt innebærer at kun tekstfelter ("char" og "varchar") felter er omfattet av tegnet.';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Valgfritt. Angir hvordan spesialtegn skrives eller leses.';
|
||||
$strOptionally = 'Valgfritt';
|
||||
$strOr = 'Or'; //to translate
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Query by Example"; //to translate
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Start';
|
||||
$strPrevious = 'Forrige';
|
||||
$strPrimary = 'Primær';
|
||||
$strPrimaryKey = 'Primærnøkkel';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'resulterte i en feil.';
|
||||
$strProperties = 'Egenskaper';
|
||||
|
||||
$strReadTheDocs = "Les dokumentasjonen";
|
||||
$strRecords = "Rader";
|
||||
$strReloadFailed = "MySQL reload failed."; //to translate
|
||||
$strReloadMySQL = "Omstart av MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Endre tabellens navn";
|
||||
$strRenameTableOK = "Tabellen %s har fått nytt navn %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "Erstatt";
|
||||
$strReplaceTable = "Erstatt tabell med filen";
|
||||
$strReset = "Tøm skjema";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "som kjører på ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Kjør SQL-spørring mot database ";
|
||||
$strQBE = 'Query by Example'; //to translate
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Lagre";
|
||||
$strSelect = "Spørring";
|
||||
$strSelectFields = "Velg felt (minst ett):";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "Send"; //to translate
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Show"; //to translate
|
||||
$strShowingRecords = "Viser rader ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-spørring";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV data"; //to translate
|
||||
$strStrucData = "Struktur og data";
|
||||
$strStrucDrop = "Add 'drop table'"; //to translate
|
||||
$strStrucOnly = "Kun struktur";
|
||||
$strSubmit = "Send";
|
||||
$strSuccess = "Kommandoen/spørringen er utført";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'Les dokumentasjonen';
|
||||
$strRecords = 'Rader';
|
||||
$strReloadFailed = 'MySQL reload failed.'; //to translate
|
||||
$strReloadMySQL = 'Omstart av MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Endre tabellens navn';
|
||||
$strRenameTableOK = 'Tabellen %s har fått nytt navn %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'Erstatt';
|
||||
$strReplaceTable = 'Erstatt tabell med filen';
|
||||
$strReset = 'Tøm skjema';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'som kjører på ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Kjør SQL-spørring mot database ';
|
||||
|
||||
$strTable = "tabell ";
|
||||
$strTableComments = "Table comments"; //to translate
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Tabell-struktur for tabell";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "avsluttet med";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "Innholdet av filen er lagt inn.";
|
||||
$strTheContents = "Innholdet av filen erstatter valgt tabell for rader med lik identifikator eller unikt felt";
|
||||
$strTheTerminator = "Tegn som angir slutt på felter.";
|
||||
$strTotal = "totalt";
|
||||
$strType = "Type";
|
||||
$strSave = 'Lagre';
|
||||
$strSelect = 'Spørring';
|
||||
$strSelectFields = 'Velg felt (minst ett):';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = 'Send'; //to translate
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Show'; //to translate
|
||||
$strShowingRecords = 'Viser rader ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-spørring';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV data'; //to translate
|
||||
$strStrucData = 'Struktur og data';
|
||||
$strStrucDrop = 'Add \'drop table\''; //to translate
|
||||
$strStrucOnly = 'Kun struktur';
|
||||
$strSubmit = 'Send';
|
||||
$strSuccess = 'Kommandoen/spørringen er utført';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Unik";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'tabell ';
|
||||
$strTableComments = 'Table comments'; //to translate
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Tabell-struktur for tabell';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'avsluttet med';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'Innholdet av filen er lagt inn.';
|
||||
$strTheContents = 'Innholdet av filen erstatter valgt tabell for rader med lik identifikator eller unikt felt';
|
||||
$strTheTerminator = 'Tegn som angir slutt på felter.';
|
||||
$strTotal = 'totalt';
|
||||
$strType = 'Type';
|
||||
|
||||
$strValue = "Verdi";
|
||||
$strViewDump = "Vis dump (skjema) av tabell";
|
||||
$strViewDumpDB = "Vis dump (skjema) av database";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Unik';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Velkommen til ";
|
||||
$strWrongUser = "Ugyldig brukernavn/passord. Ingen tilgang.";
|
||||
$strValue = 'Verdi';
|
||||
$strViewDump = 'Vis dump (skjema) av tabell';
|
||||
$strViewDumpDB = 'Vis dump (skjema) av database';
|
||||
|
||||
$strYes = "Ja";
|
||||
$strWelcome = 'Velkommen til ';
|
||||
$strWrongUser = 'Ugyldig brukernavn/passord. Ingen tilgang.';
|
||||
|
||||
$strYes = 'Ja';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,283 +1,287 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-2";
|
||||
$left_font_family = "verdana, helvetica, arial ce, arial, sans-serif";
|
||||
$right_font_family = "helvetica, arial ce, arial, sans-serif";
|
||||
$number_thousands_separator = ".";
|
||||
$number_decimal_separator = ",";
|
||||
$byteUnits = array("bajtów", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-2';
|
||||
$left_font_family = 'verdana, helvetica, arial ce, arial, sans-serif';
|
||||
$right_font_family = 'helvetica, arial ce, arial, sans-serif';
|
||||
$number_thousands_separator = '.';
|
||||
$number_decimal_separator = ',';
|
||||
$byteUnits = array('bajtów', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Brak dostępu";
|
||||
$strAction = "Działanie";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Dodanie nowego pola";
|
||||
$strAddPriv = "Dodanie nowych uprawnień";
|
||||
$strAddPrivMessage = "Dodane zostały nowe uprawnienia.";
|
||||
$strAddSearchConditions = "Dodanie warunków przeszukiwania (warunek dla \"where\"):";
|
||||
$strAddUser = "Dodanie nowego użytkownika";
|
||||
$strAddUserMessage = "Dodany został nowy użytkownik.";
|
||||
$strAfter = "Po";
|
||||
$strAll = "Wszystko";
|
||||
$strAlterOrderBy = "Sortowanie tabeli wg";
|
||||
$strAnalyzeTable = "Analizowanie table";
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Dodany został indeks dla ";
|
||||
$strAny = "Dowolny";
|
||||
$strAnyColumn = "Dowolna kolumna";
|
||||
$strAnyDatabase = "Dowolna baza danych";
|
||||
$strAnyHost = "Dowolny host";
|
||||
$strAnyTable = "Dowolna tabela";
|
||||
$strAnyUser = "Dowolny użytkownik";
|
||||
$strAPrimaryKey = "Dodany został podstawowy klucz dla ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "Na początku tabeli";
|
||||
$strAtEndOfTable = "Na końcu tabeli";
|
||||
$strAttr = "Atrybuty";
|
||||
|
||||
$strBack = "Powrót";
|
||||
$strBinary=" Binarne ";
|
||||
$strBinaryDoNotEdit=" Binarne - nie do edycji ";
|
||||
$strBookmarkLabel = "Nazwa";
|
||||
$strBookmarkQuery = "Zapamiętane zapytanie SQL";
|
||||
$strBookmarkThis = "Zapamiętanie zapytania SQL";
|
||||
$strBookmarkView = "Tylko do pokazania";
|
||||
$strBrowse = "Przeglądanie";
|
||||
$strBzip = "\".bz2\"";
|
||||
$strAccessDenied = 'Brak dostępu';
|
||||
$strAction = 'Działanie';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Dodanie nowego pola';
|
||||
$strAddPriv = 'Dodanie nowych uprawnień';
|
||||
$strAddPrivMessage = 'Dodane zostały nowe uprawnienia.';
|
||||
$strAddSearchConditions = 'Dodanie warunków przeszukiwania (warunek dla "where"):';
|
||||
$strAddUser = 'Dodanie nowego użytkownika';
|
||||
$strAddUserMessage = 'Dodany został nowy użytkownik.';
|
||||
$strAfter = 'Po';
|
||||
$strAll = 'Wszystko';
|
||||
$strAlterOrderBy = 'Sortowanie tabeli wg';
|
||||
$strAnalyzeTable = 'Analizowanie table';
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Dodany został indeks dla ';
|
||||
$strAny = 'Dowolny';
|
||||
$strAnyColumn = 'Dowolna kolumna';
|
||||
$strAnyDatabase = 'Dowolna baza danych';
|
||||
$strAnyHost = 'Dowolny host';
|
||||
$strAnyTable = 'Dowolna tabela';
|
||||
$strAnyUser = 'Dowolny użytkownik';
|
||||
$strAPrimaryKey = 'Dodany został podstawowy klucz dla ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'Na początku tabeli';
|
||||
$strAtEndOfTable = 'Na końcu tabeli';
|
||||
$strAttr = 'Atrybuty';
|
||||
|
||||
$strCantLoadMySQL = "nie można załadować modułu MySQL,<br>proszę sprawdzić konfigurację PHP.";
|
||||
$strCarriage = "Znak powrotu: \\r";
|
||||
$strChange = "Zmiana";
|
||||
$strCheckAll = "Zaznaczenie wszystkich";
|
||||
$strCheckDbPriv = "Sprawdzanie uprawnień dla bazy danych";
|
||||
$strCheckTable = "Sprawdzanie tabeli";
|
||||
$strColumn = "Kolumna";
|
||||
$strColumnEmpty = "Brak nazw kolumn!";
|
||||
$strColumnNames = "Nazwy kolumn";
|
||||
$strCompleteInserts = "Pełne dodania";
|
||||
$strConfirm = "Czy na pewno to zrobić?";
|
||||
$strCopyTable = "Kopiowanie tabeli do:";
|
||||
$strCopyTableOK = "Tabela %s została przekopiowana do %s.";
|
||||
$strCreate = "Utworzenie";
|
||||
$strCreateNewDatabase = "Utworzenie nowej bazy danych";
|
||||
$strCreateNewTable = "Utworzenie nowej tabeli dla bazy danych ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Powrót';
|
||||
$strBinary = ' Binarne ';
|
||||
$strBinaryDoNotEdit = ' Binarne - nie do edycji ';
|
||||
$strBookmarkLabel = 'Nazwa';
|
||||
$strBookmarkQuery = 'Zapamiętane zapytanie SQL';
|
||||
$strBookmarkThis = 'Zapamiętanie zapytania SQL';
|
||||
$strBookmarkView = 'Tylko do pokazania';
|
||||
$strBrowse = 'Przeglądanie';
|
||||
$strBzip = '".bz2"';
|
||||
|
||||
$strData = "Dane";
|
||||
$strDatabase = "Baza danych ";
|
||||
$strDatabases = "bazy danych";
|
||||
$strDataOnly = "Tylko dane";
|
||||
$strDbEmpty = "Brak nazwy bazy danych!";
|
||||
$strDefault = "Domyślnie";
|
||||
$strDelete = "Skasowanie";
|
||||
$strDeleted = "Rekord został skasowany";
|
||||
$strDeleteFailed = "Kasowanie nie powiodło się!";
|
||||
$strDeletePassword = "Kasowanie hasła";
|
||||
$strDeleteUserMessage = "Użytkownik został skasowany";
|
||||
$strDelPassMessage = "Skasowane zostało hasło użytkownika";
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Ostrzeżenie:</b> Włączono opcję magic_quotes_gpc w konfiguracji PHP. Ta wersja PhpMyAdmin źle działa z włączoną tą opcją. Proszę zaznajomić się dokumentacją do PHP w aby znaleźć informację w jaki sposób wyłączyć tę opcję..";
|
||||
$strDisplay = "Pokazanie";
|
||||
$strDoAQuery = "Wykonaj \"zaputanie przez przykład\" (znak globalny: \"%\")";
|
||||
$strDocu = "Dokumentacja";
|
||||
$strDoYouReally = "Czy na pewno wykonać ";
|
||||
$strDrop = "Usunięcie";
|
||||
$strDropDB = "Usunięcie bazy danych ";
|
||||
$strDumpingData = "Zrzut danych dla tabeli";
|
||||
$strDynamic = "zmienny";
|
||||
$strCantLoadMySQL = 'nie można załadować modułu MySQL,<br />proszę sprawdzić konfigurację PHP.';
|
||||
$strCarriage = 'Znak powrotu: \\r';
|
||||
$strChange = 'Zmiana';
|
||||
$strCheckAll = 'Zaznaczenie wszystkich';
|
||||
$strCheckDbPriv = 'Sprawdzanie uprawnień dla bazy danych';
|
||||
$strCheckTable = 'Sprawdzanie tabeli';
|
||||
$strColumn = 'Kolumna';
|
||||
$strColumnEmpty = 'Brak nazw kolumn!';
|
||||
$strColumnNames = 'Nazwy kolumn';
|
||||
$strCompleteInserts = 'Pełne dodania';
|
||||
$strConfirm = 'Czy na pewno to zrobić?';
|
||||
$strCopyTable = 'Kopiowanie tabeli do:';
|
||||
$strCopyTableOK = 'Tabela %s została przekopiowana do %s.';
|
||||
$strCreate = 'Utworzenie';
|
||||
$strCreateNewDatabase = 'Utworzenie nowej bazy danych';
|
||||
$strCreateNewTable = 'Utworzenie nowej tabeli dla bazy danych ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Edycja";
|
||||
$strEditPrivileges = "Edycja uprawnień";
|
||||
$strEffective = "Efektywne";
|
||||
$strEmpty = "Wyczyszczenie";
|
||||
$strEmptyResultSet = "MySQL zwrócił pusty wynik (i.e. zero rekordów).";
|
||||
$strEnableMagicQuotes = "<b>Ostrzeżenie:</b> Wyłączono opcję magic_quotes_gpc w konfiguracji PHP. Ta wersja PhpMyAdmin źle działa z wyłączoną tą opcją. Proszę zaznajomić się dokumentacją do PHP w aby znaleźć informację w jaki sposób włączyć tę opcję..";
|
||||
$strEnclosedBy = "zawarty w";
|
||||
$strEnd = "Koniec";
|
||||
$strEnglishPrivileges=" Uwaga: Uprawnienia MySQL są oznaczone w j. angielskim ";
|
||||
$strError = "Błąd";
|
||||
$strEscapedBy = "poprzedzony przez";
|
||||
$strExtra = "Dodatkowy";
|
||||
$strData = 'Dane';
|
||||
$strDatabase = 'Baza danych ';
|
||||
$strDatabases = 'bazy danych';
|
||||
$strDataOnly = 'Tylko dane';
|
||||
$strDbEmpty = 'Brak nazwy bazy danych!';
|
||||
$strDefault = 'Domyślnie';
|
||||
$strDelete = 'Skasowanie';
|
||||
$strDeleted = 'Rekord został skasowany';
|
||||
$strDeleteFailed = 'Kasowanie nie powiodło się!';
|
||||
$strDeletePassword = 'Kasowanie hasła';
|
||||
$strDeleteUserMessage = 'Użytkownik został skasowany';
|
||||
$strDelPassMessage = 'Skasowane zostało hasło użytkownika';
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Ostrzeżenie:</b> Włączono opcję magic_quotes_gpc w konfiguracji PHP. Ta wersja PhpMyAdmin źle działa z włączoną tą opcją. Proszę zaznajomić się dokumentacją do PHP w aby znaleźć informację w jaki sposób wyłączyć tę opcję..';
|
||||
$strDisplay = 'Pokazanie';
|
||||
$strDoAQuery = 'Wykonaj "zaputanie przez przykład" (znak globalny: "%")';
|
||||
$strDocu = 'Dokumentacja';
|
||||
$strDoYouReally = 'Czy na pewno wykonać ';
|
||||
$strDrop = 'Usunięcie';
|
||||
$strDropDB = 'Usunięcie bazy danych ';
|
||||
$strDumpingData = 'Zrzut danych dla tabeli';
|
||||
$strDynamic = 'zmienny';
|
||||
|
||||
$strField = "Pole";
|
||||
$strFields = "Pola";
|
||||
$strFixed = "stały";
|
||||
$strFormat = "Format";
|
||||
$strFunction = "Funkcja";
|
||||
$strEdit = 'Edycja';
|
||||
$strEditPrivileges = 'Edycja uprawnień';
|
||||
$strEffective = 'Efektywne';
|
||||
$strEmpty = 'Wyczyszczenie';
|
||||
$strEmptyResultSet = 'MySQL zwrócił pusty wynik (i.e. zero rekordów).';
|
||||
$strEnableMagicQuotes = '<b>Ostrzeżenie:</b> Wyłączono opcję magic_quotes_gpc w konfiguracji PHP. Ta wersja PhpMyAdmin źle działa z wyłączoną tą opcją. Proszę zaznajomić się dokumentacją do PHP w aby znaleźć informację w jaki sposób włączyć tę opcję..';
|
||||
$strEnclosedBy = 'zawarty w';
|
||||
$strEnd = 'Koniec';
|
||||
$strEnglishPrivileges = ' Uwaga: Uprawnienia MySQL są oznaczone w j. angielskim ';
|
||||
$strError = 'Błąd';
|
||||
$strEscapedBy = 'poprzedzony przez';
|
||||
$strExtra = 'Dodatkowy';
|
||||
|
||||
$strGenTime = "Czas wygenerowania";
|
||||
$strGo = "Wykonanie";
|
||||
$strGrants = "Nadanie";
|
||||
$strGzip = "\".gz\"";
|
||||
$strField = 'Pole';
|
||||
$strFields = 'Pola';
|
||||
$strFixed = 'stały';
|
||||
$strFormat = 'Format';
|
||||
$strFunction = 'Funkcja';
|
||||
|
||||
$strHasBeenAltered = "zostało zamienione.";
|
||||
$strHasBeenCreated = "zostało utworzone.";
|
||||
$strHasBeenDropped = "zostało skasowane.";
|
||||
$strHasBeenEmptied = "zostało wyczyszczone.";
|
||||
$strHome = "Wejście";
|
||||
$strHomepageOfficial = "Oficjalna strona phpMyAdmin";
|
||||
$strHomepageSourceforge = "Pobranie wersji Sourceforge phpMyAdmin";
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "Brak nazwy hosta!";
|
||||
$strGenTime = 'Czas wygenerowania';
|
||||
$strGo = 'Wykonanie';
|
||||
$strGrants = 'Nadanie';
|
||||
$strGzip = '".gz"';
|
||||
|
||||
$strIfYouWish = "Proszę podać listę kolumn rozdzieloną przecinkami aby załadować tylko wybrane kolumny.";
|
||||
$strIndex = "Indeks";
|
||||
$strIndexes = "Indeksy";
|
||||
$strInsert = "Dodanie";
|
||||
$strInsertAsNewRow = "Dodanie jako nowego rekordu";
|
||||
$strInsertIntoTable = "Dodanie do tabeli";
|
||||
$strInsertNewRow = "Dodanie nowego rekordu";
|
||||
$strInsertTextfiles = "Dodanie pliku tekstowego do tabeli";
|
||||
$strInUse = "w użyciu";
|
||||
$strHasBeenAltered = 'zostało zamienione.';
|
||||
$strHasBeenCreated = 'zostało utworzone.';
|
||||
$strHasBeenDropped = 'zostało skasowane.';
|
||||
$strHasBeenEmptied = 'zostało wyczyszczone.';
|
||||
$strHome = 'Wejście';
|
||||
$strHomepageOfficial = 'Oficjalna strona phpMyAdmin';
|
||||
$strHomepageSourceforge = 'Pobranie wersji Sourceforge phpMyAdmin';
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'Brak nazwy hosta!';
|
||||
|
||||
$strKeyname = "Nazwa klucza";
|
||||
$strKill = "Zabicie";
|
||||
$strIfYouWish = 'Proszę podać listę kolumn rozdzieloną przecinkami aby załadować tylko wybrane kolumny.';
|
||||
$strIndex = 'Indeks';
|
||||
$strIndexes = 'Indeksy';
|
||||
$strInsert = 'Dodanie';
|
||||
$strInsertAsNewRow = 'Dodanie jako nowego rekordu';
|
||||
$strInsertIntoTable = 'Dodanie do tabeli';
|
||||
$strInsertNewRow = 'Dodanie nowego rekordu';
|
||||
$strInsertTextfiles = 'Dodanie pliku tekstowego do tabeli';
|
||||
$strInUse = 'w użyciu';
|
||||
|
||||
$strLength = "Długość";
|
||||
$strLengthSet = "Długość";
|
||||
$strLimitNumRows = "rekordów na stronie";
|
||||
$strLineFeed = "Kod wysunięcia linii: \\n";
|
||||
$strLines = "Linie";
|
||||
$strLocationTextfile = "Lokalizacja pliku tekstowego";
|
||||
$strLogin = "Zalogowanie";
|
||||
$strLogout = "Wylogowanie";
|
||||
$strKeyname = 'Nazwa klucza';
|
||||
$strKill = 'Zabicie';
|
||||
|
||||
$strModifications = "Modyfikacje zostały zapamiętane";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL przeładowany.";
|
||||
$strMySQLSaid = "MySQL zwrócił komunikat: ";
|
||||
$strMySQLShowProcess = "Pokazuj procesy";
|
||||
$strMySQLShowStatus = "Informacje o stanie serwera MySQL";
|
||||
$strMySQLShowVars = "Zmienne systemowe serwera MySQL";
|
||||
$strLength = 'Długość';
|
||||
$strLengthSet = 'Długość';
|
||||
$strLimitNumRows = 'rekordów na stronie';
|
||||
$strLineFeed = 'Kod wysunięcia linii: \\n';
|
||||
$strLines = 'Linie';
|
||||
$strLocationTextfile = 'Lokalizacja pliku tekstowego';
|
||||
$strLogin = 'Zalogowanie';
|
||||
$strLogout = 'Wylogowanie';
|
||||
|
||||
$strName = "Nazwa";
|
||||
$strNbRecords = "Ile";
|
||||
$strNext = "Następne";
|
||||
$strNo = "Nie";
|
||||
$strNoPassword = "Brak hasła";
|
||||
$strNoPrivileges = "Brak uprawnień";
|
||||
$strNoRights = "Brak wystarczających uprawnień!";
|
||||
$strNoTablesFound = "Nie znaleziono tabeli w bazie danych.";
|
||||
$strNotNumber = "No nie jest liczba!";
|
||||
$strNotValidNumber = " nie jest poprawnym numerem rekordu!";
|
||||
$strNoUsersFound = "Nie znaleziono użytkownika(ów).";
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " ilość zaawansowanych indeksów ";
|
||||
$strModifications = 'Modyfikacje zostały zapamiętane';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL przeładowany.';
|
||||
$strMySQLSaid = 'MySQL zwrócił komunikat: ';
|
||||
$strMySQLShowProcess = 'Pokazuj procesy';
|
||||
$strMySQLShowStatus = 'Informacje o stanie serwera MySQL';
|
||||
$strMySQLShowVars = 'Zmienne systemowe serwera MySQL';
|
||||
|
||||
$strOffSet = "Od";
|
||||
$strOftenQuotation = "Znaki cudzysłowia. OPCJONALNIE oznacza, że tylko pola char oraz varchar są zawarte w \"cudzysłowiach\".";
|
||||
$strOptimizeTable = "Optymalizacja tabeli";
|
||||
$strOptionalControls = "Opcjonalnie. Określenie w jaki sposób zapisać lub odczytać znaki specjalne.";
|
||||
$strOptionally = "OPCJONALNIE";
|
||||
$strOr = "Lub";
|
||||
$strOverhead = "Nadmiarowość";
|
||||
$strName = 'Nazwa';
|
||||
$strNbRecords = 'Ile';
|
||||
$strNext = 'Następne';
|
||||
$strNo = 'Nie';
|
||||
$strNoPassword = 'Brak hasła';
|
||||
$strNoPrivileges = 'Brak uprawnień';
|
||||
$strNoRights = 'Brak wystarczających uprawnień!';
|
||||
$strNoTablesFound = 'Nie znaleziono tabeli w bazie danych.';
|
||||
$strNotNumber = 'No nie jest liczba!';
|
||||
$strNotValidNumber = ' nie jest poprawnym numerem rekordu!';
|
||||
$strNoUsersFound = 'Nie znaleziono użytkownika(ów).';
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' ilość zaawansowanych indeksów ';
|
||||
|
||||
$strPassword = "Hasło";
|
||||
$strPasswordEmpty = "Puste hasło!";
|
||||
$strPasswordNotSame = "Hasła nie są identyczne!";
|
||||
$strPHPVersion = "Wersja PHP";
|
||||
$strPos1 = "Początek";
|
||||
$strPrevious = "Poprzednie";
|
||||
$strPrimary = "Podstawowy";
|
||||
$strPrimaryKey = "Podstawowy klucz";
|
||||
$strPrinterFriendly = "Tabela w wersji do wydruku";
|
||||
$strPrintView = "Widok do wydruku";
|
||||
$strPrivileges = "Uprawnienia";
|
||||
$strProducedAnError = "zgłosił błąd.";
|
||||
$strProperties = "Właściwości";
|
||||
$strOffSet = 'Od';
|
||||
$strOftenQuotation = 'Znaki cudzysłowia. OPCJONALNIE oznacza, że tylko pola char oraz varchar są zawarte w "cudzysłowiach".';
|
||||
$strOptimizeTable = 'Optymalizacja tabeli';
|
||||
$strOptionalControls = 'Opcjonalnie. Określenie w jaki sposób zapisać lub odczytać znaki specjalne.';
|
||||
$strOptionally = 'OPCJONALNIE';
|
||||
$strOr = 'Lub';
|
||||
$strOverhead = 'Nadmiarowość';
|
||||
|
||||
$strQBE = "Zapytanie przez przykład";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Hasło';
|
||||
$strPasswordEmpty = 'Puste hasło!';
|
||||
$strPasswordNotSame = 'Hasła nie są identyczne!';
|
||||
$strPHPVersion = 'Wersja PHP';
|
||||
$strPos1 = 'Początek';
|
||||
$strPrevious = 'Poprzednie';
|
||||
$strPrimary = 'Podstawowy';
|
||||
$strPrimaryKey = 'Podstawowy klucz';
|
||||
$strPrinterFriendly = 'Tabela w wersji do wydruku';
|
||||
$strPrintView = 'Widok do wydruku';
|
||||
$strPrivileges = 'Uprawnienia';
|
||||
$strProducedAnError = 'zgłosił błąd.';
|
||||
$strProperties = 'Właściwości';
|
||||
|
||||
$strReadTheDocs = "Proszę przeczytać dokumentację";
|
||||
$strRecords = "Rekordy";
|
||||
$strReloadFailed = "Nie powiodło się przeładowanie MySQL.";
|
||||
$strReloadMySQL = "Przeładowanie MySQL";
|
||||
$strRememberReload = "Proszę pamiętać o przeładowaniu serwera.";
|
||||
$strRenameTable = "Zmiana nazwy tabeli na";
|
||||
$strRenameTableOK = "Tabela %s ma zmienioną nazwę na %s";
|
||||
$strRepairTable = "Naprawienie tabeli";
|
||||
$strReplace = "Zamiana";
|
||||
$strReplaceTable = "Zamiana danych tabeli z plikiem";
|
||||
$strReset = "Reset";
|
||||
$strReType = "Ponownie";
|
||||
$strRevoke = "Cofnięcie";
|
||||
$strRevokeGrant = "Cofnięcie uprawnień";
|
||||
$strRevokeGrantMessage = "Cofnięte zostały uprawnienia dla";
|
||||
$strRevokeMessage = "Cofnięte zostały uprawnienia dla";
|
||||
$strRevokePriv = "Cofnięcie uprawnień";
|
||||
$strRowLength = "Długość rekordu";
|
||||
$strRows = "Ilość rekordów";
|
||||
$strRowSize=" Rozmiar rekordu ";
|
||||
$strRowsFrom = "rekordów począwszy od";
|
||||
$strRowsStatistic = "Statystyka rekordów";
|
||||
$strRunning = "uruchomiony na ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Wykonanie zapytania SQL do bazy danych ";
|
||||
$strQBE = 'Zapytanie przez przykład';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Zachowanie";
|
||||
$strSelect = "Wybór";
|
||||
$strSelectFields = "Wybór pól (co najmniej jedno):";
|
||||
$strSelectNumRows = "w zapytaniu";
|
||||
$strSend = "wysłanie";
|
||||
$strSequence = "Sekwencja";
|
||||
$strServerVersion = "Wersja serwera";
|
||||
$strShow = "Pokazanie";
|
||||
$strShowThisQuery=" Ponowne wywołanie tego zapytania ";
|
||||
$strShowingRecords = "Pokazanie rekordów ";
|
||||
$strSingly = "(pojedyńczo)";
|
||||
$strSize = "Rozmiar";
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Wykorzystanie przestrzeni";
|
||||
$strSQLQuery = "zapytanie SQL";
|
||||
$strStatement = "Cecha";
|
||||
$strStrucCSV = "dane CSV";
|
||||
$strStrucData = "Struktura i dane";
|
||||
$strStrucDrop = "Dodanie 'drop table'";
|
||||
$strStrucOnly = "Tylko struktura";
|
||||
$strSubmit = "Wysłanie";
|
||||
$strSuccess = "Zapytanie SQL zostało pomyślnie wykonane";
|
||||
$strSum = "Suma";
|
||||
$strReadTheDocs = 'Proszę przeczytać dokumentację';
|
||||
$strRecords = 'Rekordy';
|
||||
$strReloadFailed = 'Nie powiodło się przeładowanie MySQL.';
|
||||
$strReloadMySQL = 'Przeładowanie MySQL';
|
||||
$strRememberReload = 'Proszę pamiętać o przeładowaniu serwera.';
|
||||
$strRenameTable = 'Zmiana nazwy tabeli na';
|
||||
$strRenameTableOK = 'Tabela %s ma zmienioną nazwę na %s';
|
||||
$strRepairTable = 'Naprawienie tabeli';
|
||||
$strReplace = 'Zamiana';
|
||||
$strReplaceTable = 'Zamiana danych tabeli z plikiem';
|
||||
$strReset = 'Reset';
|
||||
$strReType = 'Ponownie';
|
||||
$strRevoke = 'Cofnięcie';
|
||||
$strRevokeGrant = 'Cofnięcie uprawnień';
|
||||
$strRevokeGrantMessage = 'Cofnięte zostały uprawnienia dla';
|
||||
$strRevokeMessage = 'Cofnięte zostały uprawnienia dla';
|
||||
$strRevokePriv = 'Cofnięcie uprawnień';
|
||||
$strRowLength = 'Długość rekordu';
|
||||
$strRows = 'Ilość rekordów';
|
||||
$strRowSize = ' Rozmiar rekordu ';
|
||||
$strRowsFrom = 'rekordów począwszy od';
|
||||
$strRowsStatistic = 'Statystyka rekordów';
|
||||
$strRunning = 'uruchomiony na ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Wykonanie zapytania SQL do bazy danych ';
|
||||
|
||||
$strTable = "tabela ";
|
||||
$strTableComments = "Komentarze tabeli";
|
||||
$strTableEmpty = "Brak nazwy tabeli!";
|
||||
$strTableMaintenance = "Zarządzanie tabelą";
|
||||
$strTableStructure = "Struktura tabeli dla ";
|
||||
$strTableType = "Typ tabeli";
|
||||
$strTerminatedBy = "zakończone przez";
|
||||
$strTextAreaLength = " To pole może nie być edytowalne,<br> z powodu swojej długości ";
|
||||
$strTheContent = "Zawartość pliku została dołączona.";
|
||||
$strTheContents = "Zawartość pliku zastąpiła dane wybranej tabeli, których podstawowy lub unikalny klucz był identyczny.";
|
||||
$strTheTerminator = "Znak rozdzielający pola.";
|
||||
$strTotal = "wszystkich";
|
||||
$strType = "Typ";
|
||||
$strSave = 'Zachowanie';
|
||||
$strSelect = 'Wybór';
|
||||
$strSelectFields = 'Wybór pól (co najmniej jedno):';
|
||||
$strSelectNumRows = 'w zapytaniu';
|
||||
$strSend = 'wysłanie';
|
||||
$strSequence = 'Sekwencja';
|
||||
$strServerVersion = 'Wersja serwera';
|
||||
$strShow = 'Pokazanie';
|
||||
$strShowThisQuery = ' Ponowne wywołanie tego zapytania ';
|
||||
$strShowingRecords = 'Pokazanie rekordów ';
|
||||
$strSingly = '(pojedyńczo)';
|
||||
$strSize = 'Rozmiar';
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Wykorzystanie przestrzeni';
|
||||
$strSQLQuery = 'zapytanie SQL';
|
||||
$strStatement = 'Cecha';
|
||||
$strStrucCSV = 'dane CSV';
|
||||
$strStrucData = 'Struktura i dane';
|
||||
$strStrucDrop = 'Dodanie \'drop table\'';
|
||||
$strStrucOnly = 'Tylko struktura';
|
||||
$strSubmit = 'Wysłanie';
|
||||
$strSuccess = 'Zapytanie SQL zostało pomyślnie wykonane';
|
||||
$strSum = 'Suma';
|
||||
|
||||
$strUncheckAll = "Odeznaczenie wszystkich";
|
||||
$strUnique = "Unikalny";
|
||||
$strUpdatePassMessage = "Zmienione zostało hasło dla";
|
||||
$strUpdatePassword = "Zmiana hasła";
|
||||
$strUpdatePrivMessage = "Zmienione zostały uprawnienia dla";
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Wykorzystanie";
|
||||
$strUser = "Użytkownik";
|
||||
$strUserEmpty = "Brak nazwy użytkownika!";
|
||||
$strUserName = "Nazwa użytkownika";
|
||||
$strUsers = "Użytkownicy";
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'tabela ';
|
||||
$strTableComments = 'Komentarze tabeli';
|
||||
$strTableEmpty = 'Brak nazwy tabeli!';
|
||||
$strTableMaintenance = 'Zarządzanie tabelą';
|
||||
$strTableStructure = 'Struktura tabeli dla ';
|
||||
$strTableType = 'Typ tabeli';
|
||||
$strTerminatedBy = 'zakończone przez';
|
||||
$strTextAreaLength = ' To pole może nie być edytowalne,<br /> z powodu swojej długości ';
|
||||
$strTheContent = 'Zawartość pliku została dołączona.';
|
||||
$strTheContents = 'Zawartość pliku zastąpiła dane wybranej tabeli, których podstawowy lub unikalny klucz był identyczny.';
|
||||
$strTheTerminator = 'Znak rozdzielający pola.';
|
||||
$strTotal = 'wszystkich';
|
||||
$strType = 'Typ';
|
||||
|
||||
$strValue = "Wartość";
|
||||
$strViewDump = "Zrzut tabeli";
|
||||
$strViewDumpDB = "Zrzut bazy danych";
|
||||
$strUncheckAll = 'Odeznaczenie wszystkich';
|
||||
$strUnique = 'Unikalny';
|
||||
$strUpdatePassMessage = 'Zmienione zostało hasło dla';
|
||||
$strUpdatePassword = 'Zmiana hasła';
|
||||
$strUpdatePrivMessage = 'Zmienione zostały uprawnienia dla';
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Wykorzystanie';
|
||||
$strUser = 'Użytkownik';
|
||||
$strUserEmpty = 'Brak nazwy użytkownika!';
|
||||
$strUserName = 'Nazwa użytkownika';
|
||||
$strUsers = 'Użytkownicy';
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Witamy w ";
|
||||
$strWrongUser = "Błędne pola użytkownik/hasło. Brak dostępu.";
|
||||
$strValue = 'Wartość';
|
||||
$strViewDump = 'Zrzut tabeli';
|
||||
$strViewDumpDB = 'Zrzut bazy danych';
|
||||
|
||||
$strYes = "Tak";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
?>
|
||||
$strWelcome = 'Witamy w ';
|
||||
$strWrongUser = 'Błędne pola użytkownik/hasło. Brak dostępu.';
|
||||
|
||||
$strYes = 'Tak';
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRunQuery = 'Run the query'; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Acesso Negado";
|
||||
$strAction = "Ações";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Adiciona novo campo";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Condição de Pesquisa (Complemento da clausula \"where\"):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Um indice foi adicionado na ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "Chave primária acrescentada na ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "Atributos";
|
||||
|
||||
$strBack = "Voltar";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Visualiza";
|
||||
$strAccessDenied = 'Acesso Negado';
|
||||
$strAction = 'Ações';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Adiciona novo campo';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Condição de Pesquisa (Complemento da clausula "where"):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Um indice foi adicionado na ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'Chave primária acrescentada na ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = 'Atributos';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Carriage return: \\r";
|
||||
$strChange = "Muda";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Nome da Colunas";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Copia tabela para:";
|
||||
$strCopyTableOK = "Tabela %s copiada para %s.";
|
||||
$strCreate = "Cria";
|
||||
$strCreateNewDatabase = "Cria novo banco de dados";
|
||||
$strCreateNewTable = "Cria nova tabela no banco de dados ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Voltar';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Visualiza';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "Banco de Dados ";
|
||||
$strDatabases = "Banco de Dados";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Default";
|
||||
$strDelete = "Remove";
|
||||
$strDeleted = "Registro eliminado";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "Faça uma \"query by example\" (wildcard: \"%\")";
|
||||
$strDocu = "Documentação";
|
||||
$strDoYouReally = "Confirma : ";
|
||||
$strDrop = "Elimina";
|
||||
$strDropDB = "Elimina o banco de dados: ";
|
||||
$strDumpingData = "Extraindo dados da tabela";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Carriage return: \\r';
|
||||
$strChange = 'Muda';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Nome da Colunas';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Copia tabela para:';
|
||||
$strCopyTableOK = 'Tabela %s copiada para %s.';
|
||||
$strCreate = 'Cria';
|
||||
$strCreateNewDatabase = 'Cria novo banco de dados';
|
||||
$strCreateNewTable = 'Cria nova tabela no banco de dados ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Edita";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Limpa";
|
||||
$strEmptyResultSet = "MySQL retornou um set vazio (ex. zero regs).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "enclosed by"; //to translate
|
||||
$strEnd = "Fim";
|
||||
$strError = "Erro";
|
||||
$strEscapedBy = "escaped by"; //to translate
|
||||
$strExtra = "Extra"; //to translate
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'Banco de Dados ';
|
||||
$strDatabases = 'Banco de Dados';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Default';
|
||||
$strDelete = 'Remove';
|
||||
$strDeleted = 'Registro eliminado';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = 'Faça uma "query by example" (wildcard: "%")';
|
||||
$strDocu = 'Documentação';
|
||||
$strDoYouReally = 'Confirma : ';
|
||||
$strDrop = 'Elimina';
|
||||
$strDropDB = 'Elimina o banco de dados: ';
|
||||
$strDumpingData = 'Extraindo dados da tabela';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Campo";
|
||||
$strFields = "Qtd Campos";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Funçoes";
|
||||
$strEdit = 'Edita';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Limpa';
|
||||
$strEmptyResultSet = 'MySQL retornou um set vazio (ex. zero regs).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'enclosed by'; //to translate
|
||||
$strEnd = 'Fim';
|
||||
$strError = 'Erro';
|
||||
$strEscapedBy = 'escaped by'; //to translate
|
||||
$strExtra = 'Extra'; //to translate
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Executa";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Campo';
|
||||
$strFields = 'Qtd Campos';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Funçoes';
|
||||
|
||||
$strHasBeenAltered = "foi alterado.";
|
||||
$strHasBeenCreated = "foi criado.";
|
||||
$strHasBeenDropped = "foi eliminado.";
|
||||
$strHasBeenEmptied = "foi esvaziado.";
|
||||
$strHome = "Home";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Executa';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "Para carregar apenas algumas colunas da tabela, faça uma lista separada por virgula.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Insere";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Insere na tabela";
|
||||
$strInsertNewRow = "Insere novo registro";
|
||||
$strInsertTextfiles = "Insere arquivo texto na tabela";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'foi alterado.';
|
||||
$strHasBeenCreated = 'foi criado.';
|
||||
$strHasBeenDropped = 'foi eliminado.';
|
||||
$strHasBeenEmptied = 'foi esvaziado.';
|
||||
$strHome = 'Home';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Keyname";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'Para carregar apenas algumas colunas da tabela, faça uma lista separada por virgula.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Insere';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Insere na tabela';
|
||||
$strInsertNewRow = 'Insere novo registro';
|
||||
$strInsertTextfiles = 'Insere arquivo texto na tabela';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Tamanho/Set";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "Linefeed: \\n";
|
||||
$strLines = "Linhas";
|
||||
$strLocationTextfile = "Localização do arquivo textos";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Log out";
|
||||
$strKeyname = 'Keyname';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "Modificações foram salvas";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL reiniciado.";
|
||||
$strMySQLSaid = "Mensagens do MySQL : ";
|
||||
$strMySQLShowProcess = "Mostra os Processos";
|
||||
$strMySQLShowStatus = "Mostra informação de runtime do MySql";
|
||||
$strMySQLShowVars = "Mostra variáveis de sistema do MySQL";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Tamanho/Set';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = 'Linefeed: \\n';
|
||||
$strLines = 'Linhas';
|
||||
$strLocationTextfile = 'Localização do arquivo textos';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Log out';
|
||||
|
||||
$strName = "Nome";
|
||||
$strNext = "Próximo";
|
||||
$strNo = "Não";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Nenhuma table encontrada no banco de dados";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null"; //to translate
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'Modificações foram salvas';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL reiniciado.';
|
||||
$strMySQLSaid = 'Mensagens do MySQL : ';
|
||||
$strMySQLShowProcess = 'Mostra os Processos';
|
||||
$strMySQLShowStatus = 'Mostra informação de runtime do MySql';
|
||||
$strMySQLShowVars = 'Mostra variáveis de sistema do MySQL';
|
||||
|
||||
$strOftenQuotation = "Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the \"enclosed by\"-character."; //to translate
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Optional. Controls how to write or read special characters."; //to translate
|
||||
$strOptionally = "OPTIONALLY";
|
||||
$strOr = "Or"; //to translate
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Nome';
|
||||
$strNext = 'Próximo';
|
||||
$strNo = 'Não';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Nenhuma table encontrada no banco de dados';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null'; //to translate
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Inicio";
|
||||
$strPrevious = "Anterior";
|
||||
$strPrimary = "Primary";
|
||||
$strPrimaryKey = "Chave Primária";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "produziu um erro.";
|
||||
$strProperties = "Propriedades";
|
||||
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; //to translate
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Optional. Controls how to write or read special characters.'; //to translate
|
||||
$strOptionally = 'OPTIONALLY';
|
||||
$strOr = 'Or'; //to translate
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Query by Example";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Inicio';
|
||||
$strPrevious = 'Anterior';
|
||||
$strPrimary = 'Primary';
|
||||
$strPrimaryKey = 'Chave Primária';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'produziu um erro.';
|
||||
$strProperties = 'Propriedades';
|
||||
|
||||
$strReadTheDocs = "Leia os docs";
|
||||
$strRecords = "Registros";
|
||||
$strReloadFailed = "Reinicialização do MySQL falhou.";
|
||||
$strReloadMySQL = "Reinicializa o MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Renomeia a tabela para ";
|
||||
$strRenameTableOK = "Tabela %s renomeada para %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "Substituir";
|
||||
$strReplaceTable = "Substituir os dados da tabela pelos do arquivo";
|
||||
$strReset = "Reset";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "Rodando em ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Executa SQL query no banco de dados ";
|
||||
$strQBE = 'Query by Example';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Salva";
|
||||
$strSelect = "Seleciona";
|
||||
$strSelectFields = "Seleciones os campos (no mínimo 1)";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "envia";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Show"; //to translate
|
||||
$strShowingRecords = "Mostrando registros ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-query";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "Dados CSV";
|
||||
$strStrucData = "Estrutura e dados";
|
||||
$strStrucDrop = "Adiciona 'drop table'";
|
||||
$strStrucOnly = "Somente estrutura";
|
||||
$strSubmit = "Submete";
|
||||
$strSuccess = "Sua SQL-query foi executada com sucesso";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'Leia os docs';
|
||||
$strRecords = 'Registros';
|
||||
$strReloadFailed = 'Reinicialização do MySQL falhou.';
|
||||
$strReloadMySQL = 'Reinicializa o MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Renomeia a tabela para ';
|
||||
$strRenameTableOK = 'Tabela %s renomeada para %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'Substituir';
|
||||
$strReplaceTable = 'Substituir os dados da tabela pelos do arquivo';
|
||||
$strReset = 'Reset';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'Rodando em ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Executa SQL query no banco de dados ';
|
||||
|
||||
$strTable = "tabela ";
|
||||
$strTableComments = "Comentários da tabela";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Estrutura da tabela";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "terminado por";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "O conteúdo do seu arquivo foi inserido";
|
||||
$strTheContents = "O conteúdo do arquivo substituiu o conteúdo da tabela que tinha a mesma chave primária ou única";
|
||||
$strTheTerminator = "Terminador de campos.";
|
||||
$strTotal = "total";
|
||||
$strType = "Tipo";
|
||||
$strSave = 'Salva';
|
||||
$strSelect = 'Seleciona';
|
||||
$strSelectFields = 'Seleciones os campos (no mínimo 1)';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = 'envia';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Show'; //to translate
|
||||
$strShowingRecords = 'Mostrando registros ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-query';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'Dados CSV';
|
||||
$strStrucData = 'Estrutura e dados';
|
||||
$strStrucDrop = 'Adiciona \'drop table\'';
|
||||
$strStrucOnly = 'Somente estrutura';
|
||||
$strSubmit = 'Submete';
|
||||
$strSuccess = 'Sua SQL-query foi executada com sucesso';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Unique";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'tabela ';
|
||||
$strTableComments = 'Comentários da tabela';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Estrutura da tabela';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'terminado por';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'O conteúdo do seu arquivo foi inserido';
|
||||
$strTheContents = 'O conteúdo do arquivo substituiu o conteúdo da tabela que tinha a mesma chave primária ou única';
|
||||
$strTheTerminator = 'Terminador de campos.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Tipo';
|
||||
|
||||
$strValue = "Value";
|
||||
$strViewDump = "Ver o esquema da tabela";
|
||||
$strViewDumpDB = "Ver o esquema do banco de dados";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Unique';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Benvindo ao ";
|
||||
$strWrongUser = "Usuário ou Senha errado. Acesso Negado.";
|
||||
$strValue = 'Value';
|
||||
$strViewDump = 'Ver o esquema da tabela';
|
||||
$strViewDumpDB = 'Ver o esquema do banco de dados';
|
||||
|
||||
$strYes = "Sim";
|
||||
$strWelcome = 'Benvindo ao ';
|
||||
$strWrongUser = 'Usuário ou Senha errado. Acesso Negado.';
|
||||
|
||||
$strYes = 'Sim';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "koi8-r";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'koi8-r';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "÷ ÄÏÓÔÕÐÅ ÏÔËÁÚÁÎÏ";
|
||||
$strAction = "äÅÊÓÔ×ÉÅ";
|
||||
$strAddDeleteColumn = "äÏÂÁ×ÉÔØ/ÕÄÁÌÉÔØ ÓÔÏÌÂÅà ËÒÉÔÅÒÉÑ";
|
||||
$strAddDeleteRow = "äÏÂÁ×ÉÔØ/ÕÄÁÌÉÔØ ÒÑÄ ËÒÉÔÅÒÉÑ";
|
||||
$strAddNewField = "äÏÂÁ×ÉÔØ ÎÏ×ÏÅ ÐÏÌÅ";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "äÏÂÁ×ÉÔØ ÕÓÌÏ×ÉÑ ÐÏÉÓËÁ (ÔÅÌÏ ÄÌÑ \"where\" ÕÓÌÏ×ÉÑ):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "é";
|
||||
$strAnIndex = "âÙÌ ÄÏÂÁ×ÌÅÎ ÉÎÄÅËÓ ÄÌÑ ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "âÙÌ ÄÏÂÁ×ÌÅÎ ÐÅÒ×ÉÞÎÙÊ ËÌÀÞ Ë ";
|
||||
$strAscending = "÷ÏÓÈÏÄÑÝÉÊ";
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "áÔÒÉÂÕÔÙ";
|
||||
|
||||
$strBack = "Back"; //to translate
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "ðÒÏÌÉÓÔÁÔØ";
|
||||
$strAccessDenied = '÷ ÄÏÓÔÕÐÅ ÏÔËÁÚÁÎÏ';
|
||||
$strAction = 'äÅÊÓÔ×ÉÅ';
|
||||
$strAddDeleteColumn = 'äÏÂÁ×ÉÔØ/ÕÄÁÌÉÔØ ÓÔÏÌÂÅà ËÒÉÔÅÒÉÑ';
|
||||
$strAddDeleteRow = 'äÏÂÁ×ÉÔØ/ÕÄÁÌÉÔØ ÒÑÄ ËÒÉÔÅÒÉÑ';
|
||||
$strAddNewField = 'äÏÂÁ×ÉÔØ ÎÏ×ÏÅ ÐÏÌÅ';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'äÏÂÁ×ÉÔØ ÕÓÌÏ×ÉÑ ÐÏÉÓËÁ (ÔÅÌÏ ÄÌÑ "where" ÕÓÌÏ×ÉÑ):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'é';
|
||||
$strAnIndex = 'âÙÌ ÄÏÂÁ×ÌÅÎ ÉÎÄÅËÓ ÄÌÑ ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'âÙÌ ÄÏÂÁ×ÌÅÎ ÐÅÒ×ÉÞÎÙÊ ËÌÀÞ Ë ';
|
||||
$strAscending = '÷ÏÓÈÏÄÑÝÉÊ';
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = 'áÔÒÉÂÕÔÙ';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "÷ÏÚ×ÒÁÔ ËÁÒÅÔËÉ: \\r";
|
||||
$strChange = "éÚÍÅÎÉÔØ";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "îÁÚ×ÁÎÉÑ ËÏÌÏÎÏË";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "óËÏÐÉÒÏ×ÁÔØ ÔÁÂÌÉÃÕ ×:";
|
||||
$strCopyTableOK = "ôÁÂÌÉÃÁ %s ÂÙÌÁ ÓËÏÐÉÒÏ×ÁÎÁ × %s.";
|
||||
$strCreate = "óÏÚÄÁÔØ";
|
||||
$strCreateNewDatabase = "óÏÚÄÁÔØ ÎÏ×ÕÀ âä";
|
||||
$strCreateNewTable = "óÏÚÄÁÔØ ÎÏ×ÕÀ ÔÁÂÌÉÃÕ × âä ";
|
||||
$strCriteria = "ëÒÉÔÅÒÉÊ";
|
||||
$strBack = 'Back'; //to translate
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'ðÒÏÌÉÓÔÁÔØ';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "âä ";
|
||||
$strDatabases = "âÁÚÙ äÁÎÎÙÈ";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "ðÏ ÕÍÏÌÞÁÎÉÀ";
|
||||
$strDelete = "õÄÁÌÉÔØ";
|
||||
$strDeleted = "òÑÄ ÂÙÌ ÕÄÁÌÅÎ";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "îÉÓÈÏÄÑÝÉÊ";
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "÷ÙÐÏÌÎÉÔØ \"ÚÁÐÒÏÓ ÐÏ ÐÒÉÍÅÒÕ\" (ÓÉÍ×ÏÌ ÐÏÄÓÔÁ×ÎÏ×ËÉ: \"%\")";
|
||||
$strDocu = "äÏËÕÍÅÎÔÁÃÉÑ";
|
||||
$strDoYouReally = "÷Ù ÄÅÊÓÔ×ÉÔÅÌØÎÏ ÖÅÌÁÅÔÅ ";
|
||||
$strDrop = "õÎÉÞÔÏÖÉÔØ";
|
||||
$strDropDB = "õÎÉÞÔÏÖÉÔØ âä ";
|
||||
$strDumpingData = "óÄÁÍÐÁÔØ ÄÁÎÎÙÅ ÔÁÂÌÉÃÙ";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = '÷ÏÚ×ÒÁÔ ËÁÒÅÔËÉ: \\r';
|
||||
$strChange = 'éÚÍÅÎÉÔØ';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'îÁÚ×ÁÎÉÑ ËÏÌÏÎÏË';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'óËÏÐÉÒÏ×ÁÔØ ÔÁÂÌÉÃÕ ×:';
|
||||
$strCopyTableOK = 'ôÁÂÌÉÃÁ %s ÂÙÌÁ ÓËÏÐÉÒÏ×ÁÎÁ × %s.';
|
||||
$strCreate = 'óÏÚÄÁÔØ';
|
||||
$strCreateNewDatabase = 'óÏÚÄÁÔØ ÎÏ×ÕÀ âä';
|
||||
$strCreateNewTable = 'óÏÚÄÁÔØ ÎÏ×ÕÀ ÔÁÂÌÉÃÕ × âä ';
|
||||
$strCriteria = 'ëÒÉÔÅÒÉÊ';
|
||||
|
||||
$strEdit = "òÅÄÁËÔÉÒÏ×ÁÔØ";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "ðÕÓÔÏÔÁ";
|
||||
$strEmptyResultSet = "MySQL ×ÅÒÎÕÌÁ ÐÕÓÔÏÊ ÒÅÚÕÌØÔÁÔ (Ô.Å. ÎÏÌØ ÒÑÄÏ×).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "ÚÁËÌÀÞÅÎÎÙÊ ×";
|
||||
$strEnd = "ëÏÎÅÃ";
|
||||
$strError = "ïÛÉÂËÁ";
|
||||
$strEscapedBy = "ÚÁ×ÅÒÛÁÅÍÙÅ ÞÅÒÅÚ";
|
||||
$strExtra = "äÏÐÏÌÎÉÔÅÌØÎÏ";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'âä ';
|
||||
$strDatabases = 'âÁÚÙ äÁÎÎÙÈ';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'ðÏ ÕÍÏÌÞÁÎÉÀ';
|
||||
$strDelete = 'õÄÁÌÉÔØ';
|
||||
$strDeleted = 'òÑÄ ÂÙÌ ÕÄÁÌÅÎ';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'îÉÓÈÏÄÑÝÉÊ';
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = '÷ÙÐÏÌÎÉÔØ "ÚÁÐÒÏÓ ÐÏ ÐÒÉÍÅÒÕ" (ÓÉÍ×ÏÌ ÐÏÄÓÔÁ×ÎÏ×ËÉ: "%")';
|
||||
$strDocu = 'äÏËÕÍÅÎÔÁÃÉÑ';
|
||||
$strDoYouReally = '÷Ù ÄÅÊÓÔ×ÉÔÅÌØÎÏ ÖÅÌÁÅÔÅ ';
|
||||
$strDrop = 'õÎÉÞÔÏÖÉÔØ';
|
||||
$strDropDB = 'õÎÉÞÔÏÖÉÔØ âä ';
|
||||
$strDumpingData = 'óÄÁÍÐÁÔØ ÄÁÎÎÙÅ ÔÁÂÌÉÃÙ';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "ðÏÌÅ";
|
||||
$strFields = "ðÏÌÑ";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "æÕÎËÃÉÑ";
|
||||
$strEdit = 'òÅÄÁËÔÉÒÏ×ÁÔØ';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'ðÕÓÔÏÔÁ';
|
||||
$strEmptyResultSet = 'MySQL ×ÅÒÎÕÌÁ ÐÕÓÔÏÊ ÒÅÚÕÌØÔÁÔ (Ô.Å. ÎÏÌØ ÒÑÄÏ×).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'ÚÁËÌÀÞÅÎÎÙÊ ×';
|
||||
$strEnd = 'ëÏÎÅÃ';
|
||||
$strError = 'ïÛÉÂËÁ';
|
||||
$strEscapedBy = 'ÚÁ×ÅÒÛÁÅÍÙÅ ÞÅÒÅÚ';
|
||||
$strExtra = 'äÏÐÏÌÎÉÔÅÌØÎÏ';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "ðÏÛÅÌ";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'ðÏÌÅ';
|
||||
$strFields = 'ðÏÌÑ';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'æÕÎËÃÉÑ';
|
||||
|
||||
$strHasBeenAltered = "ÂÙÌÁ ÉÚÍÅÎÅÎÁ.";
|
||||
$strHasBeenCreated = "ÂÙÌÁ ÓÏÚÄÁÎÁ.";
|
||||
$strHasBeenDropped = "ÂÙÌÁ ÕÎÉÞÔÏÖÅÎÁ.";
|
||||
$strHasBeenEmptied = "ÂÙÌÁ ÏÐÕÓÔÏÛÅÎÁ.";
|
||||
$strHome = "ë ÎÁÞÁÌÕ";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "èÏÓÔ";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'ðÏÛÅÌ';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "åÓÌÉ ÷Ù ÖÅÌÁÅÔÅ ÚÁÇÒÕÚÉÔØ ÔÏÌØËÏ ÎÅËÏÔÏÒÙÅ ÓÔÏÌÂÃÙ ÔÁÂÌÉÃÙ, ÕËÁÖÉÔÅ ÒÁÚÄÅÌÅÎÎÙÊ ÚÁÐÑÔÙÍÉ ÓÐÉÓÏË ÐÏÌÅÊ.";
|
||||
$strIndex = "éÎÄÅËÓ";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "÷ÓÔÁ×ÉÔØ";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "÷ÓÔÁ×ÉÔØ × ÔÁÂÌÉÃÕ";
|
||||
$strInsertNewRow = "÷ÓÔÁ×ÉÔØ ÎÏ×ÙÊ ÒÑÄ";
|
||||
$strInsertTextfiles = "÷ÓÔÁ×ÉÔØ ÔÅËÓÔÏ×ÙÅ ÆÁÊÌÙ × ÔÁÂÌÉÃÕ";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'ÂÙÌÁ ÉÚÍÅÎÅÎÁ.';
|
||||
$strHasBeenCreated = 'ÂÙÌÁ ÓÏÚÄÁÎÁ.';
|
||||
$strHasBeenDropped = 'ÂÙÌÁ ÕÎÉÞÔÏÖÅÎÁ.';
|
||||
$strHasBeenEmptied = 'ÂÙÌÁ ÏÐÕÓÔÏÛÅÎÁ.';
|
||||
$strHome = 'ë ÎÁÞÁÌÕ';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'èÏÓÔ';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "éÍÑ ËÌÀÞÁ";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'åÓÌÉ ÷Ù ÖÅÌÁÅÔÅ ÚÁÇÒÕÚÉÔØ ÔÏÌØËÏ ÎÅËÏÔÏÒÙÅ ÓÔÏÌÂÃÙ ÔÁÂÌÉÃÙ, ÕËÁÖÉÔÅ ÒÁÚÄÅÌÅÎÎÙÊ ÚÁÐÑÔÙÍÉ ÓÐÉÓÏË ÐÏÌÅÊ.';
|
||||
$strIndex = 'éÎÄÅËÓ';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = '÷ÓÔÁ×ÉÔØ';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = '÷ÓÔÁ×ÉÔØ × ÔÁÂÌÉÃÕ';
|
||||
$strInsertNewRow = '÷ÓÔÁ×ÉÔØ ÎÏ×ÙÊ ÒÑÄ';
|
||||
$strInsertTextfiles = '÷ÓÔÁ×ÉÔØ ÔÅËÓÔÏ×ÙÅ ÆÁÊÌÙ × ÔÁÂÌÉÃÕ';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "äÌÉÎÎÁ";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "óÉÍ×ÏÌ ÏËÏÎÞÁÎÉÑ ÌÉÎÉÉ: \\n";
|
||||
$strLines = "ìÉÎÉÉ";
|
||||
$strLocationTextfile = "íÅÓÔÏÒÁÓÐÏÌÏÖÅÎÉÅ ÔÅËÓÔÏ×ÏÇÏ ÆÁÊÌÁ";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "÷ÙÊÔÉ ÉÚ ÓÉÓÔÅÍÙ";
|
||||
$strKeyname = 'éÍÑ ËÌÀÞÁ';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "íÏÄÉÆÉËÁÃÉÉ ÂÙÌÉ ÓÏÈÒÁÎÅÎÙ";
|
||||
$strModify = "éÚÍÅÎÉÔØ";
|
||||
$strMySQLReloaded = "MySQL ÐÅÒÅÚÁÇÒÕÖÅÎÁ.";
|
||||
$strMySQLSaid = "MySQL ÓËÁÚÁÌÁ: ";
|
||||
$strMySQLShowProcess = "ðÏËÁÚÁÔØ ÐÒÏÃÅÓÓÙ";
|
||||
$strMySQLShowStatus = "ðÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ MySQL";
|
||||
$strMySQLShowVars = "ðÏËÁÚÁÔØ ÓÉÓÔÅÍÎÙÅ ÐÅÒÅÍÅÎÎÙÅ MySQL";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'äÌÉÎÎÁ';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = 'óÉÍ×ÏÌ ÏËÏÎÞÁÎÉÑ ÌÉÎÉÉ: \\n';
|
||||
$strLines = 'ìÉÎÉÉ';
|
||||
$strLocationTextfile = 'íÅÓÔÏÒÁÓÐÏÌÏÖÅÎÉÅ ÔÅËÓÔÏ×ÏÇÏ ÆÁÊÌÁ';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = '÷ÙÊÔÉ ÉÚ ÓÉÓÔÅÍÙ';
|
||||
|
||||
$strName = "éÍÑ";
|
||||
$strNext = "óÌÅÄÕÀÝÉÊ";
|
||||
$strNo = "îÅÔ";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "÷ âä ÎÅ ÏÂÎÁÒÕÖÅÎÏ ÔÁÂÌÉÃ.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "îÏÌØ";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'íÏÄÉÆÉËÁÃÉÉ ÂÙÌÉ ÓÏÈÒÁÎÅÎÙ';
|
||||
$strModify = 'éÚÍÅÎÉÔØ';
|
||||
$strMySQLReloaded = 'MySQL ÐÅÒÅÚÁÇÒÕÖÅÎÁ.';
|
||||
$strMySQLSaid = 'MySQL ÓËÁÚÁÌÁ: ';
|
||||
$strMySQLShowProcess = 'ðÏËÁÚÁÔØ ÐÒÏÃÅÓÓÙ';
|
||||
$strMySQLShowStatus = 'ðÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ MySQL';
|
||||
$strMySQLShowVars = 'ðÏËÁÚÁÔØ ÓÉÓÔÅÍÎÙÅ ÐÅÒÅÍÅÎÎÙÅ MySQL';
|
||||
|
||||
$strOftenQuotation = "ïÂÙÞÎÏ ËÁ×ÙÞËÉ. ðï ÷ùâïòõ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÔÏÌØËÏ ÐÏÌÑ char É varchar ÚÁËÌÀÞÁÀÔÓÑ × ËÁ×ÙÞËÉ.";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "ðÏ ×ÙÂÏÒÕ. ëÏÎÔÒÏÌÉÒÕÅÔ ËÁË ÞÉÔÁÔØ ÉÌÉ ÐÉÓÁÔØ ÓÐÅÃÉÁÌØÎÙÅ ÓÉÍ×ÏÌÙ.";
|
||||
$strOptionally = "ðï ÷ùâïòõ";
|
||||
$strOr = "ÉÌÉ";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'éÍÑ';
|
||||
$strNext = 'óÌÅÄÕÀÝÉÊ';
|
||||
$strNo = 'îÅÔ';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = '÷ âä ÎÅ ÏÂÎÁÒÕÖÅÎÏ ÔÁÂÌÉÃ.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'îÏÌØ';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "îÁÞÁÌÏ";
|
||||
$strPrevious = "ðÒÅÄÙÄÕÝÉÊ";
|
||||
$strPrimary = "ðÅÒ×ÉÞÎÙÊ";
|
||||
$strPrimaryKey = "ðÅÒ×ÉÞÎÙÊ ËÌÀÞ";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "ÐÒÉ×ÅÌÁ Ë ÏÛÉÂËÅ.";
|
||||
$strProperties = "ó×ÏÊÓÔ×Á";
|
||||
$strOftenQuotation = 'ïÂÙÞÎÏ ËÁ×ÙÞËÉ. ðï ÷ùâïòõ ÏÚÎÁÞÁÅÔ, ÞÔÏ ÔÏÌØËÏ ÐÏÌÑ char É varchar ÚÁËÌÀÞÁÀÔÓÑ × ËÁ×ÙÞËÉ.';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'ðÏ ×ÙÂÏÒÕ. ëÏÎÔÒÏÌÉÒÕÅÔ ËÁË ÞÉÔÁÔØ ÉÌÉ ÐÉÓÁÔØ ÓÐÅÃÉÁÌØÎÙÅ ÓÉÍ×ÏÌÙ.';
|
||||
$strOptionally = 'ðï ÷ùâïòõ';
|
||||
$strOr = 'ÉÌÉ';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "úÁÐÒÏÓ ÐÏ ÐÒÉÍÅÒÕ";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'îÁÞÁÌÏ';
|
||||
$strPrevious = 'ðÒÅÄÙÄÕÝÉÊ';
|
||||
$strPrimary = 'ðÅÒ×ÉÞÎÙÊ';
|
||||
$strPrimaryKey = 'ðÅÒ×ÉÞÎÙÊ ËÌÀÞ';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'ÐÒÉ×ÅÌÁ Ë ÏÛÉÂËÅ.';
|
||||
$strProperties = 'ó×ÏÊÓÔ×Á';
|
||||
|
||||
$strReadTheDocs = "ðÏÞÉÔÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ";
|
||||
$strRecords = "úÁÐÉÓÉ";
|
||||
$strReloadFailed = "îÅ ÕÄÁÌÏÓØ ÐÅÒÅÚÁÇÒÕÚÉÔØ MySQL.";
|
||||
$strReloadMySQL = "ðÅÒÅÚÁÇÒÕÚÉÔØ MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "ðÅÒÅÉÍÅÎÏ×ÁÔØ ÔÁÂÌÉÃÕ ×";
|
||||
$strRenameTableOK = "ôÁÂÌÉÃÁ %s ÂÙÌÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÁ × %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "úÁÍÅÓÔÉÔØ";
|
||||
$strReplaceTable = "úÁÍÅÓÔÉÔØ ÄÁÎÎÙÅ ÔÁÂÌÉÃÙ ÄÁÎÎÙÍÉ ÉÚ ÆÁÊÌÁ";
|
||||
$strReset = "ðÅÒÅÕÓÔÁÎÏ×ÉÔØ";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "ÚÁÐÕÝÅÎÏ ÎÁ ";
|
||||
$strRunQuery = "÷ÙÐÏÌÎÉÔØ úÁÐÒÏÓ";
|
||||
$strRunSQLQuery = "÷ÙÐÏÌÎÉÔØ SQL ÚÁÐÒÏÓ(Ù) ÎÁ âä ";
|
||||
$strQBE = 'úÁÐÒÏÓ ÐÏ ÐÒÉÍÅÒÕ';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "óÏÈÒÁÎÉÔØ";
|
||||
$strSelect = "÷ÙÂÒÁÔØ";
|
||||
$strSelectFields = "÷ÙÂÒÁÔØ ÐÏÌÑ (ÍÉÎÉÍÕÍ ÏÄÎÏ):";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "ÐÏÓÌÁÔØ";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "ðÏËÁÚÁÔØ";
|
||||
$strShowingRecords = "ðÏËÁÚÙ×ÁÅÔ ÚÁÐÉÓÉ ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "ïÔÓÏÒÔÉÒÏ×ÁÔØ";
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-ÚÁÐÒÏÓ";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV ÄÁÎÎÙÅ";
|
||||
$strStrucData = "óÔÒÕËÔÕÒÁ É ÄÁÎÎÙÅ";
|
||||
$strStrucDrop = "äÏÂÁ×ÉÔØ 'ÕÄÁÌÉÔØ ÔÁÂÌÉÃÕ'";
|
||||
$strStrucOnly = "ôÏÌØËÏ ÓÔÒÕËÔÕÒÕ";
|
||||
$strSubmit = "÷ÙÐÏÌÎÉÔØ";
|
||||
$strSuccess = "÷ÁÛ SQL-ÚÁÐÒÏÓ ÂÙÌ ÕÓÐÅÛÎÏ ×ÙÐÏÌÎÅÎ";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'ðÏÞÉÔÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ';
|
||||
$strRecords = 'úÁÐÉÓÉ';
|
||||
$strReloadFailed = 'îÅ ÕÄÁÌÏÓØ ÐÅÒÅÚÁÇÒÕÚÉÔØ MySQL.';
|
||||
$strReloadMySQL = 'ðÅÒÅÚÁÇÒÕÚÉÔØ MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'ðÅÒÅÉÍÅÎÏ×ÁÔØ ÔÁÂÌÉÃÕ ×';
|
||||
$strRenameTableOK = 'ôÁÂÌÉÃÁ %s ÂÙÌÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÁ × %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'úÁÍÅÓÔÉÔØ';
|
||||
$strReplaceTable = 'úÁÍÅÓÔÉÔØ ÄÁÎÎÙÅ ÔÁÂÌÉÃÙ ÄÁÎÎÙÍÉ ÉÚ ÆÁÊÌÁ';
|
||||
$strReset = 'ðÅÒÅÕÓÔÁÎÏ×ÉÔØ';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'ÚÁÐÕÝÅÎÏ ÎÁ ';
|
||||
$strRunQuery = '÷ÙÐÏÌÎÉÔØ úÁÐÒÏÓ';
|
||||
$strRunSQLQuery = '÷ÙÐÏÌÎÉÔØ SQL ÚÁÐÒÏÓ(Ù) ÎÁ âä ';
|
||||
|
||||
$strTable = "ÔÁÂÌÉÃÁ ";
|
||||
$strTableComments = "Table comments"; //to translate
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "óÔÒÕËÔÕÒÁ ÔÁÂÌÉÃÙ ÄÌÑ ÔÁÂÌÉÃÙ";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "úÁ×ÅÒÛÁÅÔÓÑ ÞÅÒÅÚ";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "óÏÄÅÒÖÉÍÏÅ ÆÁÊÌÁ ÂÙÌÏ ÉÍÐÏÒÔÉÒÏ×ÁÎÏ.";
|
||||
$strTheContents = "óÏÄÅÒÖÉÍÏÅ ÆÁÊÌÁ ÚÁÍÅÝÁÅÔ ÓÏÄÅÒÖÉÍÏÅ ÔÁÂÌÉÃÙ ÄÌÑ ÒÑÄÏ× Ó ÉÄÅÎÔÉÞÎÙÍÉ ÐÅÒ×ÉÞÎÙÍÉ ÉÌÉ ÕÎÉËÁÌØÎÙÍÉ ËÌÀÞÁÍÉ.";
|
||||
$strTheTerminator = "óÉÍ×ÏÌ ÏËÏÎÞÁÎÉÑ ÐÏÌÅÊ.";
|
||||
$strTotal = "×ÓÅÇÏ";
|
||||
$strType = "ôÉÐ";
|
||||
$strSave = 'óÏÈÒÁÎÉÔØ';
|
||||
$strSelect = '÷ÙÂÒÁÔØ';
|
||||
$strSelectFields = '÷ÙÂÒÁÔØ ÐÏÌÑ (ÍÉÎÉÍÕÍ ÏÄÎÏ):';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = 'ÐÏÓÌÁÔØ';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'ðÏËÁÚÁÔØ';
|
||||
$strShowingRecords = 'ðÏËÁÚÙ×ÁÅÔ ÚÁÐÉÓÉ ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'ïÔÓÏÒÔÉÒÏ×ÁÔØ';
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-ÚÁÐÒÏÓ';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV ÄÁÎÎÙÅ';
|
||||
$strStrucData = 'óÔÒÕËÔÕÒÁ É ÄÁÎÎÙÅ';
|
||||
$strStrucDrop = 'äÏÂÁ×ÉÔØ \'ÕÄÁÌÉÔØ ÔÁÂÌÉÃÕ\'';
|
||||
$strStrucOnly = 'ôÏÌØËÏ ÓÔÒÕËÔÕÒÕ';
|
||||
$strSubmit = '÷ÙÐÏÌÎÉÔØ';
|
||||
$strSuccess = '÷ÁÛ SQL-ÚÁÐÒÏÓ ÂÙÌ ÕÓÐÅÛÎÏ ×ÙÐÏÌÎÅÎ';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "õÎÉËÁÌØÎÏÅ";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "äÏÐÏÌÎÉÔØ úÁÐÒÏÓ";
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "éÓÐÏÌØÚÏ×ÁÔØ ÔÁÂÌÉÃÙ";
|
||||
$strTable = 'ÔÁÂÌÉÃÁ ';
|
||||
$strTableComments = 'Table comments'; //to translate
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'óÔÒÕËÔÕÒÁ ÔÁÂÌÉÃÙ ÄÌÑ ÔÁÂÌÉÃÙ';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'úÁ×ÅÒÛÁÅÔÓÑ ÞÅÒÅÚ';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'óÏÄÅÒÖÉÍÏÅ ÆÁÊÌÁ ÂÙÌÏ ÉÍÐÏÒÔÉÒÏ×ÁÎÏ.';
|
||||
$strTheContents = 'óÏÄÅÒÖÉÍÏÅ ÆÁÊÌÁ ÚÁÍÅÝÁÅÔ ÓÏÄÅÒÖÉÍÏÅ ÔÁÂÌÉÃÙ ÄÌÑ ÒÑÄÏ× Ó ÉÄÅÎÔÉÞÎÙÍÉ ÐÅÒ×ÉÞÎÙÍÉ ÉÌÉ ÕÎÉËÁÌØÎÙÍÉ ËÌÀÞÁÍÉ.';
|
||||
$strTheTerminator = 'óÉÍ×ÏÌ ÏËÏÎÞÁÎÉÑ ÐÏÌÅÊ.';
|
||||
$strTotal = '×ÓÅÇÏ';
|
||||
$strType = 'ôÉÐ';
|
||||
|
||||
$strValue = "úÎÁÞÅÎÉÅ";
|
||||
$strViewDump = "ðÒÏÓÍÏÔÒÅÔØ ÄÁÍÐ (ÓÈÅÍÕ) ÔÁÂÌÉÃÙ";
|
||||
$strViewDumpDB = "ðÒÏÓÍÏÔÒÅÔØ ÄÁÍÐ (ÓÈÅÍÕ) âä";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'õÎÉËÁÌØÎÏÅ';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'äÏÐÏÌÎÉÔØ úÁÐÒÏÓ';
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'éÓÐÏÌØÚÏ×ÁÔØ ÔÁÂÌÉÃÙ';
|
||||
|
||||
$strWelcome = "äÏÂÒÏ ÐÏÖÁÌÏ×ÁÔØ × ";
|
||||
$strWrongUser = "ïÛÉÂÏÞÎÙÊ ÌÏÇÉÎ/ÐÁÒÏÌØ. ÷ ÄÏÓÔÕÐÅ ÏÔËÁÚÁÎÏ.";
|
||||
$strValue = 'úÎÁÞÅÎÉÅ';
|
||||
$strViewDump = 'ðÒÏÓÍÏÔÒÅÔØ ÄÁÍÐ (ÓÈÅÍÕ) ÔÁÂÌÉÃÙ';
|
||||
$strViewDumpDB = 'ðÒÏÓÍÏÔÒÅÔØ ÄÁÍÐ (ÓÈÅÍÕ) âä';
|
||||
|
||||
$strYes = "äÁ";
|
||||
$strWelcome = 'äÏÂÒÏ ÐÏÖÁÌÏ×ÁÔØ × ';
|
||||
$strWrongUser = 'ïÛÉÂÏÞÎÙÊ ÌÏÇÉÎ/ÐÁÒÏÌØ. ÷ ÄÏÓÔÕÐÅ ÏÔËÁÚÁÎÏ.';
|
||||
|
||||
$strYes = 'äÁ';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "windows-1251";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'windows-1251';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Â äîñòóïå îòêàçàíî";
|
||||
$strAction = "Äåéñòâèå";
|
||||
$strAddDeleteColumn = "Äîáàâèòü/óäàëèòü ñòîëáåö êðèòåðèÿ";
|
||||
$strAddDeleteRow = "Äîáàâèòü/óäàëèòü ðÿä êðèòåðèÿ";
|
||||
$strAddNewField = "Äîáàâèòü íîâîå ïîëå";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Äîáàâèòü óñëîâèÿ ïîèñêà (òåëî äëÿ \"where\" óñëîâèÿ):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "After"; //to translate
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "È";
|
||||
$strAnIndex = "Áûë äîáàâëåí èíäåêñ äëÿ ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "Áûë äîáàâëåí ïåðâè÷íûé êëþ÷ ê ";
|
||||
$strAscending = "Âîñõîäÿùèé";
|
||||
$strAtBeginningOfTable = "At Beginning of Table"; //to translate
|
||||
$strAtEndOfTable = "At End of Table"; //to translate
|
||||
$strAttr = "Àòðèáóòû";
|
||||
|
||||
$strBack = "Back"; //to translate
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Ïðîëèñòàòü";
|
||||
$strAccessDenied = 'Â äîñòóïå îòêàçàíî';
|
||||
$strAction = 'Äåéñòâèå';
|
||||
$strAddDeleteColumn = 'Äîáàâèòü/óäàëèòü ñòîëáåö êðèòåðèÿ';
|
||||
$strAddDeleteRow = 'Äîáàâèòü/óäàëèòü ðÿä êðèòåðèÿ';
|
||||
$strAddNewField = 'Äîáàâèòü íîâîå ïîëå';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Äîáàâèòü óñëîâèÿ ïîèñêà (òåëî äëÿ "where" óñëîâèÿ):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'After'; //to translate
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'È';
|
||||
$strAnIndex = 'Áûë äîáàâëåí èíäåêñ äëÿ ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'Áûë äîáàâëåí ïåðâè÷íûé êëþ÷ ê ';
|
||||
$strAscending = 'Âîñõîäÿùèé';
|
||||
$strAtBeginningOfTable = 'At Beginning of Table'; //to translate
|
||||
$strAtEndOfTable = 'At End of Table'; //to translate
|
||||
$strAttr = 'Àòðèáóòû';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Âîçâðàò êàðåòêè: \\r";
|
||||
$strChange = "Èçìåíèòü";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Íàçâàíèÿ êîëîíîê";
|
||||
$strCompleteInserts = "Complete inserts"; //to translate
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Ñêîïèðîâàòü òàáëèöó â:";
|
||||
$strCopyTableOK = "Òàáëèöà %s áûëà ñêîïèðîâàíà â %s.";
|
||||
$strCreate = "Ñîçäàòü";
|
||||
$strCreateNewDatabase = "Ñîçäàòü íîâóþ ÁÄ";
|
||||
$strCreateNewTable = "Ñîçäàòü íîâóþ òàáëèöó â ÁÄ ";
|
||||
$strCriteria = "Êðèòåðèé";
|
||||
$strBack = 'Back'; //to translate
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Ïðîëèñòàòü';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "ÁÄ ";
|
||||
$strDatabases = "Áàçû Äàííûõ";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Ïî óìîë÷àíèþ";
|
||||
$strDelete = "Óäàëèòü";
|
||||
$strDeleted = "Ðÿä áûë óäàëåí";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Íèñõîäÿùèé";
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "Display"; //to translate
|
||||
$strDoAQuery = "Âûïîëíèòü \"çàïðîñ ïî ïðèìåðó\" (ñèìâîë ïîäñòàâíîâêè: \"%\")";
|
||||
$strDocu = "Äîêóìåíòàöèÿ";
|
||||
$strDoYouReally = "Âû äåéñòâèòåëüíî æåëàåòå ";
|
||||
$strDrop = "Óíè÷òîæèòü";
|
||||
$strDropDB = "Óíè÷òîæèòü ÁÄ ";
|
||||
$strDumpingData = "Ñäàìïàòü äàííûå òàáëèöû";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Âîçâðàò êàðåòêè: \\r';
|
||||
$strChange = 'Èçìåíèòü';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Íàçâàíèÿ êîëîíîê';
|
||||
$strCompleteInserts = 'Complete inserts'; //to translate
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Ñêîïèðîâàòü òàáëèöó â:';
|
||||
$strCopyTableOK = 'Òàáëèöà %s áûëà ñêîïèðîâàíà â %s.';
|
||||
$strCreate = 'Ñîçäàòü';
|
||||
$strCreateNewDatabase = 'Ñîçäàòü íîâóþ ÁÄ';
|
||||
$strCreateNewTable = 'Ñîçäàòü íîâóþ òàáëèöó â ÁÄ ';
|
||||
$strCriteria = 'Êðèòåðèé';
|
||||
|
||||
$strEdit = "Ðåäàêòèðîâàòü";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Ïóñòîòà";
|
||||
$strEmptyResultSet = "MySQL âåðíóëà ïóñòîé ðåçóëüòàò (ò.å. íîëü ðÿäîâ).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "çàêëþ÷åííûé â";
|
||||
$strEnd = "Êîíåö";
|
||||
$strError = "Îøèáêà";
|
||||
$strEscapedBy = "çàâåðøàåìûå ÷åðåç";
|
||||
$strExtra = "Äîïîëíèòåëüíî";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'ÁÄ ';
|
||||
$strDatabases = 'Áàçû Äàííûõ';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Ïî óìîë÷àíèþ';
|
||||
$strDelete = 'Óäàëèòü';
|
||||
$strDeleted = 'Ðÿä áûë óäàëåí';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Íèñõîäÿùèé';
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'Display'; //to translate
|
||||
$strDoAQuery = 'Âûïîëíèòü "çàïðîñ ïî ïðèìåðó" (ñèìâîë ïîäñòàâíîâêè: "%")';
|
||||
$strDocu = 'Äîêóìåíòàöèÿ';
|
||||
$strDoYouReally = 'Âû äåéñòâèòåëüíî æåëàåòå ';
|
||||
$strDrop = 'Óíè÷òîæèòü';
|
||||
$strDropDB = 'Óíè÷òîæèòü ÁÄ ';
|
||||
$strDumpingData = 'Ñäàìïàòü äàííûå òàáëèöû';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Ïîëå";
|
||||
$strFields = "Ïîëÿ";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Ôóíêöèÿ";
|
||||
$strEdit = 'Ðåäàêòèðîâàòü';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Ïóñòîòà';
|
||||
$strEmptyResultSet = 'MySQL âåðíóëà ïóñòîé ðåçóëüòàò (ò.å. íîëü ðÿäîâ).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'çàêëþ÷åííûé â';
|
||||
$strEnd = 'Êîíåö';
|
||||
$strError = 'Îøèáêà';
|
||||
$strEscapedBy = 'çàâåðøàåìûå ÷åðåç';
|
||||
$strExtra = 'Äîïîëíèòåëüíî';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Ïîøåë";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Ïîëå';
|
||||
$strFields = 'Ïîëÿ';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Ôóíêöèÿ';
|
||||
|
||||
$strHasBeenAltered = "áûëà èçìåíåíà.";
|
||||
$strHasBeenCreated = "áûëà ñîçäàíà.";
|
||||
$strHasBeenDropped = "áûëà óíè÷òîæåíà.";
|
||||
$strHasBeenEmptied = "áûëà îïóñòîøåíà.";
|
||||
$strHome = "Ê íà÷àëó";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Õîñò";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Ïîøåë';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "Åñëè Âû æåëàåòå çàãðóçèòü òîëüêî íåêîòîðûå ñòîëáöû òàáëèöû, óêàæèòå ðàçäåëåííûé çàïÿòûìè ñïèñîê ïîëåé.";
|
||||
$strIndex = "Èíäåêñ";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Âñòàâèòü";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Âñòàâèòü â òàáëèöó";
|
||||
$strInsertNewRow = "Âñòàâèòü íîâûé ðÿä";
|
||||
$strInsertTextfiles = "Âñòàâèòü òåêñòîâûå ôàéëû â òàáëèöó";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'áûëà èçìåíåíà.';
|
||||
$strHasBeenCreated = 'áûëà ñîçäàíà.';
|
||||
$strHasBeenDropped = 'áûëà óíè÷òîæåíà.';
|
||||
$strHasBeenEmptied = 'áûëà îïóñòîøåíà.';
|
||||
$strHome = 'Ê íà÷àëó';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Õîñò';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Èìÿ êëþ÷à";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'Åñëè Âû æåëàåòå çàãðóçèòü òîëüêî íåêîòîðûå ñòîëáöû òàáëèöû, óêàæèòå ðàçäåëåííûé çàïÿòûìè ñïèñîê ïîëåé.';
|
||||
$strIndex = 'Èíäåêñ';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Âñòàâèòü';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Âñòàâèòü â òàáëèöó';
|
||||
$strInsertNewRow = 'Âñòàâèòü íîâûé ðÿä';
|
||||
$strInsertTextfiles = 'Âñòàâèòü òåêñòîâûå ôàéëû â òàáëèöó';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Äëèííà";
|
||||
$strLimitNumRows = "records per page"; //to translate
|
||||
$strLineFeed = "Ñèìâîë îêîí÷àíèÿ ëèíèè: \\n";
|
||||
$strLines = "Ëèíèè";
|
||||
$strLocationTextfile = "Ìåñòîðàñïîëîæåíèå òåêñòîâîãî ôàéëà";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Âûéòè èç ñèñòåìû";
|
||||
$strKeyname = 'Èìÿ êëþ÷à';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "Ìîäèôèêàöèè áûëè ñîõðàíåíû";
|
||||
$strModify = "Èçìåíèòü";
|
||||
$strMySQLReloaded = "MySQL ïåðåçàãðóæåíà.";
|
||||
$strMySQLSaid = "MySQL ñêàçàëà: ";
|
||||
$strMySQLShowProcess = "Ïîêàçàòü ïðîöåññû";
|
||||
$strMySQLShowStatus = "Ïîêàçàòü ñîñòîÿíèå MySQL";
|
||||
$strMySQLShowVars = "Ïîêàçàòü ñèñòåìíûå ïåðåìåííûå MySQL";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Äëèííà';
|
||||
$strLimitNumRows = 'records per page'; //to translate
|
||||
$strLineFeed = 'Ñèìâîë îêîí÷àíèÿ ëèíèè: \\n';
|
||||
$strLines = 'Ëèíèè';
|
||||
$strLocationTextfile = 'Ìåñòîðàñïîëîæåíèå òåêñòîâîãî ôàéëà';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Âûéòè èç ñèñòåìû';
|
||||
|
||||
$strName = "Èìÿ";
|
||||
$strNext = "Ñëåäóþùèé";
|
||||
$strNo = "Íåò";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Â ÁÄ íå îáíàðóæåíî òàáëèö.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Íîëü";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'Ìîäèôèêàöèè áûëè ñîõðàíåíû';
|
||||
$strModify = 'Èçìåíèòü';
|
||||
$strMySQLReloaded = 'MySQL ïåðåçàãðóæåíà.';
|
||||
$strMySQLSaid = 'MySQL ñêàçàëà: ';
|
||||
$strMySQLShowProcess = 'Ïîêàçàòü ïðîöåññû';
|
||||
$strMySQLShowStatus = 'Ïîêàçàòü ñîñòîÿíèå MySQL';
|
||||
$strMySQLShowVars = 'Ïîêàçàòü ñèñòåìíûå ïåðåìåííûå MySQL';
|
||||
|
||||
$strOftenQuotation = "Îáû÷íî êàâû÷êè. ÏÎ ÂÛÁÎÐÓ îçíà÷àåò, ÷òî òîëüêî ïîëÿ char è varchar çàêëþ÷àþòñÿ â êàâû÷êè.";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Ïî âûáîðó. Êîíòðîëèðóåò êàê ÷èòàòü èëè ïèñàòü ñïåöèàëüíûå ñèìâîëû.";
|
||||
$strOptionally = "ÏÎ ÂÛÁÎÐÓ";
|
||||
$strOr = "Èëè";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Èìÿ';
|
||||
$strNext = 'Ñëåäóþùèé';
|
||||
$strNo = 'Íåò';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Â ÁÄ íå îáíàðóæåíî òàáëèö.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Íîëü';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Íà÷àëî";
|
||||
$strPrevious = "Ïðåäûäóùèé";
|
||||
$strPrimary = "Ïåðâè÷íûé";
|
||||
$strPrimaryKey = "Ïåðâè÷íûé êëþ÷";
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "ïðèâåëà ê îøèáêå.";
|
||||
$strProperties = "Ñâîéñòâà";
|
||||
$strOftenQuotation = 'Îáû÷íî êàâû÷êè. ÏÎ ÂÛÁÎÐÓ îçíà÷àåò, ÷òî òîëüêî ïîëÿ char è varchar çàêëþ÷àþòñÿ â êàâû÷êè.';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Ïî âûáîðó. Êîíòðîëèðóåò êàê ÷èòàòü èëè ïèñàòü ñïåöèàëüíûå ñèìâîëû.';
|
||||
$strOptionally = 'ÏÎ ÂÛÁÎÐÓ';
|
||||
$strOr = 'Èëè';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Çàïðîñ ïî ïðèìåðó";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Íà÷àëî';
|
||||
$strPrevious = 'Ïðåäûäóùèé';
|
||||
$strPrimary = 'Ïåðâè÷íûé';
|
||||
$strPrimaryKey = 'Ïåðâè÷íûé êëþ÷';
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'ïðèâåëà ê îøèáêå.';
|
||||
$strProperties = 'Ñâîéñòâà';
|
||||
|
||||
$strReadTheDocs = "Ïî÷èòàòü äîêóìåíòàöèþ";
|
||||
$strRecords = "Çàïèñè";
|
||||
$strReloadFailed = "Íå óäàëîñü ïåðåçàãðóçèòü MySQL.";
|
||||
$strReloadMySQL = "Ïåðåçàãðóçèòü MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Ïåðåèìåíîâàòü òàáëèöó â";
|
||||
$strRenameTableOK = "Òàáëèöà %s áûëà ïåðåèìåíîâàíà â %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "Çàìåñòèòü";
|
||||
$strReplaceTable = "Çàìåñòèòü äàííûå òàáëèöû äàííûìè èç ôàéëà";
|
||||
$strReset = "Ïåðåóñòàíîâèòü";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rows starting from"; //to translate
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "çàïóùåíî íà ";
|
||||
$strRunQuery = "Âûïîëíèòü Çàïðîñ";
|
||||
$strRunSQLQuery = "Âûïîëíèòü SQL çàïðîñ(û) íà ÁÄ ";
|
||||
$strQBE = 'Çàïðîñ ïî ïðèìåðó';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Ñîõðàíèòü";
|
||||
$strSelect = "Âûáðàòü";
|
||||
$strSelectFields = "Âûáðàòü ïîëÿ (ìèíèìóì îäíî):";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "ïîñëàòü";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Ïîêàçàòü";
|
||||
$strShowingRecords = "Ïîêàçûâàåò çàïèñè ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Îòñîðòèðîâàòü";
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-çàïðîñ";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV äàííûå";
|
||||
$strStrucData = "Ñòðóêòóðà è äàííûå";
|
||||
$strStrucDrop = "Äîáàâèòü 'óäàëèòü òàáëèöó'";
|
||||
$strStrucOnly = "Òîëüêî ñòðóêòóðó";
|
||||
$strSubmit = "Âûïîëíèòü";
|
||||
$strSuccess = "Âàø SQL-çàïðîñ áûë óñïåøíî âûïîëíåí";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'Ïî÷èòàòü äîêóìåíòàöèþ';
|
||||
$strRecords = 'Çàïèñè';
|
||||
$strReloadFailed = 'Íå óäàëîñü ïåðåçàãðóçèòü MySQL.';
|
||||
$strReloadMySQL = 'Ïåðåçàãðóçèòü MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Ïåðåèìåíîâàòü òàáëèöó â';
|
||||
$strRenameTableOK = 'Òàáëèöà %s áûëà ïåðåèìåíîâàíà â %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'Çàìåñòèòü';
|
||||
$strReplaceTable = 'Çàìåñòèòü äàííûå òàáëèöû äàííûìè èç ôàéëà';
|
||||
$strReset = 'Ïåðåóñòàíîâèòü';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rows starting from'; //to translate
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'çàïóùåíî íà ';
|
||||
$strRunQuery = 'Âûïîëíèòü Çàïðîñ';
|
||||
$strRunSQLQuery = 'Âûïîëíèòü SQL çàïðîñ(û) íà ÁÄ ';
|
||||
|
||||
$strTable = "òàáëèöà ";
|
||||
$strTableComments = "Table comments"; //to translate
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Ñòðóêòóðà òàáëèöû äëÿ òàáëèöû";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "Çàâåðøàåòñÿ ÷åðåç";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "Ñîäåðæèìîå ôàéëà áûëî èìïîðòèðîâàíî.";
|
||||
$strTheContents = "Ñîäåðæèìîå ôàéëà çàìåùàåò ñîäåðæèìîå òàáëèöû äëÿ ðÿäîâ ñ èäåíòè÷íûìè ïåðâè÷íûìè èëè óíèêàëüíûìè êëþ÷àìè.";
|
||||
$strTheTerminator = "Ñèìâîë îêîí÷àíèÿ ïîëåé.";
|
||||
$strTotal = "âñåãî";
|
||||
$strType = "Òèï";
|
||||
$strSave = 'Ñîõðàíèòü';
|
||||
$strSelect = 'Âûáðàòü';
|
||||
$strSelectFields = 'Âûáðàòü ïîëÿ (ìèíèìóì îäíî):';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = 'ïîñëàòü';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Ïîêàçàòü';
|
||||
$strShowingRecords = 'Ïîêàçûâàåò çàïèñè ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Îòñîðòèðîâàòü';
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-çàïðîñ';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV äàííûå';
|
||||
$strStrucData = 'Ñòðóêòóðà è äàííûå';
|
||||
$strStrucDrop = 'Äîáàâèòü \'óäàëèòü òàáëèöó\'';
|
||||
$strStrucOnly = 'Òîëüêî ñòðóêòóðó';
|
||||
$strSubmit = 'Âûïîëíèòü';
|
||||
$strSuccess = 'Âàø SQL-çàïðîñ áûë óñïåøíî âûïîëíåí';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Óíèêàëüíîå";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Äîïîëíèòü Çàïðîñ";
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Èñïîëüçîâàòü òàáëèöû";
|
||||
$strTable = 'òàáëèöà ';
|
||||
$strTableComments = 'Table comments'; //to translate
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Ñòðóêòóðà òàáëèöû äëÿ òàáëèöû';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'Çàâåðøàåòñÿ ÷åðåç';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'Ñîäåðæèìîå ôàéëà áûëî èìïîðòèðîâàíî.';
|
||||
$strTheContents = 'Ñîäåðæèìîå ôàéëà çàìåùàåò ñîäåðæèìîå òàáëèöû äëÿ ðÿäîâ ñ èäåíòè÷íûìè ïåðâè÷íûìè èëè óíèêàëüíûìè êëþ÷àìè.';
|
||||
$strTheTerminator = 'Ñèìâîë îêîí÷àíèÿ ïîëåé.';
|
||||
$strTotal = 'âñåãî';
|
||||
$strType = 'Òèï';
|
||||
|
||||
$strValue = "Çíà÷åíèå";
|
||||
$strViewDump = "Ïðîñìîòðåòü äàìï (ñõåìó) òàáëèöû";
|
||||
$strViewDumpDB = "Ïðîñìîòðåòü äàìï (ñõåìó) ÁÄ";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Óíèêàëüíîå';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Äîïîëíèòü Çàïðîñ';
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Èñïîëüçîâàòü òàáëèöû';
|
||||
|
||||
$strWelcome = "Äîáðî ïîæàëîâàòü â ";
|
||||
$strWrongUser = "Îøèáî÷íûé ëîãèí/ïàðîëü.  äîñòóïå îòêàçàíî.";
|
||||
$strValue = 'Çíà÷åíèå';
|
||||
$strViewDump = 'Ïðîñìîòðåòü äàìï (ñõåìó) òàáëèöû';
|
||||
$strViewDumpDB = 'Ïðîñìîòðåòü äàìï (ñõåìó) ÁÄ';
|
||||
|
||||
$strYes = "Äà";
|
||||
$strWelcome = 'Äîáðî ïîæàëîâàòü â ';
|
||||
$strWrongUser = 'Îøèáî÷íûé ëîãèí/ïàðîëü.  äîñòóïå îòêàçàíî.';
|
||||
|
||||
$strYes = 'Äà';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,284 +1,286 @@
|
||||
<?php
|
||||
/* $Id: slovak-iso.inc.php,v 1.1 2001/07/24 17:15:00 lubos klokner <erkac@vault-tec.sk> */
|
||||
|
||||
$charset = "iso-8859-2";
|
||||
$left_font_family = "verdana CE, Arial CE, verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "verdana CE, Arial CE, helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = " ";
|
||||
$number_decimal_separator = ",";
|
||||
$byteUnits = array("Bajtov", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-2';
|
||||
$left_font_family = 'verdana CE, Arial CE, verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'verdana CE, Arial CE, helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ' ';
|
||||
$number_decimal_separator = ',';
|
||||
$byteUnits = array('Bajtov', 'KB', 'MB', 'GB');
|
||||
|
||||
|
||||
$strAccessDenied = "Prístup zamietnutý";
|
||||
$strAction = "Akcia";
|
||||
$strAddDeleteColumn = "Pridať/Odobrať polia stĺpcov";
|
||||
$strAddDeleteRow = "Pridať/Odobrať kritéria riadku";
|
||||
$strAddNewField = "Pridať nové pole";
|
||||
$strAddPriv = "Pridať nové privilégium";
|
||||
$strAddPrivMessage = "Privilégium bolo pridané.";
|
||||
$strAddSearchConditions = "Pridať vyhľadávacie parametre (obsah dotazu po \"where\" príkaze):";
|
||||
$strAddUser = "Pridať nového používateľa";
|
||||
$strAddUserMessage = "Používateľ bol pridaný.";
|
||||
$strAfter = "Po";
|
||||
$strAll = "Všetko";
|
||||
$strAlterOrderBy = "Zmeniť poradie tabuľky podľa";
|
||||
$strAnalyzeTable = "Analyzovať tabuľku";
|
||||
$strAnd = "a";
|
||||
$strAnIndex = "Bol pridaný index na ";
|
||||
$strAny = "Akýkoľvek";
|
||||
$strAnyColumn = "Akýkoľvek stĺpec";
|
||||
$strAnyDatabase = "Akákoľvek databáza";
|
||||
$strAnyHost = "Akýkoľvek hostiteľ";
|
||||
$strAnyTable = "Akákoľvek tabuľka";
|
||||
$strAnyUser = "Akykoľvek používateľ";
|
||||
$strAPrimaryKey = "Bol pridaný primárny kľúč na ";
|
||||
$strAscending = "Vzostupne";
|
||||
$strAtBeginningOfTable = "Na začiatku tabuľky";
|
||||
$strAtEndOfTable = "Na konci tabuľky";
|
||||
$strAttr = "Atribúty";
|
||||
$strAccessDenied = 'Prístup zamietnutý';
|
||||
$strAction = 'Akcia';
|
||||
$strAddDeleteColumn = 'Pridať/Odobrať polia stĺpcov';
|
||||
$strAddDeleteRow = 'Pridať/Odobrať kritéria riadku';
|
||||
$strAddNewField = 'Pridať nové pole';
|
||||
$strAddPriv = 'Pridať nové privilégium';
|
||||
$strAddPrivMessage = 'Privilégium bolo pridané.';
|
||||
$strAddSearchConditions = 'Pridať vyhľadávacie parametre (obsah dotazu po "where" príkaze):';
|
||||
$strAddUser = 'Pridať nového používateľa';
|
||||
$strAddUserMessage = 'Používateľ bol pridaný.';
|
||||
$strAfter = 'Po';
|
||||
$strAll = 'Všetko';
|
||||
$strAlterOrderBy = 'Zmeniť poradie tabuľky podľa';
|
||||
$strAnalyzeTable = 'Analyzovať tabuľku';
|
||||
$strAnd = 'a';
|
||||
$strAnIndex = 'Bol pridaný index na ';
|
||||
$strAny = 'Akýkoľvek';
|
||||
$strAnyColumn = 'Akýkoľvek stĺpec';
|
||||
$strAnyDatabase = 'Akákoľvek databáza';
|
||||
$strAnyHost = 'Akýkoľvek hostiteľ';
|
||||
$strAnyTable = 'Akákoľvek tabuľka';
|
||||
$strAnyUser = 'Akykoľvek používateľ';
|
||||
$strAPrimaryKey = 'Bol pridaný primárny kľúč na ';
|
||||
$strAscending = 'Vzostupne';
|
||||
$strAtBeginningOfTable = 'Na začiatku tabuľky';
|
||||
$strAtEndOfTable = 'Na konci tabuľky';
|
||||
$strAttr = 'Atribúty';
|
||||
|
||||
$strBack = "Späť";
|
||||
$strBinary = "Binárny";
|
||||
$strBinaryDoNotEdit = "Binárny - neupravujte ";
|
||||
$strBookmarkLabel = "Názov";
|
||||
$strBookmarkQuery = "Obľúbený SQL dotaz";
|
||||
$strBookmarkThis = "Pridať tento SQL dotaz do obľúbených";
|
||||
$strBookmarkView = "Iba prezrieť";
|
||||
$strBrowse = "Prechádzať";
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strBack = 'Späť';
|
||||
$strBinary = 'Binárny';
|
||||
$strBinaryDoNotEdit = 'Binárny - neupravujte ';
|
||||
$strBookmarkLabel = 'Názov';
|
||||
$strBookmarkQuery = 'Obľúbený SQL dotaz';
|
||||
$strBookmarkThis = 'Pridať tento SQL dotaz do obľúbených';
|
||||
$strBookmarkView = 'Iba prezrieť';
|
||||
$strBrowse = 'Prechádzať';
|
||||
$strBzip = '"bzipped"';
|
||||
|
||||
$strCantLoadMySQL = "nieje možné nahrať rozšírenie pre MySQL,<br>prosím skontrolujte konfiguráciu PHP.";
|
||||
$strCarriage = "Návrat vozíku (Carriage return): \\r";
|
||||
$strChange = "Zmeniť";
|
||||
$strCheckAll = "Označiť všetko";
|
||||
$strCheckDbPriv = "Skontrolovať privilégia databázy";
|
||||
$strCheckTable = "Skontrolovať tabuľku";
|
||||
$strColumn = "Stĺpec";
|
||||
$strColumnEmpty = "Názvy stĺpcov sú prázdne!";
|
||||
$strColumnNames = "Názvy stĺpcov";
|
||||
$strCompleteInserts = "Úplné vloženie";
|
||||
$strConfirm = "Skutočne si želáte toto vykonať?";
|
||||
$strCopyTable = "Skopírovať tabuľku do:";
|
||||
$strCopyTableOK = "Tabuľka %s bola skorírovaná do %s.";
|
||||
$strCreate = "Vytvoriť";
|
||||
$strCreateNewDatabase = "Vytvoriť novú databázu";
|
||||
$strCreateNewTable = "Vytvoriť novú tabuľku v databáze ";
|
||||
$strCriteria = "Kritéria";
|
||||
$strCantLoadMySQL = 'nieje možné nahrať rozšírenie pre MySQL,<br />prosím skontrolujte konfiguráciu PHP.';
|
||||
$strCarriage = 'Návrat vozíku (Carriage return): \\r';
|
||||
$strChange = 'Zmeniť';
|
||||
$strCheckAll = 'Označiť všetko';
|
||||
$strCheckDbPriv = 'Skontrolovať privilégia databázy';
|
||||
$strCheckTable = 'Skontrolovať tabuľku';
|
||||
$strColumn = 'Stĺpec';
|
||||
$strColumnEmpty = 'Názvy stĺpcov sú prázdne!';
|
||||
$strColumnNames = 'Názvy stĺpcov';
|
||||
$strCompleteInserts = 'Úplné vloženie';
|
||||
$strConfirm = 'Skutočne si želáte toto vykonať?';
|
||||
$strCopyTable = 'Skopírovať tabuľku do:';
|
||||
$strCopyTableOK = 'Tabuľka %s bola skorírovaná do %s.';
|
||||
$strCreate = 'Vytvoriť';
|
||||
$strCreateNewDatabase = 'Vytvoriť novú databázu';
|
||||
$strCreateNewTable = 'Vytvoriť novú tabuľku v databáze ';
|
||||
$strCriteria = 'Kritéria';
|
||||
|
||||
$strData = "Dáta";
|
||||
$strDatabase = "Databáza ";
|
||||
$strDatabases = "databáz(y)";
|
||||
$strDataOnly = "Iba dáta";
|
||||
$strDbEmpty = "Názov databázy je prázdny!";
|
||||
$strDefault = "Predvolené";
|
||||
$strDelete = "Zmazať";
|
||||
$strDeleted = "Riadok bol zmazaný";
|
||||
$strDeleteFailed = "Mazanie bolo neúspešné!";
|
||||
$strDeletePassword = "Zmazať heslo";
|
||||
$strDeleteUserMessage = "Bol zmazaný používateľ";
|
||||
$strDelPassMessage = "Bolo zmazané heslo pre";
|
||||
$strDescending = "Zostupne";
|
||||
$strDisableMagicQuotes = "<b>Varovanie:</b> Máte zapnuté magic_quotes_gpc vo Vašej konfigurácii PHP. Táto verzia PhpMyAdmin-a nemôže funguvať správane s týmto nastavením. Prosím pozrite sa do manuálu konfigurácie PHP ako toto nastavenie zmeniť.";
|
||||
$strDisplay = "Zobraziť";
|
||||
$strDoAQuery = "Vykonať \"dotaz podľa príkladu\" (wildcard: \"%\")";
|
||||
$strDocu = "Dokumentácia";
|
||||
$strDoYouReally = "Skutočne chcete vykonať príkaz ";
|
||||
$strDrop = "Odstrániť";
|
||||
$strDropDB = "Odstrániť databázu ";
|
||||
$strDumpingData = "Dampujem dáta pre tabuľku";
|
||||
$strDynamic = "dynamic";
|
||||
$strData = 'Dáta';
|
||||
$strDatabase = 'Databáza ';
|
||||
$strDatabases = 'databáz(y)';
|
||||
$strDataOnly = 'Iba dáta';
|
||||
$strDbEmpty = 'Názov databázy je prázdny!';
|
||||
$strDefault = 'Predvolené';
|
||||
$strDelete = 'Zmazať';
|
||||
$strDeleted = 'Riadok bol zmazaný';
|
||||
$strDeleteFailed = 'Mazanie bolo neúspešné!';
|
||||
$strDeletePassword = 'Zmazať heslo';
|
||||
$strDeleteUserMessage = 'Bol zmazaný používateľ';
|
||||
$strDelPassMessage = 'Bolo zmazané heslo pre';
|
||||
$strDescending = 'Zostupne';
|
||||
$strDisableMagicQuotes = '<b>Varovanie:</b> Máte zapnuté magic_quotes_gpc vo Vašej konfigurácii PHP. Táto verzia PhpMyAdmin-a nemôže funguvať správane s týmto nastavením. Prosím pozrite sa do manuálu konfigurácie PHP ako toto nastavenie zmeniť.';
|
||||
$strDisplay = 'Zobraziť';
|
||||
$strDoAQuery = 'Vykonať "dotaz podľa príkladu" (wildcard: "%")';
|
||||
$strDocu = 'Dokumentácia';
|
||||
$strDoYouReally = 'Skutočne chcete vykonať príkaz ';
|
||||
$strDrop = 'Odstrániť';
|
||||
$strDropDB = 'Odstrániť databázu ';
|
||||
$strDumpingData = 'Dampujem dáta pre tabuľku';
|
||||
$strDynamic = 'dynamic';
|
||||
|
||||
$strEdit = "Upraviť";
|
||||
$strEditPrivileges = "Upraviť privilégia";
|
||||
$strEffective = "Efektívny";
|
||||
$strEmpty = "Vyprázdniť";
|
||||
$strEmptyResultSet = "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov).";
|
||||
$strEnableMagicQuotes = "<b>Varovanie:</b> Nemáte zapnuté magic_quotes_gpc vo Vašej konfigurácii PHP. PhpMyAdmin to potrebuje pre správnu funkčnosť. Prosím pozrite sa do manuálu konfigurácie PHP ako toto nastavenie zmeniť.";
|
||||
$strEnclosedBy = "uzatvorené do";
|
||||
$strEnd = "Koniec";
|
||||
$strEnglishPrivileges = " Poznámka: názvy MySQL privilégií sú uvádzané v angličtine. ";
|
||||
$strError = "Chyba";
|
||||
$strEscapedBy = "uvedené pomocou";
|
||||
$strExtra = "Extra";
|
||||
$strEdit = 'Upraviť';
|
||||
$strEditPrivileges = 'Upraviť privilégia';
|
||||
$strEffective = 'Efektívny';
|
||||
$strEmpty = 'Vyprázdniť';
|
||||
$strEmptyResultSet = 'MySQL vrátil prázdny výsledok (tj. nulový počet riadkov).';
|
||||
$strEnableMagicQuotes = '<b>Varovanie:</b> Nemáte zapnuté magic_quotes_gpc vo Vašej konfigurácii PHP. PhpMyAdmin to potrebuje pre správnu funkčnosť. Prosím pozrite sa do manuálu konfigurácie PHP ako toto nastavenie zmeniť.';
|
||||
$strEnclosedBy = 'uzatvorené do';
|
||||
$strEnd = 'Koniec';
|
||||
$strEnglishPrivileges = ' Poznámka: názvy MySQL privilégií sú uvádzané v angličtine. ';
|
||||
$strError = 'Chyba';
|
||||
$strEscapedBy = 'uvedené pomocou';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strField = "Pole";
|
||||
$strFields = "Polia";
|
||||
$strFixed = "pevný";
|
||||
$strFormat = "Formát";
|
||||
$strFunction = "Funkcia";
|
||||
$strField = 'Pole';
|
||||
$strFields = 'Polia';
|
||||
$strFixed = 'pevný';
|
||||
$strFormat = 'Formát';
|
||||
$strFunction = 'Funkcia';
|
||||
|
||||
$strGenTime = "Vygenerované:";
|
||||
$strGo = "Vykonaj";
|
||||
$strGrants = "Privilégia";
|
||||
$strGzip = "\"gzip-ované\"";
|
||||
$strGenTime = 'Vygenerované:';
|
||||
$strGo = 'Vykonaj';
|
||||
$strGrants = 'Privilégia';
|
||||
$strGzip = '"gzip-ované"';
|
||||
|
||||
$strHasBeenAltered = "bola zmenená.";
|
||||
$strHasBeenCreated = "bola vytvorená.";
|
||||
$strHasBeenDropped = "bola zmazaná.";
|
||||
$strHasBeenEmptied = "bola vyprázdnená.";
|
||||
$strHome = "Domov";
|
||||
$strHomepageOfficial = "Oficiálne stránky phpMyAdmin-a";
|
||||
$strHomepageSourceforge = "Download stránka phpMyAdmin-a (Sourceforge)";
|
||||
$strHost = "Hostitel";
|
||||
$strHostEmpty = "Názov hostitela je prázdny!";
|
||||
$strHasBeenAltered = 'bola zmenená.';
|
||||
$strHasBeenCreated = 'bola vytvorená.';
|
||||
$strHasBeenDropped = 'bola zmazaná.';
|
||||
$strHasBeenEmptied = 'bola vyprázdnená.';
|
||||
$strHome = 'Domov';
|
||||
$strHomepageOfficial = 'Oficiálne stránky phpMyAdmin-a';
|
||||
$strHomepageSourceforge = 'Download stránka phpMyAdmin-a (Sourceforge)';
|
||||
$strHost = 'Hostitel';
|
||||
$strHostEmpty = 'Názov hostitela je prázdny!';
|
||||
|
||||
$strIfYouWish = "Ak si zeláte nahrať iba určité stĺpce tabuľky, špecifikujte ich ako zoznam polí oddelený čiarkou.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexy";
|
||||
$strInsert = "Vložiť";
|
||||
$strInsertAsNewRow = "Vložiť ako nový riadok";
|
||||
$strInsertIntoTable = "Vložiť do tabuľky";
|
||||
$strInsertNewRow = "Vložiť nový riadok";
|
||||
$strInsertTextfiles = "Vložiť textové súbory do tabuľky";
|
||||
$strInUse = "práve sa používa";
|
||||
$strIfYouWish = 'Ak si zeláte nahrať iba určité stĺpce tabuľky, špecifikujte ich ako zoznam polí oddelený čiarkou.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexy';
|
||||
$strInsert = 'Vložiť';
|
||||
$strInsertAsNewRow = 'Vložiť ako nový riadok';
|
||||
$strInsertIntoTable = 'Vložiť do tabuľky';
|
||||
$strInsertNewRow = 'Vložiť nový riadok';
|
||||
$strInsertTextfiles = 'Vložiť textové súbory do tabuľky';
|
||||
$strInUse = 'práve sa používa';
|
||||
|
||||
$strKeyname = "Kľúčový názov";
|
||||
$strKill = "Zabiť";
|
||||
$strKeyname = 'Kľúčový názov';
|
||||
$strKill = 'Zabiť';
|
||||
|
||||
$strLength = "Dĺžka";
|
||||
$strLengthSet = "Dĺžka/Nastaviť";
|
||||
$strLimitNumRows = "záznamov na stránku";
|
||||
$strLineFeed = "Ukončenie riadku (Linefeed): \\n";
|
||||
$strLines = "Riadkov";
|
||||
$strLocationTextfile = "Lokácia textového súboru";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Odhlásiť sa";
|
||||
$strLength = 'Dĺžka';
|
||||
$strLengthSet = 'Dĺžka/Nastaviť';
|
||||
$strLimitNumRows = 'záznamov na stránku';
|
||||
$strLineFeed = 'Ukončenie riadku (Linefeed): \\n';
|
||||
$strLines = 'Riadkov';
|
||||
$strLocationTextfile = 'Lokácia textového súboru';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Odhlásiť sa';
|
||||
|
||||
$strModifications = "Zmeny boli uložené";
|
||||
$strModify = "Zmeniť";
|
||||
$strMySQLReloaded = "MySQL znovu-načítaná.";
|
||||
$strMySQLSaid = "MySQL hlási: ";
|
||||
$strMySQLShowProcess = "Zobraziť procesy";
|
||||
$strMySQLShowStatus = "Zobraziť MySQL informácie o behu";
|
||||
$strMySQLShowVars = "Zobraziť MySQL systémové premenné";
|
||||
$strModifications = 'Zmeny boli uložené';
|
||||
$strModify = 'Zmeniť';
|
||||
$strMySQLReloaded = 'MySQL znovu-načítaná.';
|
||||
$strMySQLSaid = 'MySQL hlási: ';
|
||||
$strMySQLShowProcess = 'Zobraziť procesy';
|
||||
$strMySQLShowStatus = 'Zobraziť MySQL informácie o behu';
|
||||
$strMySQLShowVars = 'Zobraziť MySQL systémové premenné';
|
||||
|
||||
$strName = "Názov";
|
||||
$strNbRecords = "Počet záznamov";
|
||||
$strNext = "Ďalší";
|
||||
$strNo = "Nie";
|
||||
$strNoPassword = "Žiadne heslo";
|
||||
$strNoPrivileges = "Žiadne privilégia";
|
||||
$strNoRights = "Nemáte dostatočné práva na vykonanie tejto akcie!";
|
||||
$strNoTablesFound = "Neboli nájdené žiadne tabuľky v tejto datábaze.";
|
||||
$strNotNumber = "Toto nieje číslo!";
|
||||
$strNotValidNumber = " nieje platné číslo riadku!";
|
||||
$strNoUsersFound = "Nebol nájdený žiadny používateľ.";
|
||||
$strNull = "Nulový";
|
||||
$strNumberIndexes = " Počet rozšírených indexov ";
|
||||
$strName = 'Názov';
|
||||
$strNbRecords = 'Počet záznamov';
|
||||
$strNext = 'Ďalší';
|
||||
$strNo = 'Nie';
|
||||
$strNoPassword = 'Žiadne heslo';
|
||||
$strNoPrivileges = 'Žiadne privilégia';
|
||||
$strNoRights = 'Nemáte dostatočné práva na vykonanie tejto akcie!';
|
||||
$strNoTablesFound = 'Neboli nájdené žiadne tabuľky v tejto datábaze.';
|
||||
$strNotNumber = 'Toto nieje číslo!';
|
||||
$strNotValidNumber = ' nieje platné číslo riadku!';
|
||||
$strNoUsersFound = 'Nebol nájdený žiadny používateľ.';
|
||||
$strNull = 'Nulový';
|
||||
$strNumberIndexes = ' Počet rozšírených indexov ';
|
||||
|
||||
$strOffSet = "Offset";
|
||||
$strOftenQuotation = "Často uvodzujúce znaky. Voliteľne znamena, že iba polia typu char a varchar sú uzatvorené do \"uzatváracích\" znakov.";
|
||||
$strOptimizeTable = "Optimalozovať tabuľku";
|
||||
$strOptionalControls = "Volitelné. Určuje ako zapisovať alebo čítať špeciálne znaky.";
|
||||
$strOptionally = "Voliteľne";
|
||||
$strOr = "alebo";
|
||||
$strOverhead = "Naviac";
|
||||
$strOffSet = 'Offset';
|
||||
$strOftenQuotation = 'Často uvodzujúce znaky. Voliteľne znamena, že iba polia typu char a varchar sú uzatvorené do "uzatváracích" znakov.';
|
||||
$strOptimizeTable = 'Optimalozovať tabuľku';
|
||||
$strOptionalControls = 'Volitelné. Určuje ako zapisovať alebo čítať špeciálne znaky.';
|
||||
$strOptionally = 'Voliteľne';
|
||||
$strOr = 'alebo';
|
||||
$strOverhead = 'Naviac';
|
||||
|
||||
$strPassword = "Heslo";
|
||||
$strPasswordEmpty = "Heslo je prázdne!";
|
||||
$strPasswordNotSame = "Heslá sa nezhodujú!";
|
||||
$strPHPVersion = "Verzia PHP";
|
||||
$strPos1 = "Začiatok";
|
||||
$strPrevious = "Predchádzajúci";
|
||||
$strPrimary = "Primárny";
|
||||
$strPrimaryKey = "Primárny kľúč";
|
||||
$strPrinterFriendly = "Verzia pre tlač";
|
||||
$strPrintView = "Náhľad k tlači";
|
||||
$strPrivileges = "Privilégia";
|
||||
$strProducedAnError = "vytvoril chybu.";
|
||||
$strProperties = "Vlastnosti";
|
||||
$strPassword = 'Heslo';
|
||||
$strPasswordEmpty = 'Heslo je prázdne!';
|
||||
$strPasswordNotSame = 'Heslá sa nezhodujú!';
|
||||
$strPHPVersion = 'Verzia PHP';
|
||||
$strPos1 = 'Začiatok';
|
||||
$strPrevious = 'Predchádzajúci';
|
||||
$strPrimary = 'Primárny';
|
||||
$strPrimaryKey = 'Primárny kľúč';
|
||||
$strPrinterFriendly = 'Verzia pre tlač';
|
||||
$strPrintView = 'Náhľad k tlači';
|
||||
$strPrivileges = 'Privilégia';
|
||||
$strProducedAnError = 'vytvoril chybu.';
|
||||
$strProperties = 'Vlastnosti';
|
||||
|
||||
$strQBE = "Dotaz podľa príkladu";
|
||||
$strQBEDel = "Zmazať";
|
||||
$strQBEIns = "Vložiť";
|
||||
$strQBE = 'Dotaz podľa príkladu';
|
||||
$strQBEDel = 'Zmazať';
|
||||
$strQBEIns = 'Vložiť';
|
||||
|
||||
$strReadTheDocs = "Čítať dokumentáciu";
|
||||
$strRecords = "Záznamov";
|
||||
$strReloadFailed = "Znovu-načítanie MySQL bolo neúspešné.";
|
||||
$strReloadMySQL = "Znovu-načítať MySQL";
|
||||
$strRememberReload = "Nezabudnite znovu-načítať MySQL server.";
|
||||
$strRenameTable = "Premenovať tabuľku na";
|
||||
$strRenameTableOK = "Tabuľka %s bola premenovaná na %s";
|
||||
$strRepairTable = "Opraviť tabuľku";
|
||||
$strReplace = "Nahradiť";
|
||||
$strReplaceTable = "Nahradiť dáta v tabuľke súborom";
|
||||
$strReset = "Pôvodné (Reset)";
|
||||
$strReType = "Napísať znova";
|
||||
$strRevoke = "Zrusiť";
|
||||
$strRevokeGrant = "Zrušiť polovenie pridelovať privilégia";
|
||||
$strRevokeGrantMessage = "Bolo zrušené právo pridelovať privilégia pre";
|
||||
$strRevokeMessage = "Boli zrušené privilégia pre";
|
||||
$strRevokePriv = "Zrušiť privilégia";
|
||||
$strRowLength = "Dĺžka riadku";
|
||||
$strRows = "Riadkov";
|
||||
$strRowsFrom = "riadky začínajú od";
|
||||
$strRowSize = " Veľkosť riadku ";
|
||||
$strRowsStatistic = "Štatistika riadku";
|
||||
$strRunning = "beži na ";
|
||||
$strRunQuery = "Odošli dotaz";
|
||||
$strRunSQLQuery = "Spustiť SQL dotaz(y) v databáze ";
|
||||
$strReadTheDocs = 'Čítať dokumentáciu';
|
||||
$strRecords = 'Záznamov';
|
||||
$strReloadFailed = 'Znovu-načítanie MySQL bolo neúspešné.';
|
||||
$strReloadMySQL = 'Znovu-načítať MySQL';
|
||||
$strRememberReload = 'Nezabudnite znovu-načítať MySQL server.';
|
||||
$strRenameTable = 'Premenovať tabuľku na';
|
||||
$strRenameTableOK = 'Tabuľka %s bola premenovaná na %s';
|
||||
$strRepairTable = 'Opraviť tabuľku';
|
||||
$strReplace = 'Nahradiť';
|
||||
$strReplaceTable = 'Nahradiť dáta v tabuľke súborom';
|
||||
$strReset = 'Pôvodné (Reset)';
|
||||
$strReType = 'Napísať znova';
|
||||
$strRevoke = 'Zrusiť';
|
||||
$strRevokeGrant = 'Zrušiť polovenie pridelovať privilégia';
|
||||
$strRevokeGrantMessage = 'Bolo zrušené právo pridelovať privilégia pre';
|
||||
$strRevokeMessage = 'Boli zrušené privilégia pre';
|
||||
$strRevokePriv = 'Zrušiť privilégia';
|
||||
$strRowLength = 'Dĺžka riadku';
|
||||
$strRows = 'Riadkov';
|
||||
$strRowsFrom = 'riadky začínajú od';
|
||||
$strRowSize = ' Veľkosť riadku ';
|
||||
$strRowsStatistic = 'Štatistika riadku';
|
||||
$strRunning = 'beži na ';
|
||||
$strRunQuery = 'Odošli dotaz';
|
||||
$strRunSQLQuery = 'Spustiť SQL dotaz(y) v databáze ';
|
||||
|
||||
$strSave = "Uložiť";
|
||||
$strSelect = "Vybrať";
|
||||
$strSelectFields = "Zvoliť pole (najmenej jedno):";
|
||||
$strSelectNumRows = "v dotaze";
|
||||
$strSend = "Pošli";
|
||||
$strSequence = "Seq.";
|
||||
$strServerVersion = "Verzia serveru";
|
||||
$strShow = "Ukázať";
|
||||
$strShowingRecords = "Ukázať záznamy ";
|
||||
$strSingly = "(po jednom)";
|
||||
$strSize = "Veľkosť";
|
||||
$strSort = "Triediť";
|
||||
$strSpaceUsage = "Zabrané miesto";
|
||||
$strSQLQuery = "SQL dotaz";
|
||||
$strStatement = "Údaj";
|
||||
$strStrucCSV = "CSV dáta";
|
||||
$strStrucData = "Štruktúru a dáta";
|
||||
$strStrucDrop = "Pridaj 'vymaž tabuľku'";
|
||||
$strStrucOnly = "Iba štruktúru";
|
||||
$strSubmit = "Odošli";
|
||||
$strSuccess = "SQL dotaz bol úspešne vykonaný";
|
||||
$strSum = "Celkom";
|
||||
$strSave = 'Uložiť';
|
||||
$strSelect = 'Vybrať';
|
||||
$strSelectFields = 'Zvoliť pole (najmenej jedno):';
|
||||
$strSelectNumRows = 'v dotaze';
|
||||
$strSend = 'Pošli';
|
||||
$strSequence = 'Seq.';
|
||||
$strServerVersion = 'Verzia serveru';
|
||||
$strShow = 'Ukázať';
|
||||
$strShowingRecords = 'Ukázať záznamy ';
|
||||
$strShowThisQuery = ' Zobraziť tento dotaz znovu ';
|
||||
$strSingly = '(po jednom)';
|
||||
$strSize = 'Veľkosť';
|
||||
$strSort = 'Triediť';
|
||||
$strSpaceUsage = 'Zabrané miesto';
|
||||
$strSQLQuery = 'SQL dotaz';
|
||||
$strStatement = 'Údaj';
|
||||
$strStrucCSV = 'CSV dáta';
|
||||
$strStrucData = 'Štruktúru a dáta';
|
||||
$strStrucDrop = 'Pridaj \'vymaž tabuľku\'';
|
||||
$strStrucOnly = 'Iba štruktúru';
|
||||
$strSubmit = 'Odošli';
|
||||
$strSuccess = 'SQL dotaz bol úspešne vykonaný';
|
||||
$strSum = 'Celkom';
|
||||
|
||||
$strTable = "tabuľka ";
|
||||
$strTableComments = "Komentár k tabuľke";
|
||||
$strTableEmpty = "Tabuľka je prázdna!";
|
||||
$strTableMaintenance = "Údržba tabuľky";
|
||||
$strTableStructure = "Štruktúra tabuľky pre tabuľku";
|
||||
$strTableType = "Typ tabuľky";
|
||||
$strTerminatedBy = "ukončené";
|
||||
$strTextAreaLength = " Toto možno nepojde upraviť,<br> kôli svojej dĺžke ";
|
||||
$strTheContent = "Obsah Vášho súboru bol vložený.";
|
||||
$strTheContents = "Obsah súboru prepíše obsah vybranej tabuľky v riadkoch s identickým primárnym alebo unikátnym kľúčom.";
|
||||
$strTheTerminator = "Ukončenie polí.";
|
||||
$strTotal = "celkovo";
|
||||
$strType = "Typ";
|
||||
$strTable = 'tabuľka ';
|
||||
$strTableComments = 'Komentár k tabuľke';
|
||||
$strTableEmpty = 'Tabuľka je prázdna!';
|
||||
$strTableMaintenance = 'Údržba tabuľky';
|
||||
$strTableStructure = 'Štruktúra tabuľky pre tabuľku';
|
||||
$strTableType = 'Typ tabuľky';
|
||||
$strTerminatedBy = 'ukončené';
|
||||
$strTextAreaLength = ' Toto možno nepojde upraviť,<br /> kôli svojej dĺžke ';
|
||||
$strTheContent = 'Obsah Vášho súboru bol vložený.';
|
||||
$strTheContents = 'Obsah súboru prepíše obsah vybranej tabuľky v riadkoch s identickým primárnym alebo unikátnym kľúčom.';
|
||||
$strTheTerminator = 'Ukončenie polí.';
|
||||
$strTotal = 'celkovo';
|
||||
$strType = 'Typ';
|
||||
|
||||
$strUncheckAll = "Odznačiť všetko";
|
||||
$strUnique = "Unikátny";
|
||||
$strUpdatePassMessage = "Bolo zmenené heslo pre používateľa";
|
||||
$strUpdatePassword = "Zmeniť heslo";
|
||||
$strUpdatePrivMessage = "Boli zmenené privilégia pre používateľa";
|
||||
$strUpdateQuery = "Aktualizovať dotaz";
|
||||
$strUsage = "Využitie";
|
||||
$strUser = "Používateľ";
|
||||
$strUserEmpty = "Meno používateľa je prázdne!";
|
||||
$strUserName = "Meno používateľa";
|
||||
$strUsers = "Používatelia";
|
||||
$strUseTables = "Použiť tabuľky";
|
||||
$strUncheckAll = 'Odznačiť všetko';
|
||||
$strUnique = 'Unikátny';
|
||||
$strUpdatePassMessage = 'Bolo zmenené heslo pre používateľa';
|
||||
$strUpdatePassword = 'Zmeniť heslo';
|
||||
$strUpdatePrivMessage = 'Boli zmenené privilégia pre používateľa';
|
||||
$strUpdateQuery = 'Aktualizovať dotaz';
|
||||
$strUsage = 'Využitie';
|
||||
$strUser = 'Používateľ';
|
||||
$strUserEmpty = 'Meno používateľa je prázdne!';
|
||||
$strUserName = 'Meno používateľa';
|
||||
$strUsers = 'Používatelia';
|
||||
$strUseTables = 'Použiť tabuľky';
|
||||
|
||||
$strValue = "Hodnota";
|
||||
$strViewDump = "Zobraziť dump (schému) tabuľky";
|
||||
$strViewDumpDB = "Zobraziť dump (schému) databázy";
|
||||
$strValue = 'Hodnota';
|
||||
$strViewDump = 'Zobraziť dump (schému) tabuľky';
|
||||
$strViewDumpDB = 'Zobraziť dump (schému) databázy';
|
||||
|
||||
$strWelcome = "Vitajte v ";
|
||||
$strWrongUser = "Zlé používateľské meno alebo heslo. Prístup zamietnutý.";
|
||||
$strWelcome = 'Vitajte v ';
|
||||
$strWrongUser = 'Zlé používateľské meno alebo heslo. Prístup zamietnutý.';
|
||||
|
||||
$strYes = "Áno";
|
||||
$strShowThisQuery=" Zobraziť tento dotaz znovu ";
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strYes = 'Áno';
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = ' Rows affected: '; //to translate
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strQueryOnDb = ' SQL-query on database '; //to translate
|
||||
$strUseBackquotes = ' Use backquotes with tables and fields names '; //to translate
|
||||
?>
|
||||
|
||||
@ -1,285 +1,288 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Acceso denegado ";
|
||||
$strAction = "Acción";
|
||||
$strAddDeleteColumn = "Añadir/borrar columna de criterio";
|
||||
$strAddDeleteRow = "Añadir/borrar fila de criterio";
|
||||
$strAddNewField = "Insertar nuevo campo";
|
||||
$strAddPriv = "Agregar nuevo privilegio";
|
||||
$strAddPrivMessage = "Ud. ha añadido un nuevo privilegio.";
|
||||
$strAddSearchConditions = "Insertar condiciones de búsqueda (cuerpo de la clausula \"where\"):";
|
||||
$strAddUser = "Agregar nuevo usuario";
|
||||
$strAddUserMessage = "Ud. ha agregado un nuevo usuario.";
|
||||
$strAfter = "Despues";
|
||||
$strAll = "Todos/as";
|
||||
$strAlterOrderBy = "Modificar el Order By de la tabla";
|
||||
$strAnalyzeTable = "Analizar tabla";
|
||||
$strAnd = "Y";
|
||||
$strAnIndex = "Un índice se ha Insertado en ";
|
||||
$strAny = "cualquiera";
|
||||
$strAnyColumn = "Cualquier columna";
|
||||
$strAnyDatabase = "Cualquier base de datos";
|
||||
$strAnyHost = "Cualquier host";
|
||||
$strAnyTable = "Cualquier tabla";
|
||||
$strAnyUser = "Cualquier usuario";
|
||||
$strAPrimaryKey = "Se ha insertado una nueva clave primaria en ";
|
||||
$strAscending = "Ascendente";
|
||||
$strAtBeginningOfTable = "Al comienzo de la tabla";
|
||||
$strAtEndOfTable = "Al final de la tabla";
|
||||
$strAttr = "Atributos";
|
||||
|
||||
$strBack = "Volver";
|
||||
$strBinary = " Binario ";
|
||||
$strBinaryDoNotEdit = " Binario - no editar! ";
|
||||
$strBookmarkLabel = "Etiqueta";
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Examinar";
|
||||
$strAccessDenied = 'Acceso denegado ';
|
||||
$strAction = 'Acción';
|
||||
$strAddDeleteColumn = 'Añadir/borrar columna de criterio';
|
||||
$strAddDeleteRow = 'Añadir/borrar fila de criterio';
|
||||
$strAddNewField = 'Insertar nuevo campo';
|
||||
$strAddPriv = 'Agregar nuevo privilegio';
|
||||
$strAddPrivMessage = 'Ud. ha añadido un nuevo privilegio.';
|
||||
$strAddSearchConditions = 'Insertar condiciones de búsqueda (cuerpo de la clausula "where"):';
|
||||
$strAddUser = 'Agregar nuevo usuario';
|
||||
$strAddUserMessage = 'Ud. ha agregado un nuevo usuario.';
|
||||
$strAfter = 'Despues';
|
||||
$strAll = 'Todos/as';
|
||||
$strAlterOrderBy = 'Modificar el Order By de la tabla';
|
||||
$strAnalyzeTable = 'Analizar tabla';
|
||||
$strAnd = 'Y';
|
||||
$strAnIndex = 'Un índice se ha Insertado en ';
|
||||
$strAny = 'cualquiera';
|
||||
$strAnyColumn = 'Cualquier columna';
|
||||
$strAnyDatabase = 'Cualquier base de datos';
|
||||
$strAnyHost = 'Cualquier host';
|
||||
$strAnyTable = 'Cualquier tabla';
|
||||
$strAnyUser = 'Cualquier usuario';
|
||||
$strAPrimaryKey = 'Se ha insertado una nueva clave primaria en ';
|
||||
$strAscending = 'Ascendente';
|
||||
$strAtBeginningOfTable = 'Al comienzo de la tabla';
|
||||
$strAtEndOfTable = 'Al final de la tabla';
|
||||
$strAttr = 'Atributos';
|
||||
|
||||
$strCantLoadMySQL = "imposible cargar extension MySQL,<br>por favor revise la configuracion de PHP.";
|
||||
$strCarriage = "Retorno de carro: \\r";
|
||||
$strChange = "Cambiar";
|
||||
$strCheckAll = "Revisar todos/as";
|
||||
$strCheckDbPriv = "Revisar privilegios de la base de datos";
|
||||
$strCheckTable = "Revisar tabla";
|
||||
$strColumn = "Columna";
|
||||
$strColumnEmpty = "Los nombres de columna estan vacios!";
|
||||
$strColumnNames = "Nombre de columnas";
|
||||
$strCompleteInserts = "Completar los Inserts";
|
||||
$strConfirm = "Realmente quieres hacerlo?";
|
||||
$strCopyTable = "Copiar la tabla a";
|
||||
$strCopyTableOK = "La tabla %s ha sido copiada a %s.";
|
||||
$strCreate = "Crear";
|
||||
$strCreateNewDatabase = "Crear nueva base de datos";
|
||||
$strCreateNewTable = "Crear nueva tabla en base de datos ";
|
||||
$strCriteria = "Criterio";
|
||||
$strBack = 'Volver';
|
||||
$strBinary = ' Binario ';
|
||||
$strBinaryDoNotEdit = ' Binario - no editar! ';
|
||||
$strBookmarkLabel = 'Etiqueta';
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Examinar';
|
||||
|
||||
$strData = "Datos";
|
||||
$strDatabase = "Base De Datos ";
|
||||
$strDatabases = "Bases de datos";
|
||||
$strDataOnly = "Solo datos";
|
||||
$strDbEmpty = "El nombre de la base de datos esta vacio!";
|
||||
$strDefault = "Defecto";
|
||||
$strDelete = "Borrar";
|
||||
$strDeleted = "La fila se ha borrado";
|
||||
$strDeleteFailed = "La operacion de borrado ha fallado!";
|
||||
$strDeletePassword = "Borrar contraseña";
|
||||
$strDeleteUserMessage = "Ud. ha borrado el usuario";
|
||||
$strDelPassMessage = "Ud. ha borrado la contraseña para";
|
||||
$strDescending = "Descendente";
|
||||
$strDisableMagicQuotes = "<b>Atencion:</b> Ud. ha activado magic_quotes_gpc en su configuracion de PHP. Esta version de PhpMyAdmin no funciona correctamente con ello. Por favor revise la seccion de configuracion en el manual de PHP para informacion de como desactivar dicha opcion.";
|
||||
$strDisplay = "Mostrar";
|
||||
$strDoAQuery = "Realizar una \"consulta de ejemplo\" (wildcard: \"%\")";
|
||||
$strDocu = "Documentación";
|
||||
$strDoYouReally = "Desea realmente hacer ";
|
||||
$strDrop = "Eliminar";
|
||||
$strDropDB = "Eliminar base de datos ";
|
||||
$strDumpingData = "Volcar la base de datos para la tabla";
|
||||
$strDynamic = "dinamico/a";
|
||||
$strCantLoadMySQL = 'imposible cargar extension MySQL,<br />por favor revise la configuracion de PHP.';
|
||||
$strCarriage = 'Retorno de carro: \\r';
|
||||
$strChange = 'Cambiar';
|
||||
$strCheckAll = 'Revisar todos/as';
|
||||
$strCheckDbPriv = 'Revisar privilegios de la base de datos';
|
||||
$strCheckTable = 'Revisar tabla';
|
||||
$strColumn = 'Columna';
|
||||
$strColumnEmpty = 'Los nombres de columna estan vacios!';
|
||||
$strColumnNames = 'Nombre de columnas';
|
||||
$strCompleteInserts = 'Completar los Inserts';
|
||||
$strConfirm = 'Realmente quieres hacerlo?';
|
||||
$strCopyTable = 'Copiar la tabla a';
|
||||
$strCopyTableOK = 'La tabla %s ha sido copiada a %s.';
|
||||
$strCreate = 'Crear';
|
||||
$strCreateNewDatabase = 'Crear nueva base de datos';
|
||||
$strCreateNewTable = 'Crear nueva tabla en base de datos ';
|
||||
$strCriteria = 'Criterio';
|
||||
|
||||
$strEdit = "Editar";
|
||||
$strEditPrivileges = "Editar Privilegios";
|
||||
$strEffective = "Efectivo/a";
|
||||
$strEmpty = "Vaciar";
|
||||
$strEmptyResultSet = "MySQL ha devuelto un valor vacío (i.e. cero columnas).";
|
||||
$strEnableMagicQuotes = "<b>Atencion:</b> Ud. no ha activado magic_quotes_gpc en la configuracion de PHP. PhpMyAdmin necesita esta opcion para funcionar correctamente. Por favor revise la seccion de configuracion en el manual de PHP para informacion de como activar dicha opcion.";
|
||||
$strEnclosedBy = "Encerrado por";
|
||||
$strEnd = "Fin";
|
||||
$strEnglishPrivileges = " Nota: Los nombres de privilegios de MySQL estan expresados en Ingles ";
|
||||
$strError = "Error";
|
||||
$strEscapedBy = "Escapado por";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Datos';
|
||||
$strDatabase = 'Base De Datos ';
|
||||
$strDatabases = 'Bases de datos';
|
||||
$strDataOnly = 'Solo datos';
|
||||
$strDbEmpty = 'El nombre de la base de datos esta vacio!';
|
||||
$strDefault = 'Defecto';
|
||||
$strDelete = 'Borrar';
|
||||
$strDeleted = 'La fila se ha borrado';
|
||||
$strDeleteFailed = 'La operacion de borrado ha fallado!';
|
||||
$strDeletePassword = 'Borrar contraseña';
|
||||
$strDeleteUserMessage = 'Ud. ha borrado el usuario';
|
||||
$strDelPassMessage = 'Ud. ha borrado la contraseña para';
|
||||
$strDescending = 'Descendente';
|
||||
$strDisableMagicQuotes = '<b>Atencion:</b> Ud. ha activado magic_quotes_gpc en su configuracion de PHP. Esta version de PhpMyAdmin no funciona correctamente con ello. Por favor revise la seccion de configuracion en el manual de PHP para informacion de como desactivar dicha opcion.';
|
||||
$strDisplay = 'Mostrar';
|
||||
$strDoAQuery = 'Realizar una "consulta de ejemplo" (wildcard: "%")';
|
||||
$strDocu = 'Documentación';
|
||||
$strDoYouReally = 'Desea realmente hacer ';
|
||||
$strDrop = 'Eliminar';
|
||||
$strDropDB = 'Eliminar base de datos ';
|
||||
$strDumpingData = 'Volcar la base de datos para la tabla';
|
||||
$strDynamic = 'dinamico/a';
|
||||
|
||||
$strField = "Campo";
|
||||
$strFields = "Campos";
|
||||
$strFixed = "fijo";
|
||||
$strFormat = "Formato";
|
||||
$strFunction = "Función";
|
||||
$strEdit = 'Editar';
|
||||
$strEditPrivileges = 'Editar Privilegios';
|
||||
$strEffective = 'Efectivo/a';
|
||||
$strEmpty = 'Vaciar';
|
||||
$strEmptyResultSet = 'MySQL ha devuelto un valor vacío (i.e. cero columnas).';
|
||||
$strEnableMagicQuotes = '<b>Atencion:</b> Ud. no ha activado magic_quotes_gpc en la configuracion de PHP. PhpMyAdmin necesita esta opcion para funcionar correctamente. Por favor revise la seccion de configuracion en el manual de PHP para informacion de como activar dicha opcion.';
|
||||
$strEnclosedBy = 'Encerrado por';
|
||||
$strEnd = 'Fin';
|
||||
$strEnglishPrivileges = ' Nota: Los nombres de privilegios de MySQL estan expresados en Ingles ';
|
||||
$strError = 'Error';
|
||||
$strEscapedBy = 'Escapado por';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Tiempo de Generacion";
|
||||
$strGo = "Siga";
|
||||
$strGrants = "Permisos";
|
||||
$strField = 'Campo';
|
||||
$strFields = 'Campos';
|
||||
$strFixed = 'fijo';
|
||||
$strFormat = 'Formato';
|
||||
$strFunction = 'Función';
|
||||
|
||||
$strHasBeenAltered = "se ha Modificado.";
|
||||
$strHasBeenCreated = "se ha creado.";
|
||||
$strHasBeenDropped = "se ha eliminado.";
|
||||
$strHasBeenEmptied = "se ha vaciado.";
|
||||
$strHome = "Home";
|
||||
$strHomepageOfficial = "Pagina Oficial de phpMyAdmin";
|
||||
$strHomepageSourceforge = "Bajar phpMyAdmin de Sourceforge";
|
||||
$strHost = "Host";
|
||||
$strHostEmpty = "El nombre del host esta vacio!!";
|
||||
$strGenTime = 'Tiempo de Generacion';
|
||||
$strGo = 'Siga';
|
||||
$strGrants = 'Permisos';
|
||||
|
||||
$strIfYouWish = "Si deseas cargar solo una de las columnas de la tabla, espedificar una coma separando los campos.";
|
||||
$strIndex = "Indice";
|
||||
$strIndexes = "Indices";
|
||||
$strInsert = "Insertar";
|
||||
$strInsertAsNewRow = "Insertar como una nueva fila";
|
||||
$strInsertIntoTable = "Insertar en tabla";
|
||||
$strInsertNewRow = "Insertar nueva fila";
|
||||
$strInsertTextfiles = "Insertar archivo de texto en la tabla";
|
||||
$strInUse = "en uso";
|
||||
$strHasBeenAltered = 'se ha Modificado.';
|
||||
$strHasBeenCreated = 'se ha creado.';
|
||||
$strHasBeenDropped = 'se ha eliminado.';
|
||||
$strHasBeenEmptied = 'se ha vaciado.';
|
||||
$strHome = 'Home';
|
||||
$strHomepageOfficial = 'Pagina Oficial de phpMyAdmin';
|
||||
$strHomepageSourceforge = 'Bajar phpMyAdmin de Sourceforge';
|
||||
$strHost = 'Host';
|
||||
$strHostEmpty = 'El nombre del host esta vacio!!';
|
||||
|
||||
$strKeyname = "Nombre de la clave";
|
||||
$strKill = "Matar proceso";
|
||||
$strIfYouWish = 'Si deseas cargar solo una de las columnas de la tabla, espedificar una coma separando los campos.';
|
||||
$strIndex = 'Indice';
|
||||
$strIndexes = 'Indices';
|
||||
$strInsert = 'Insertar';
|
||||
$strInsertAsNewRow = 'Insertar como una nueva fila';
|
||||
$strInsertIntoTable = 'Insertar en tabla';
|
||||
$strInsertNewRow = 'Insertar nueva fila';
|
||||
$strInsertTextfiles = 'Insertar archivo de texto en la tabla';
|
||||
$strInUse = 'en uso';
|
||||
|
||||
$strLength = "Longitud";
|
||||
$strLengthSet = "Longitud de Campo";
|
||||
$strLimitNumRows = "registros por pagina";
|
||||
$strLineFeed = "Retorno de carro: \\n";
|
||||
$strLines = "Lineas";
|
||||
$strLocationTextfile = "Localización del archivo de texto";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Salir";
|
||||
$strKeyname = 'Nombre de la clave';
|
||||
$strKill = 'Matar proceso';
|
||||
|
||||
$strModifications = "Se han guardado las modificaciones";
|
||||
$strModify = "Modificar";
|
||||
$strMySQLReloaded = "Reinicio de MySQL.";
|
||||
$strMySQLSaid = "MySQL ha dicho: ";
|
||||
$strMySQLShowProcess = "Mostrar procesos";
|
||||
$strMySQLShowStatus = "Mostrar información de marcha de MySQL";
|
||||
$strMySQLShowVars = "Mostrar las variables del sistema MySQL";
|
||||
$strLength = 'Longitud';
|
||||
$strLengthSet = 'Longitud de Campo';
|
||||
$strLimitNumRows = 'registros por pagina';
|
||||
$strLineFeed = 'Retorno de carro: \\n';
|
||||
$strLines = 'Lineas';
|
||||
$strLocationTextfile = 'Localización del archivo de texto';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Salir';
|
||||
|
||||
$strName = "Nombre";
|
||||
$strNext = "Próxima";
|
||||
$strNo = "No";
|
||||
$strNoPassword = "Sin Contraseña";
|
||||
$strNoPrivileges = "Sin Privilegios";
|
||||
$strNoRights = "Ud. no tiene suficientes privilegios para estar aqui ahora!";
|
||||
$strNoTablesFound = "No se han encontrado tablas en la base de datos.";
|
||||
$strNotNumber = "Esto no es un numero!";
|
||||
$strNotValidNumber = " no es un numero de fila valido!";
|
||||
$strNoUsersFound = "Usuario(s) no encontrado(s).";
|
||||
$strNull = "Null";
|
||||
$strNumberIndexes = " Numero de indices avanzados ";
|
||||
$strModifications = 'Se han guardado las modificaciones';
|
||||
$strModify = 'Modificar';
|
||||
$strMySQLReloaded = 'Reinicio de MySQL.';
|
||||
$strMySQLSaid = 'MySQL ha dicho: ';
|
||||
$strMySQLShowProcess = 'Mostrar procesos';
|
||||
$strMySQLShowStatus = 'Mostrar información de marcha de MySQL';
|
||||
$strMySQLShowVars = 'Mostrar las variables del sistema MySQL';
|
||||
|
||||
$strOftenQuotation = "A menudo comillas. OPCIONALMENTE signifíca que únicamente los campos char y varchar estan encerrados por el \"enclosed by\"-character.";
|
||||
$strOptimizeTable = "Optimizar tabla";
|
||||
$strOptionalControls = "Opcional. Controla como escribir o leer caracteres especiales.";
|
||||
$strOptionally = "OPCIONALMENTE";
|
||||
$strOr = "O";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Nombre';
|
||||
$strNbRecords = 'No. De filas';
|
||||
$strNext = 'Próxima';
|
||||
$strNo = 'No';
|
||||
$strNoPassword = 'Sin Contraseña';
|
||||
$strNoPrivileges = 'Sin Privilegios';
|
||||
$strNoRights = 'Ud. no tiene suficientes privilegios para estar aqui ahora!';
|
||||
$strNoTablesFound = 'No se han encontrado tablas en la base de datos.';
|
||||
$strNotNumber = 'Esto no es un numero!';
|
||||
$strNotValidNumber = ' no es un numero de fila valido!';
|
||||
$strNoUsersFound = 'Usuario(s) no encontrado(s).';
|
||||
$strNull = 'Null';
|
||||
$strNumberIndexes = ' Numero de indices avanzados ';
|
||||
|
||||
$strPassword = "Contraseña";
|
||||
$strPasswordEmpty = "La Contraseña esta vacía!";
|
||||
$strPasswordNotSame = "Las contraseñas no coinciden!";
|
||||
$strPHPVersion = "Version del PHP";
|
||||
$strPos1 = "Empezar";
|
||||
$strPrevious = "Previo";
|
||||
$strPrimary = "Primaria";
|
||||
$strPrimaryKey = "Clave Primaria";
|
||||
$strPrinterFriendly = "Version Printer friendly de la tabla de arriba";
|
||||
$strPrintView = "Vista de Impresion";
|
||||
$strPrivileges = "Privilegios";
|
||||
$strProducedAnError = "se produjo un error.";
|
||||
$strProperties = "Propiedades";
|
||||
$strOftenQuotation = 'A menudo comillas. OPCIONALMENTE signifíca que únicamente los campos char y varchar estan encerrados por el "enclosed by"-character.';
|
||||
$strOptimizeTable = 'Optimizar tabla';
|
||||
$strOptionalControls = 'Opcional. Controla como escribir o leer caracteres especiales.';
|
||||
$strOptionally = 'OPCIONALMENTE';
|
||||
$strOr = 'O';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Query de ejemplo";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Contraseña';
|
||||
$strPasswordEmpty = 'La Contraseña esta vacía!';
|
||||
$strPasswordNotSame = 'Las contraseñas no coinciden!';
|
||||
$strPHPVersion = 'Version del PHP';
|
||||
$strPos1 = 'Empezar';
|
||||
$strPrevious = 'Previo';
|
||||
$strPrimary = 'Primaria';
|
||||
$strPrimaryKey = 'Clave Primaria';
|
||||
$strPrinterFriendly = 'Version Printer friendly de la tabla de arriba';
|
||||
$strPrintView = 'Vista de Impresion';
|
||||
$strPrivileges = 'Privilegios';
|
||||
$strProducedAnError = 'se produjo un error.';
|
||||
$strProperties = 'Propiedades';
|
||||
|
||||
$strReadTheDocs = "Leer los documentos";
|
||||
$strRecords = "Campos";
|
||||
$strReloadFailed = "El reinicio de MySQL ha fallado.";
|
||||
$strReloadMySQL = "Reinicio de MySQL";
|
||||
$strRememberReload = "Recuerde recargar el servidor.";
|
||||
$strRenameTable = "Renombrar la tabla a";
|
||||
$strRenameTableOK = "Tabla %s se ha renombrado a %s";
|
||||
$strRepairTable = "Reparar Tabla";
|
||||
$strReplace = "Reemplazar";
|
||||
$strReplaceTable = "Reemplazar datos de tabla con archivo";
|
||||
$strReset = "Reset";
|
||||
$strReType = "Re-escriba";
|
||||
$strRevoke = "Revocar";
|
||||
$strRevokeGrant = "Revocar Grant";
|
||||
$strRevokeGrantMessage = "Ud. ha revocado el privilegio Grant para ";
|
||||
$strRevokeMessage = "Ud. ha revocado los privilegios para";
|
||||
$strRevokePriv = "Revocar Privilegios";
|
||||
$strRowLength = "Logitud de la fila";
|
||||
$strRows = "Filas";
|
||||
$strRowsFrom = "filas empezando de";
|
||||
$strRowsStatistic = "Estadisticas de la fila";
|
||||
$strRunning = "ejecutandose on ";
|
||||
$strRunQuery = "Ejecutar Query";
|
||||
$strRunSQLQuery = "Ejecutar SQL query/queries en la base de datos ";
|
||||
$strQBE = 'Query de ejemplo';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
$strQueryOnDb = 'SQL-query en la Base de datos ';
|
||||
|
||||
$strSave = "Grabar";
|
||||
$strSelect = "Seleccionar";
|
||||
$strSelectFields = "Seleccionar campos (al menos uno):";
|
||||
$strSelectNumRows = "en la consulta";
|
||||
$strSend = "enviar";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Version del Servidor";
|
||||
$strShow = "Mostrar";
|
||||
$strShowingRecords = "Mostrando campos ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Tamaño";
|
||||
$strSort = "Ordenar";
|
||||
$strSpaceUsage = "Espacio utilizado";
|
||||
$strSQLQuery = "SQL-query";
|
||||
$strStatement = "Sentencias";
|
||||
$strStrucCSV = "Datos CSV ";
|
||||
$strStrucData = "Estructura y datos";
|
||||
$strStrucDrop = "Añadir 'drop table'";
|
||||
$strStrucOnly = "Unicamente estructura ";
|
||||
$strSubmit = "Enviar";
|
||||
$strSuccess = "Su query-SQL ha sido ejecutado con exito";
|
||||
$strSum = "Tamaño de las tablas";
|
||||
$strReadTheDocs = 'Leer los documentos';
|
||||
$strRecords = 'Campos';
|
||||
$strReloadFailed = 'El reinicio de MySQL ha fallado.';
|
||||
$strReloadMySQL = 'Reinicio de MySQL';
|
||||
$strRememberReload = 'Recuerde recargar el servidor.';
|
||||
$strRenameTable = 'Renombrar la tabla a';
|
||||
$strRenameTableOK = 'Tabla %s se ha renombrado a %s';
|
||||
$strRepairTable = 'Reparar Tabla';
|
||||
$strReplace = 'Reemplazar';
|
||||
$strReplaceTable = 'Reemplazar datos de tabla con archivo';
|
||||
$strReset = 'Reset';
|
||||
$strReType = 'Re-escriba';
|
||||
$strRevoke = 'Revocar';
|
||||
$strRevokeGrant = 'Revocar Grant';
|
||||
$strRevokeGrantMessage = 'Ud. ha revocado el privilegio Grant para ';
|
||||
$strRevokeMessage = 'Ud. ha revocado los privilegios para';
|
||||
$strRevokePriv = 'Revocar Privilegios';
|
||||
$strRowLength = 'Logitud de la fila';
|
||||
$strRows = 'Filas';
|
||||
$strRowsFrom = 'filas empezando de';
|
||||
$strRowSize = ' Tamaño de la fila ';
|
||||
$strRowsStatistic = 'Estadisticas de la fila';
|
||||
$strRunning = 'ejecutandose on ';
|
||||
$strRunQuery = 'Ejecutar Query';
|
||||
$strRunSQLQuery = 'Ejecutar SQL query/queries en la base de datos ';
|
||||
|
||||
$strTable = "tabla ";
|
||||
$strTableComments = "Comentarios de la Tabla";
|
||||
$strTableEmpty = "El nombre de la tabla esta vacio!";
|
||||
$strTableMaintenance = "Mantenimiento de la tabla";
|
||||
$strTableStructure = "Estructura de tabla para tabla";
|
||||
$strTableType = "Tipo de tabla";
|
||||
$strTerminatedBy = "terminado por";
|
||||
$strTextAreaLength = " Debido a su longitud,<br> este campo puede no ser editable ";
|
||||
$strTheContent = "El contenido de su archivo ha sido insertado.";
|
||||
$strTheContents = "El contenido del archivo reemplaza el contenido de la tabla seleccionada para las columnas identicas primarias o unicas.";
|
||||
$strTheTerminator = "El terminador de los campos.";
|
||||
$strTotal = "total";
|
||||
$strType = "Tipo";
|
||||
$strSave = 'Grabar';
|
||||
$strSelect = 'Seleccionar';
|
||||
$strSelectFields = 'Seleccionar campos (al menos uno):';
|
||||
$strSelectNumRows = 'en la consulta';
|
||||
$strSend = 'enviar';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Version del Servidor';
|
||||
$strShow = 'Mostrar';
|
||||
$strShowingRecords = 'Mostrando campos ';
|
||||
$strShowThisQuery = ' Mostrar esta consulta otra vez ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Tamaño';
|
||||
$strSort = 'Ordenar';
|
||||
$strSpaceUsage = 'Espacio utilizado';
|
||||
$strSQLQuery = 'SQL-query';
|
||||
$strStatement = 'Sentencias';
|
||||
$strStrucCSV = 'Datos CSV ';
|
||||
$strStrucData = 'Estructura y datos';
|
||||
$strStrucDrop = 'Añadir \'drop table\'';
|
||||
$strStrucOnly = 'Unicamente estructura ';
|
||||
$strSubmit = 'Enviar';
|
||||
$strSuccess = 'Su query-SQL ha sido ejecutado con exito';
|
||||
$strSum = 'Tamaño de las tablas';
|
||||
|
||||
$strUncheckAll = "Desmarcar todos";
|
||||
$strUnique = "Unico";
|
||||
$strUpdatePassMessage = "Ud. ha actualizado la contraseña para";
|
||||
$strUpdatePassword = "Actualizar Contraseña";
|
||||
$strUpdatePrivMessage = "Ud. a actualizado los privilegios para";
|
||||
$strUpdateQuery = "Modificar la Consulta"; // (tbl_qbe.php3)
|
||||
$strUsage = "Uso";
|
||||
$strUser = "Usuario";
|
||||
$strUserEmpty = "El nombre de usuario esta vacio!";
|
||||
$strUserName = "Nombre de Usuario";
|
||||
$strUsers = "Usuarios";
|
||||
$strUseTables = "Usar tablas";
|
||||
$strTable = 'tabla ';
|
||||
$strTableComments = 'Comentarios de la Tabla';
|
||||
$strTableEmpty = 'El nombre de la tabla esta vacio!';
|
||||
$strTableMaintenance = 'Mantenimiento de la tabla';
|
||||
$strTableStructure = 'Estructura de tabla para tabla';
|
||||
$strTableType = 'Tipo de tabla';
|
||||
$strTerminatedBy = 'terminado por';
|
||||
$strTextAreaLength = ' Debido a su longitud,<br /> este campo puede no ser editable ';
|
||||
$strTheContent = 'El contenido de su archivo ha sido insertado.';
|
||||
$strTheContents = 'El contenido del archivo reemplaza el contenido de la tabla seleccionada para las columnas identicas primarias o unicas.';
|
||||
$strTheTerminator = 'El terminador de los campos.';
|
||||
$strTotal = 'total';
|
||||
$strType = 'Tipo';
|
||||
|
||||
$strValue = "Valor";
|
||||
$strViewDump = "Mostrar volcado esquema de la tabla";
|
||||
$strViewDumpDB = "Ver volcado esquema de la base de datos";
|
||||
$strUncheckAll = 'Desmarcar todos';
|
||||
$strUnique = 'Unico';
|
||||
$strUpdatePassMessage = 'Ud. ha actualizado la contraseña para';
|
||||
$strUpdatePassword = 'Actualizar Contraseña';
|
||||
$strUpdatePrivMessage = 'Ud. a actualizado los privilegios para';
|
||||
$strUpdateQuery = 'Modificar la Consulta';
|
||||
$strUsage = 'Uso';
|
||||
$strUseBackquotes = 'Usar backquotes con tablas y nombres de campo';
|
||||
$strUser = 'Usuario';
|
||||
$strUserEmpty = 'El nombre de usuario esta vacio!';
|
||||
$strUserName = 'Nombre de Usuario';
|
||||
$strUsers = 'Usuarios';
|
||||
$strUseTables = 'Usar tablas';
|
||||
|
||||
$strWelcome = "Bienvenido a ";
|
||||
$strWrongUser = "Usuario/password equivocado. Accesso denegado.";
|
||||
$strValue = 'Valor';
|
||||
$strViewDump = 'Mostrar volcado esquema de la tabla';
|
||||
$strViewDumpDB = 'Ver volcado esquema de la base de datos';
|
||||
|
||||
$strYes = "Si";
|
||||
$strWelcome = 'Bienvenido a ';
|
||||
$strWrongUser = 'Usuario/password equivocado. Accesso denegado.';
|
||||
|
||||
$strYes = 'Si';
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. De filas";
|
||||
$strRowSize = " Tamaño de la fila ";
|
||||
$strShowThisQuery=" Mostrar esta consulta otra vez ";
|
||||
$strUseBackquotes=" Usar backquotes con tablas y nombres de campo ";
|
||||
$strQueryOnDb=" SQL-query en la Base de datos ";
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Rows affected: ';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strOffSet = 'offset';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "iso-8859-1";
|
||||
$left_font_family = "verdana, helvetica, arial, geneva, sans-serif";
|
||||
$right_font_family = "helvetica, arial, geneva, sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'iso-8859-1';
|
||||
$left_font_family = 'verdana, helvetica, arial, geneva, sans-serif';
|
||||
$right_font_family = 'helvetica, arial, geneva, sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "Åtkommst nekad";
|
||||
$strAction = "Handling";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "Lägg till nytt fält";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "Lägg till sök kreterier (body of the \"where\" clause):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "Efter";
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "Ett index har lagts till ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "En primär nyckel har aktiverats ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "I början av tabellen";
|
||||
$strAtEndOfTable = "I slutet av tabellen";
|
||||
$strAttr = "Attributer";
|
||||
|
||||
$strBack = "Bakåt";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "Visa";
|
||||
$strAccessDenied = 'Åtkommst nekad';
|
||||
$strAction = 'Handling';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'Lägg till nytt fält';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'Lägg till sök kreterier (body of the "where" clause):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'Efter';
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'Ett index har lagts till ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'En primär nyckel har aktiverats ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = 'I början av tabellen';
|
||||
$strAtEndOfTable = 'I slutet av tabellen';
|
||||
$strAttr = 'Attributer';
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Rad byte: \\r";
|
||||
$strChange = "Ändra";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "Kolumn namn";
|
||||
$strCompleteInserts = "Kompletta insättningar";
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "Kopiera tabellen till:";
|
||||
$strCopyTableOK = "Tabellen %s har kopierats till %s.";
|
||||
$strCreate = "Skapa";
|
||||
$strCreateNewDatabase = "Skapa ny databas";
|
||||
$strCreateNewTable = "Skapa nya tabeller i databas ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Bakåt';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'Visa';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "Databas ";
|
||||
$strDatabases = "databaser";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Standard";
|
||||
$strDelete = "Radera";
|
||||
$strDeleted = "Raden har raderats";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Varning:</b> Du har 'magic_quotes_gpc' aktiverat i din PHP konfiguration. Den här versionen av PhpMyAdmin fungerar inte korrekt med det. Läs i din PHP dokumentation om hur du avaktiverar det.";
|
||||
$strDisplay = "Visa";
|
||||
$strDoAQuery = "Utför en \"query by example\" (wildcard: \"%\")";
|
||||
$strDocu = "Dokumentation";
|
||||
$strDoYouReally = "Vill du värkligen ";
|
||||
$strDrop = "Dumpa";
|
||||
$strDropDB = "Dumpa databas ";
|
||||
$strDumpingData = "Dumpar data i tabell";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Rad byte: \\r';
|
||||
$strChange = 'Ändra';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'Kolumn namn';
|
||||
$strCompleteInserts = 'Kompletta insättningar';
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'Kopiera tabellen till:';
|
||||
$strCopyTableOK = 'Tabellen %s har kopierats till %s.';
|
||||
$strCreate = 'Skapa';
|
||||
$strCreateNewDatabase = 'Skapa ny databas';
|
||||
$strCreateNewTable = 'Skapa nya tabeller i databas ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "Ändra";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "Töm";
|
||||
$strEmptyResultSet = "MySQL skickade tillbaka ett tommt resultat (i.e. tom rad).";
|
||||
$strEnableMagicQuotes = "<b>Varning:</b> Du har inte aktiverat 'magic_quotes_gpc' i din PHP konfiguration. Den här versionen av PhpMyAdmin fungerar inte korrekt utan det. Läs i din PHP dokumentation hur du aktiverar det.";
|
||||
$strEnclosedBy = "omgivet med";
|
||||
$strEnd = "Slut";
|
||||
$strError = "Fel";
|
||||
$strEscapedBy = "avslutas med";
|
||||
$strExtra = "Extra";
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = 'Databas ';
|
||||
$strDatabases = 'databaser';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Standard';
|
||||
$strDelete = 'Radera';
|
||||
$strDeleted = 'Raden har raderats';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Varning:</b> Du har \'magic_quotes_gpc\' aktiverat i din PHP konfiguration. Den här versionen av PhpMyAdmin fungerar inte korrekt med det. Läs i din PHP dokumentation om hur du avaktiverar det.';
|
||||
$strDisplay = 'Visa';
|
||||
$strDoAQuery = 'Utför en "query by example" (wildcard: "%")';
|
||||
$strDocu = 'Dokumentation';
|
||||
$strDoYouReally = 'Vill du värkligen ';
|
||||
$strDrop = 'Dumpa';
|
||||
$strDropDB = 'Dumpa databas ';
|
||||
$strDumpingData = 'Dumpar data i tabell';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Fält";
|
||||
$strFields = "Fält";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Funktion";
|
||||
$strEdit = 'Ändra';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'Töm';
|
||||
$strEmptyResultSet = 'MySQL skickade tillbaka ett tommt resultat (i.e. tom rad).';
|
||||
$strEnableMagicQuotes = '<b>Varning:</b> Du har inte aktiverat \'magic_quotes_gpc\' i din PHP konfiguration. Den här versionen av PhpMyAdmin fungerar inte korrekt utan det. Läs i din PHP dokumentation hur du aktiverar det.';
|
||||
$strEnclosedBy = 'omgivet med';
|
||||
$strEnd = 'Slut';
|
||||
$strError = 'Fel';
|
||||
$strEscapedBy = 'avslutas med';
|
||||
$strExtra = 'Extra';
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "Kör";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Fält';
|
||||
$strFields = 'Fält';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Funktion';
|
||||
|
||||
$strHasBeenAltered = "har ändrats.";
|
||||
$strHasBeenCreated = "har skapats.";
|
||||
$strHasBeenDropped = "har dumpats.";
|
||||
$strHasBeenEmptied = "har tömts.";
|
||||
$strHome = "Hem";
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Värd";
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'Kör';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "Om du vill ladda bara några av tabellens kolumner, ange en ',' separerad fält lista.";
|
||||
$strIndex = "Index";
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "Sätt in";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "Sätt in i tabell";
|
||||
$strInsertNewRow = "Sätt in ny rad";
|
||||
$strInsertTextfiles = "Importera text fil till tabellen";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'har ändrats.';
|
||||
$strHasBeenCreated = 'har skapats.';
|
||||
$strHasBeenDropped = 'har dumpats.';
|
||||
$strHasBeenEmptied = 'har tömts.';
|
||||
$strHome = 'Hem';
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Värd';
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "Nyckel namn";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'Om du vill ladda bara några av tabellens kolumner, ange en \',\' separerad fält lista.';
|
||||
$strIndex = 'Index';
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'Sätt in';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'Sätt in i tabell';
|
||||
$strInsertNewRow = 'Sätt in ny rad';
|
||||
$strInsertTextfiles = 'Importera text fil till tabellen';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "Längd/Set";
|
||||
$strLimitNumRows = "Tabell inlägg per sida";
|
||||
$strLineFeed = "Linefeed: \\n";
|
||||
$strLines = "Linjer";
|
||||
$strLocationTextfile = "Textfilens plats";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Logga ut";
|
||||
$strKeyname = 'Nyckel namn';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "Ändringarna har sparats";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL har laddats om.";
|
||||
$strMySQLSaid = "MySQL sa: ";
|
||||
$strMySQLShowProcess = "Visa processer";
|
||||
$strMySQLShowStatus = "Visa MySQL körnings information";
|
||||
$strMySQLShowVars = "Visa MySQL system variabler";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = 'Längd/Set';
|
||||
$strLimitNumRows = 'Tabell inlägg per sida';
|
||||
$strLineFeed = 'Linefeed: \\n';
|
||||
$strLines = 'Linjer';
|
||||
$strLocationTextfile = 'Textfilens plats';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Logga ut';
|
||||
|
||||
$strName = "Namn";
|
||||
$strNext = "Nästa";
|
||||
$strNo = "Nej";
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "Inga tabeller hittade i databasen.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Noll";
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'Ändringarna har sparats';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL har laddats om.';
|
||||
$strMySQLSaid = 'MySQL sa: ';
|
||||
$strMySQLShowProcess = 'Visa processer';
|
||||
$strMySQLShowStatus = 'Visa MySQL körnings information';
|
||||
$strMySQLShowVars = 'Visa MySQL system variabler';
|
||||
|
||||
$strOftenQuotation = "Ofta citat tecken. Frivilligt betyder att bara 'char' och 'varchar' fälten omgivs av \"enclosed by\"-tecken.";
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Tillval. Kontrollerar hur läsning och skrivning av 'special' tecken utförs.";
|
||||
$strOptionally = "Tillval";
|
||||
$strOr = "Eller";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'Namn';
|
||||
$strNext = 'Nästa';
|
||||
$strNo = 'Nej';
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'Inga tabeller hittade i databasen.';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Noll';
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "Börja";
|
||||
$strPrevious = "Föregående";
|
||||
$strPrimary = "Primär";
|
||||
$strPrimaryKey = "Primär nyckel";
|
||||
$strPrinterFriendly = "Utskrifts vänlig visning av tabellen";
|
||||
$strPrintView = "Skriv ut detta";
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "återgav ett fel.";
|
||||
$strProperties = "Inställningar";
|
||||
$strOftenQuotation = 'Ofta citat tecken. Frivilligt betyder att bara \'char\' och \'varchar\' fälten omgivs av "enclosed by"-tecken.';
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Tillval. Kontrollerar hur läsning och skrivning av \'special\' tecken utförs.';
|
||||
$strOptionally = 'Tillval';
|
||||
$strOr = 'Eller';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Fråga som exemplet";
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = 'Börja';
|
||||
$strPrevious = 'Föregående';
|
||||
$strPrimary = 'Primär';
|
||||
$strPrimaryKey = 'Primär nyckel';
|
||||
$strPrinterFriendly = 'Utskrifts vänlig visning av tabellen';
|
||||
$strPrintView = 'Skriv ut detta';
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'återgav ett fel.';
|
||||
$strProperties = 'Inställningar';
|
||||
|
||||
$strReadTheDocs = "Läs manualen";
|
||||
$strRecords = "Insättning";
|
||||
$strReloadFailed = "MySQL omladdning fungerade inte.";
|
||||
$strReloadMySQL = "Ladda om MySQL";
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "Döp om tabell till";
|
||||
$strRenameTableOK = "Tabell %s har döpts om till %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "Ersätt";
|
||||
$strReplaceTable = "Ersätt tabell med fil";
|
||||
$strReset = "Nollställ";
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "rader med början från";
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "körs på ";
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "Utför SQL fråga/frågor i databas ";
|
||||
$strQBE = 'Fråga som exemplet';
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "Spara";
|
||||
$strSelect = "Välj";
|
||||
$strSelectFields = "Välj fält (minst en):";
|
||||
$strSelectNumRows = "i fråga";
|
||||
$strSend = "Skicka";
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "Visa";
|
||||
$strShowingRecords = "Visar insättningar ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-fråga";
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "CSV data";
|
||||
$strStrucData = "Struktur och data";
|
||||
$strStrucDrop = "Lägg till 'dumpa tabell'";
|
||||
$strStrucOnly = "Bara struktur";
|
||||
$strSubmit = "Sänd";
|
||||
$strSuccess = "Din SQL-fråga har utförts korrekt";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'Läs manualen';
|
||||
$strRecords = 'Insättning';
|
||||
$strReloadFailed = 'MySQL omladdning fungerade inte.';
|
||||
$strReloadMySQL = 'Ladda om MySQL';
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'Döp om tabell till';
|
||||
$strRenameTableOK = 'Tabell %s har döpts om till %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'Ersätt';
|
||||
$strReplaceTable = 'Ersätt tabell med fil';
|
||||
$strReset = 'Nollställ';
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'rader med början från';
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'körs på ';
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = 'Utför SQL fråga/frågor i databas ';
|
||||
|
||||
$strTable = "tabell ";
|
||||
$strTableComments = "Tabell kommentarer";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "Tabell struktur för tabell";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "avslutad av";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "Filens innehåll har satts in.";
|
||||
$strTheContents = "Filens innehåll ersätter den valda tabellens rader av primära och identiska nycklar.";
|
||||
$strTheTerminator = "Avslutninen av fälten.";
|
||||
$strTotal = "totalt";
|
||||
$strType = "Typ";
|
||||
$strSave = 'Spara';
|
||||
$strSelect = 'Välj';
|
||||
$strSelectFields = 'Välj fält (minst en):';
|
||||
$strSelectNumRows = 'i fråga';
|
||||
$strSend = 'Skicka';
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'Visa';
|
||||
$strShowingRecords = 'Visar insättningar ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-fråga';
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = 'CSV data';
|
||||
$strStrucData = 'Struktur och data';
|
||||
$strStrucDrop = 'Lägg till \'dumpa tabell\'';
|
||||
$strStrucOnly = 'Bara struktur';
|
||||
$strSubmit = 'Sänd';
|
||||
$strSuccess = 'Din SQL-fråga har utförts korrekt';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Unik";
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'tabell ';
|
||||
$strTableComments = 'Tabell kommentarer';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'Tabell struktur för tabell';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'avslutad av';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'Filens innehåll har satts in.';
|
||||
$strTheContents = 'Filens innehåll ersätter den valda tabellens rader av primära och identiska nycklar.';
|
||||
$strTheTerminator = 'Avslutninen av fälten.';
|
||||
$strTotal = 'totalt';
|
||||
$strType = 'Typ';
|
||||
|
||||
$strValue = "Värde";
|
||||
$strViewDump = "Visa dump (schema) av tabellen";
|
||||
$strViewDumpDB = "Visa dump (schema) av databas";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Unik';
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "Välkommen till ";
|
||||
$strWrongUser = "Fel användarnamn/lösenord. Åtkommst nekad.";
|
||||
$strValue = 'Värde';
|
||||
$strViewDump = 'Visa dump (schema) av tabellen';
|
||||
$strViewDumpDB = 'Visa dump (schema) av databas';
|
||||
|
||||
$strYes = "Ja";
|
||||
$strWelcome = 'Välkommen till ';
|
||||
$strWrongUser = 'Fel användarnamn/lösenord. Åtkommst nekad.';
|
||||
|
||||
$strYes = 'Ja';
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
@ -1,288 +1,291 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
$charset = "tis-620";
|
||||
$left_font_family = "sans-serif";
|
||||
$right_font_family = "sans-serif";
|
||||
$number_thousands_separator = ",";
|
||||
$number_decimal_separator = ".";
|
||||
$byteUnits = array("Bytes", "KB", "MB", "GB");
|
||||
$charset = 'tis-620';
|
||||
$left_font_family = 'sans-serif';
|
||||
$right_font_family = 'sans-serif';
|
||||
$number_thousands_separator = ',';
|
||||
$number_decimal_separator = '.';
|
||||
$byteUnits = array('Bytes', 'KB', 'MB', 'GB');
|
||||
|
||||
$strAccessDenied = "äÁè͹ØÒµãËéãªé§Ò¹";#Access denied";
|
||||
$strAction = "¡ÃзӡÒÃ";
|
||||
$strAddDeleteColumn = "Add/Delete Field Columns"; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = "Add/Delete Criteria Row"; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = "à¾ÔèÁ field ãËÁè";#"Add new field";
|
||||
$strAddPriv = "Add a new Privilege"; //to translate
|
||||
$strAddPrivMessage = "You have added a new privilege."; //to translate
|
||||
$strAddSearchConditions = "à¾ÔèÁà§×è͹䢤é¹ËÒ (ã¹Êèǹ¢Í§ where):";#"Add search conditions (body of the \"where\" clause):";
|
||||
$strAddUser = "Add a new User"; //to translate
|
||||
$strAddUserMessage = "You have added a new user."; //to translate
|
||||
$strAfter = "ËÅѧ";#"After";
|
||||
$strAll = "All"; //to translate
|
||||
$strAlterOrderBy = "Alter table order by"; //to translate
|
||||
$strAnalyzeTable = "Analyze table"; //to translate
|
||||
$strAnd = "And"; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = "ä´éà¾ÔèÁ index áÅéÇãËé¡Ñº ";#"An index has been added on ";
|
||||
$strAny = "Any"; //to translate
|
||||
$strAnyColumn = "Any Column"; //to translate
|
||||
$strAnyDatabase = "Any database"; //to translate
|
||||
$strAnyHost = "Any host"; //to translate
|
||||
$strAnyTable = "Any table"; //to translate
|
||||
$strAnyUser = "Any user"; //to translate
|
||||
$strAPrimaryKey = "ä´éà¾ÔèÁ primary key áÅéÇãËé¡Ñº ";#"A primary key has been added on ";
|
||||
$strAscending = "Ascending"; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = "·Õè¨Ø´àÃÔèÁµé¹¢Í§µÒÃÒ§";#"At Beginning of Table";
|
||||
$strAtEndOfTable = "·Õè¨Ø´ÊØ´·éÒ¢ͧµÒÃÒ§";#"At End of Table";
|
||||
$strAttr = "Attributes"; //to translate
|
||||
|
||||
$strBack = "Âé͹¡ÅѺ";#"Back";
|
||||
$strBookmarkLabel = "Label"; //to translate
|
||||
$strBookmarkQuery = "Bookmarked SQL-query"; //to translate
|
||||
$strBookmarkThis = "Bookmark this SQL-query"; //to translate
|
||||
$strBookmarkView = "View only"; //to translate
|
||||
$strBrowse = "à»Ô´´Ù";#"Browse";
|
||||
$strAccessDenied = 'äÁè͹ØÒµãËéãªé§Ò¹';
|
||||
$strAction = '¡ÃзӡÒÃ';
|
||||
$strAddDeleteColumn = 'Add/Delete Field Columns'; //to translate (tbl_qbe.php3)
|
||||
$strAddDeleteRow = 'Add/Delete Criteria Row'; //to translate (tbl_qbe.php3)
|
||||
$strAddNewField = 'à¾ÔèÁ field ãËÁè';
|
||||
$strAddPriv = 'Add a new Privilege'; //to translate
|
||||
$strAddPrivMessage = 'You have added a new privilege.'; //to translate
|
||||
$strAddSearchConditions = 'à¾ÔèÁà§×è͹䢤é¹ËÒ (ã¹Êèǹ¢Í§ where):';
|
||||
$strAddUser = 'Add a new User'; //to translate
|
||||
$strAddUserMessage = 'You have added a new user.'; //to translate
|
||||
$strAfter = 'ËÅѧ';
|
||||
$strAll = 'All'; //to translate
|
||||
$strAlterOrderBy = 'Alter table order by'; //to translate
|
||||
$strAnalyzeTable = 'Analyze table'; //to translate
|
||||
$strAnd = 'And'; //to translate (tbl_qbe.php3)
|
||||
$strAnIndex = 'ä´éà¾ÔèÁ index áÅéÇãËé¡Ñº ';
|
||||
$strAny = 'Any'; //to translate
|
||||
$strAnyColumn = 'Any Column'; //to translate
|
||||
$strAnyDatabase = 'Any database'; //to translate
|
||||
$strAnyHost = 'Any host'; //to translate
|
||||
$strAnyTable = 'Any table'; //to translate
|
||||
$strAnyUser = 'Any user'; //to translate
|
||||
$strAPrimaryKey = 'ä´éà¾ÔèÁ primary key áÅéÇãËé¡Ñº ';
|
||||
$strAscending = 'Ascending'; //to translate (tbl_qbe.php3)
|
||||
$strAtBeginningOfTable = '·Õè¨Ø´àÃÔèÁµé¹¢Í§µÒÃÒ§';
|
||||
$strAtEndOfTable = '·Õè¨Ø´ÊØ´·éÒ¢ͧµÒÃÒ§';
|
||||
$strAttr = 'Attributes'; //to translate
|
||||
|
||||
$strCantLoadMySQL = "cannot load MySQL extension,<br>please check PHP Configuration."; //to translate
|
||||
$strCarriage = "Carriage return: \\r"; //to translate
|
||||
$strChange = "à»ÅÕè¹";#"Change";
|
||||
$strCheckAll = "Check All"; //to translate
|
||||
$strCheckDbPriv = "Check Database Privileges"; //to translate
|
||||
$strCheckTable = "Check table"; //to translate
|
||||
$strColumn = "Column"; //to translate
|
||||
$strColumnEmpty = "The columns names are empty!"; //to translate
|
||||
$strColumnNames = "ª×èͤÍÅÑÁ¹ì";"Column names";
|
||||
$strCompleteInserts = "Complete inserts";
|
||||
$strConfirm = "Do you really want to do it?"; //to translate
|
||||
$strCopyTable = "ÊíÒà¹ÒµÒÃÒ§à»ç¹ :";#"Copy table to:";
|
||||
$strCopyTableOK = "µÒÃÒ§ %s ä´é·íÒ¡ÒÃÊíÒà¹Òä»à»ç¹ %s àÃÕºÃéÍÂáÅéÇ.";#"Table %s has been copied to %s.";
|
||||
$strCreate = "ÊÃéÒ§";#"Create";
|
||||
$strCreateNewDatabase = "ÊÃéÒ§°Ò¹¢éÍÁÙÅãËÁè";#"Create new database";
|
||||
$strCreateNewTable = "ÊÃéÒ§µÒÃÒ§ã¹°Ò¹¢éÍÁÙŹÕé ";#"Create new table on database ";
|
||||
$strCriteria = "Criteria"; //to translate (tbl_qbe.php3)
|
||||
$strBack = 'Âé͹¡ÅѺ';
|
||||
$strBookmarkLabel = 'Label'; //to translate
|
||||
$strBookmarkQuery = 'Bookmarked SQL-query'; //to translate
|
||||
$strBookmarkThis = 'Bookmark this SQL-query'; //to translate
|
||||
$strBookmarkView = 'View only'; //to translate
|
||||
$strBrowse = 'à»Ô´´Ù';
|
||||
|
||||
$strData = "Data"; //to translate
|
||||
$strDatabase = "°Ò¹¢éÍÁÙÅ ";#"Database ";
|
||||
$strDatabases = "°Ò¹¢éÍÁÙÅ";#"databases";
|
||||
$strDataOnly = "Data only"; //to translate
|
||||
$strDbEmpty = "The database name is empty!"; //to translate
|
||||
$strDefault = "Default"; //to translate
|
||||
$strDelete = "ź";#"Delete";
|
||||
$strDeleted = "źá¶ÇÍÍ¡àÃÕºÃéÍÂáÅéÇ";#"The row has been deleted";
|
||||
$strDeleteFailed = "Deleted Failed!"; //to translate
|
||||
$strDeletePassword = "Delete Password"; //to translate
|
||||
$strDeleteUserMessage = "You have deleted the user"; //to translate
|
||||
$strDelPassMessage = "You have deleted the password for"; //to translate
|
||||
$strDescending = "Desending"; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = "<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it."; //to translate
|
||||
$strDisplay = "áÊ´§¼Å";#"Display";
|
||||
$strDoAQuery = "Do a \"query by example\" (wildcard: \"%\")"; //to translate
|
||||
$strDocu = "àÍ¡ÊÒÃ/¤ÙèÁ×ÍÍéÒ§ÍÔ§";#"Documentation";
|
||||
$strDoYouReally = "µéͧ¡Ò÷Õè¨Ð ";#"Do you really want to ";
|
||||
$strDrop = "Drop"; //to translate
|
||||
$strDropDB = "Drop °Ò¹¢éÍÁÙÅ ";#"Drop database ";
|
||||
$strDumpingData = "Dump µÒÃÒ§";#"Dumping data for table";
|
||||
$strDynamic = "dynamic"; //to translate
|
||||
$strCantLoadMySQL = 'cannot load MySQL extension,<br />please check PHP Configuration.'; //to translate
|
||||
$strCarriage = 'Carriage return: \\r'; //to translate
|
||||
$strChange = 'à»ÅÕè¹';
|
||||
$strCheckAll = 'Check All'; //to translate
|
||||
$strCheckDbPriv = 'Check Database Privileges'; //to translate
|
||||
$strCheckTable = 'Check table'; //to translate
|
||||
$strColumn = 'Column'; //to translate
|
||||
$strColumnEmpty = 'The columns names are empty!'; //to translate
|
||||
$strColumnNames = 'ª×èͤÍÅÑÁ¹ì';
|
||||
$strCompleteInserts = 'Complete inserts';
|
||||
$strConfirm = 'Do you really want to do it?'; //to translate
|
||||
$strCopyTable = 'ÊíÒà¹ÒµÒÃÒ§à»ç¹ :';
|
||||
$strCopyTableOK = 'µÒÃÒ§ %s ä´é·íÒ¡ÒÃÊíÒà¹Òä»à»ç¹ %s àÃÕºÃéÍÂáÅéÇ.';
|
||||
$strCreate = 'ÊÃéÒ§';
|
||||
$strCreateNewDatabase = 'ÊÃéÒ§°Ò¹¢éÍÁÙÅãËÁè';
|
||||
$strCreateNewTable = 'ÊÃéÒ§µÒÃÒ§ã¹°Ò¹¢éÍÁÙŹÕé ';
|
||||
$strCriteria = 'Criteria'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strEdit = "á¡éä¢";#"Edit";
|
||||
$strEditPrivileges = "Edit Privileges"; //to translate
|
||||
$strEffective = "Effective"; //to translate
|
||||
$strEmpty = "ź¢éÍÁÙÅ";#"Empty";
|
||||
$strEmptyResultSet = "MySQL ¤×¹¼ÅÇèÒ§à»ÅèÒ¡ÅѺÁÒ (0 á¶Ç).";#"MySQL returned an empty result set (i.e. zero rows).";
|
||||
$strEnableMagicQuotes = "<b>Warning:</b> You haven't enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it."; //to translate
|
||||
$strEnclosedBy = "ÅéÍÁ´éÇÂ";#"enclosed by";
|
||||
$strEnd = "·éÒÂÊØ´";
|
||||
$strError = "¼Ô´¾ÅÒ´";#"Error";
|
||||
$strEscapedBy = "escape ´éÇÂ";#"escaped by";
|
||||
$strExtra = "Extra"; //to translate
|
||||
$strData = 'Data'; //to translate
|
||||
$strDatabase = '°Ò¹¢éÍÁÙÅ ';
|
||||
$strDatabases = '°Ò¹¢éÍÁÙÅ';
|
||||
$strDataOnly = 'Data only'; //to translate
|
||||
$strDbEmpty = 'The database name is empty!'; //to translate
|
||||
$strDefault = 'Default'; //to translate
|
||||
$strDelete = 'ź';
|
||||
$strDeleted = 'źá¶ÇÍÍ¡àÃÕºÃéÍÂáÅéÇ';
|
||||
$strDeleteFailed = 'Deleted Failed!'; //to translate
|
||||
$strDeletePassword = 'Delete Password'; //to translate
|
||||
$strDeleteUserMessage = 'You have deleted the user'; //to translate
|
||||
$strDelPassMessage = 'You have deleted the password for'; //to translate
|
||||
$strDescending = 'Desending'; //to translate (tbl_qbe.php3)
|
||||
$strDisableMagicQuotes = '<b>Warning:</b> You have enabled magic_quotes_gpc in your PHP configuration. This version of PhpMyAdmin cannot work properly with it. Please have a look at the configuration section of the PHP manual for information on how to disable it.'; //to translate
|
||||
$strDisplay = 'áÊ´§¼Å';
|
||||
$strDoAQuery = 'Do a "query by example" (wildcard: "%")'; //to translate
|
||||
$strDocu = 'àÍ¡ÊÒÃ/¤ÙèÁ×ÍÍéÒ§ÍÔ§';
|
||||
$strDoYouReally = 'µéͧ¡Ò÷Õè¨Ð ';
|
||||
$strDrop = 'Drop'; //to translate
|
||||
$strDropDB = 'Drop °Ò¹¢éÍÁÙÅ ';
|
||||
$strDumpingData = 'Dump µÒÃÒ§';
|
||||
$strDynamic = 'dynamic'; //to translate
|
||||
|
||||
$strField = "Field"; //to translate
|
||||
$strFields = "¨Ó¹Ç¹ Fields";
|
||||
$strFixed = "fixed"; //to translate
|
||||
$strFormat = "Format"; //to translate
|
||||
$strFunction = "Function"; //to translate
|
||||
$strEdit = 'á¡éä¢';
|
||||
$strEditPrivileges = 'Edit Privileges'; //to translate
|
||||
$strEffective = 'Effective'; //to translate
|
||||
$strEmpty = 'ź¢éÍÁÙÅ';
|
||||
$strEmptyResultSet = 'MySQL ¤×¹¼ÅÇèÒ§à»ÅèÒ¡ÅѺÁÒ (0 á¶Ç).';
|
||||
$strEnableMagicQuotes = '<b>Warning:</b> You haven\'t enabled magic_quotes_gpc in your PHP configuration. PhpMyAdmin needs this to work properly. Please have a look at the configuration section of the PHP manual for information on how to enable it.'; //to translate
|
||||
$strEnclosedBy = 'ÅéÍÁ´éÇÂ';
|
||||
$strEnd = '·éÒÂÊØ´';
|
||||
$strError = '¼Ô´¾ÅÒ´';
|
||||
$strEscapedBy = 'escape ´éÇÂ';
|
||||
$strExtra = 'Extra'; //to translate
|
||||
|
||||
$strGenTime = "Generation Time"; //to translate
|
||||
$strGo = "ŧÁ×Í";#"Go";
|
||||
$strGrants = "Grants"; //to translate
|
||||
$strField = 'Field'; //to translate
|
||||
$strFields = '¨Ó¹Ç¹ Fields';
|
||||
$strFixed = 'fixed'; //to translate
|
||||
$strFormat = 'Format'; //to translate
|
||||
$strFunction = 'Function'; //to translate
|
||||
|
||||
$strHasBeenAltered = "ä´éà»ÅÕè¹á»Å§áÅéÇ";#"has been altered.";
|
||||
$strHasBeenCreated = "ä´é¶Ù¡ÊÃéÒ§áÅéÇ";#"has been created.";
|
||||
$strHasBeenDropped = "ä´é·Ó¡Òà drop áÅéÇ";#"has been dropped.";
|
||||
$strHasBeenEmptied = "ä´é·ÓãËéÇèÒ§áÅéÇ";#"has been emptied.";
|
||||
$strHome = "Home"; //to translate
|
||||
$strHomepageOfficial = "Official phpMyAdmin Homepage"; //to translate
|
||||
$strHomepageSourceforge = "Sourceforge phpMyAdmin Download Page"; //to translate
|
||||
$strHost = "Host"; //to translate
|
||||
$strHostEmpty = "The host name is empty!"; //to translate
|
||||
$strGenTime = 'Generation Time'; //to translate
|
||||
$strGo = 'ŧÁ×Í';
|
||||
$strGrants = 'Grants'; //to translate
|
||||
|
||||
$strIfYouWish = "If you wish to load only some of a table's columns, specify a comma separated field list."; //to translate
|
||||
$strIndex = "Index"; //to translate
|
||||
$strIndexes = "Indexes"; //to translate
|
||||
$strInsert = "á·Ã¡";#"Insert";
|
||||
$strInsertAsNewRow = "Insert as new row"; //to translate
|
||||
$strInsertIntoTable = "á·Ã¡à¢éÒä»ã¹µÒÃÒ§";#"Insert into table";
|
||||
$strInsertNewRow = "á·Ã¡á¶ÇãËÁè";#"Insert new row";
|
||||
$strInsertTextfiles = "á·Ã¡¢éÍÁÙŨҡ text file à¢éÒä»ã¹µÒÃÒ§";#"Insert textfiles into table";
|
||||
$strInUse = "in use"; //to translate
|
||||
$strHasBeenAltered = 'ä´éà»ÅÕè¹á»Å§áÅéÇ';
|
||||
$strHasBeenCreated = 'ä´é¶Ù¡ÊÃéÒ§áÅéÇ';
|
||||
$strHasBeenDropped = 'ä´é·Ó¡Òà drop áÅéÇ';
|
||||
$strHasBeenEmptied = 'ä´é·ÓãËéÇèÒ§áÅéÇ';
|
||||
$strHome = 'Home'; //to translate
|
||||
$strHomepageOfficial = 'Official phpMyAdmin Homepage'; //to translate
|
||||
$strHomepageSourceforge = 'Sourceforge phpMyAdmin Download Page'; //to translate
|
||||
$strHost = 'Host'; //to translate
|
||||
$strHostEmpty = 'The host name is empty!'; //to translate
|
||||
|
||||
$strKeyname = "ª×èÍ key";#"Keyname";
|
||||
$strKill = "Kill"; //to translate
|
||||
$strIfYouWish = 'If you wish to load only some of a table\'s columns, specify a comma separated field list.'; //to translate
|
||||
$strIndex = 'Index'; //to translate
|
||||
$strIndexes = 'Indexes'; //to translate
|
||||
$strInsert = 'á·Ã¡';
|
||||
$strInsertAsNewRow = 'Insert as new row'; //to translate
|
||||
$strInsertIntoTable = 'á·Ã¡à¢éÒä»ã¹µÒÃÒ§';
|
||||
$strInsertNewRow = 'á·Ã¡á¶ÇãËÁè';
|
||||
$strInsertTextfiles = 'á·Ã¡¢éÍÁÙŨҡ text file à¢éÒä»ã¹µÒÃÒ§';
|
||||
$strInUse = 'in use'; //to translate
|
||||
|
||||
$strLength = "Length"; //to translate
|
||||
$strLengthSet = "¤ÇÒÁÂÒÇ/૵";#"Length/Set";
|
||||
$strLimitNumRows = "ÃÐàºÕ¹ µèÍ˹éÒ";#"records per page";
|
||||
$strLineFeed = "Linefeed: \\n"; //to translate
|
||||
$strLines = "ºÃ÷Ѵ";#"Lines";
|
||||
$strLocationTextfile = "µÓá˹觢ͧ text file";#"Location of the textfile";
|
||||
$strLogin = ""; //to translate, but its not in use ...
|
||||
$strLogout = "Log out"; //to translate
|
||||
$strKeyname = 'ª×èÍ key';
|
||||
$strKill = 'Kill'; //to translate
|
||||
|
||||
$strModifications = "ºÑ¹·Ö¡¡ÒÃá¡éä¢àÃÕºÃéÍÂáÅéÇ";#"Modifications have been saved";
|
||||
$strModify = "Modify"; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = "MySQL reloaded."; //to translate
|
||||
$strMySQLSaid = "MySQL said: "; //to translate
|
||||
$strMySQLShowProcess = "áÊ´§ process µèÒ§ æ";#"Show processes";
|
||||
$strMySQLShowStatus = "áÊ´§¢éÍÁÙÅ runtime ¢Í§ MySQL";#"Show MySQL runtime information";
|
||||
$strMySQLShowVars = "áÊ´§µÑÇá»ÃÃкº¢Í§ MySQL";#"Show MySQL system variables";
|
||||
$strLength = 'Length'; //to translate
|
||||
$strLengthSet = '¤ÇÒÁÂÒÇ/૵';
|
||||
$strLimitNumRows = 'ÃÐàºÕ¹ µèÍ˹éÒ';
|
||||
$strLineFeed = 'Linefeed: \\n'; //to translate
|
||||
$strLines = 'ºÃ÷Ѵ';
|
||||
$strLocationTextfile = 'µÓá˹觢ͧ text file';
|
||||
$strLogin = ''; //to translate, but its not in use ...
|
||||
$strLogout = 'Log out'; //to translate
|
||||
|
||||
$strName = "ª×èÍ";#"Name";
|
||||
$strNext = "µèÍä»";#"Next";
|
||||
$strNo = "No"; //to translate
|
||||
$strNoPassword = "No Password"; //to translate
|
||||
$strNoPrivileges = "No Privileges"; //to translate
|
||||
$strNoRights = "You don't have enough rights to be here right now!"; //to translate
|
||||
$strNoTablesFound = "äÁ辺µÒÃÒ§ã´ æ ã¹°Ò¹¢éÍÁÙÅ";#"No tables found in database.";
|
||||
$strNoUsersFound = "No user(s) found."; //to translate
|
||||
$strNull = "Null"; //to translate
|
||||
$strNumberIndexes = " Number of advanced indexes "; //to translate
|
||||
$strModifications = 'ºÑ¹·Ö¡¡ÒÃá¡éä¢àÃÕºÃéÍÂáÅéÇ';
|
||||
$strModify = 'Modify'; //to translate (tbl_qbe.php3)
|
||||
$strMySQLReloaded = 'MySQL reloaded.'; //to translate
|
||||
$strMySQLSaid = 'MySQL said: '; //to translate
|
||||
$strMySQLShowProcess = 'áÊ´§ process µèÒ§ æ';
|
||||
$strMySQLShowStatus = 'áÊ´§¢éÍÁÙÅ runtime ¢Í§ MySQL';
|
||||
$strMySQLShowVars = 'áÊ´§µÑÇá»ÃÃкº¢Í§ MySQL';
|
||||
|
||||
$strOftenQuotation = "Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the \"enclosed by\"-character."; //to translate
|
||||
$strOptimizeTable = "Optimize table"; //to translate
|
||||
$strOptionalControls = "Optional. Controls how to write or read special characters."; //to translate
|
||||
$strOptionally = "OPTIONALLY"; //to translate
|
||||
$strOr = "ËÃ×Í";#"or";
|
||||
$strOverhead = "Overhead"; //to translate
|
||||
$strName = 'ª×èÍ';
|
||||
$strNext = 'µèÍä»';
|
||||
$strNo = 'No'; //to translate
|
||||
$strNoPassword = 'No Password'; //to translate
|
||||
$strNoPrivileges = 'No Privileges'; //to translate
|
||||
$strNoRights = 'You don\'t have enough rights to be here right now!'; //to translate
|
||||
$strNoTablesFound = 'äÁ辺µÒÃÒ§ã´ æ ã¹°Ò¹¢éÍÁÙÅ';
|
||||
$strNoUsersFound = 'No user(s) found.'; //to translate
|
||||
$strNull = 'Null'; //to translate
|
||||
$strNumberIndexes = ' Number of advanced indexes '; //to translate
|
||||
|
||||
$strPassword = "Password"; //to translate
|
||||
$strPasswordEmpty = "The password is empty!"; //to translate
|
||||
$strPasswordNotSame = "The passwords aren't the same!"; //to translate
|
||||
$strPHPVersion = "PHP Version"; //to translate
|
||||
$strPos1 = "¨Ø´àÃÔèÁµé¹";#"Begin";
|
||||
$strPrevious = "¡è͹˹éÒ";#"Previous";
|
||||
$strPrimary = "Primary"; //to translate
|
||||
$strPrimaryKey = "Primary key"; //to translate
|
||||
$strPrinterFriendly = "Printer friendly version of above table"; //to translate
|
||||
$strPrintView = "Print view"; //to translate
|
||||
$strPrivileges = "Privileges"; //to translate
|
||||
$strProducedAnError = "produced an error."; //to translate
|
||||
$strProperties = "¤Ø³ÊÁºÑµÔ";#"Properties";
|
||||
$strOftenQuotation = 'Often quotation marks. OPTIONALLY means that only char and varchar fields are enclosed by the "enclosed by"-character.'; //to translate
|
||||
$strOptimizeTable = 'Optimize table'; //to translate
|
||||
$strOptionalControls = 'Optional. Controls how to write or read special characters.'; //to translate
|
||||
$strOptionally = 'OPTIONALLY'; //to translate
|
||||
$strOr = 'ËÃ×Í';
|
||||
$strOverhead = 'Overhead'; //to translate
|
||||
|
||||
$strQBE = "Query by Example"; //to translate
|
||||
$strQBEDel = "Del"; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = "Ins"; //to translate (used in tbl_qbe.php3)
|
||||
$strPassword = 'Password'; //to translate
|
||||
$strPasswordEmpty = 'The password is empty!'; //to translate
|
||||
$strPasswordNotSame = 'The passwords aren\'t the same!'; //to translate
|
||||
$strPHPVersion = 'PHP Version'; //to translate
|
||||
$strPos1 = '¨Ø´àÃÔèÁµé¹';
|
||||
$strPrevious = '¡è͹˹éÒ';
|
||||
$strPrimary = 'Primary'; //to translate
|
||||
$strPrimaryKey = 'Primary key'; //to translate
|
||||
$strPrinterFriendly = 'Printer friendly version of above table'; //to translate
|
||||
$strPrintView = 'Print view'; //to translate
|
||||
$strPrivileges = 'Privileges'; //to translate
|
||||
$strProducedAnError = 'produced an error.'; //to translate
|
||||
$strProperties = '¤Ø³ÊÁºÑµÔ';
|
||||
|
||||
$strReadTheDocs = "ÍèÒ¹¤ÙèÁ×Í";#"Read the docs";
|
||||
$strRecords = "ÃÐàºÕ¹";
|
||||
$strReloadFailed = "MySQL reload failed."; //to translate
|
||||
$strReloadMySQL = "Reload MySQL"; //to translate
|
||||
$strRememberReload = "Remember reload the server."; //to translate
|
||||
$strRenameTable = "à»ÅÕ蹪×è͵ÒÃÒ§à»ç¹";#"Rename table to";
|
||||
$strRenameTableOK = "µÒÃÒ§ %s ä´é¶Ù¡à»ÅÕ蹪×èÍà»ç¹ %s";#"Table %s has been renamed to %s";
|
||||
$strRepairTable = "Repair table"; //to translate
|
||||
$strReplace = "á·¹·Õè";#"Replace";
|
||||
$strReplaceTable = "á·¹·Õè¢éÍÁÙÅ´éÇÂä¿Åì";#"Replace table data with file";
|
||||
$strReset = "Reset"; //to translate
|
||||
$strReType = "Re-type"; //to translate
|
||||
$strRevoke = "Revoke"; //to translate
|
||||
$strRevokeGrant = "Revoke Grant"; //to translate
|
||||
$strRevokeGrantMessage = "You have revoked the Grant privilege for"; //to translate
|
||||
$strRevokeMessage = "You have revoked the privileges for"; //to translate
|
||||
$strRevokePriv = "Revoke Privileges"; //to translate
|
||||
$strRowLength = "Row length"; //to translate
|
||||
$strRows = "Rows"; //to translate
|
||||
$strRowsFrom = "á¶Ç àÃÔèÁ¨Ò¡á¶Ç·Õè";#"rows starting from";
|
||||
$strRowsStatistic = "Row Statistic"; //to translate
|
||||
$strRunning = "running on "; //to translate
|
||||
$strRunQuery = "Submit Query"; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = "·Ó§Ò¹¤íÒÊÑè§ SQL query/queries ¡Ñº°Ò¹¢éÍÁÙŹÕé ";#"Run SQL query/queries on database ";
|
||||
$strQBE = 'Query by Example'; //to translate
|
||||
$strQBEDel = 'Del'; //to translate (used in tbl_qbe.php3)
|
||||
$strQBEIns = 'Ins'; //to translate (used in tbl_qbe.php3)
|
||||
|
||||
$strSave = "à¡çººÑ¹·Ö¡";#"Save";
|
||||
$strSelect = "àÅ×Í¡";#"Select";
|
||||
$strSelectFields = "àÅ×Í¡ field (ÍÂèÒ§¹éÍÂ˹Öè§):";#"Select fields (at least one):";
|
||||
$strSelectNumRows = "in query"; //to translate
|
||||
$strSend = "Send"; //to translate
|
||||
$strSequence = "Seq."; //to translate
|
||||
$strServerVersion = "Server version"; //to translate
|
||||
$strShow = "áÊ´§";#"Show";
|
||||
$strShowingRecords = "áÊ´§ÃÐàºÕ¹·Õè ";#"Showing records ";
|
||||
$strSingly = "(singly)"; //to translate
|
||||
$strSize = "Size"; //to translate
|
||||
$strSort = "Sort"; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = "Space usage"; //to translate
|
||||
$strSQLQuery = "SQL-query"; //to translate
|
||||
$strStatement = "Statements"; //to translate
|
||||
$strStrucCSV = "¢éÍÁÙÅ CSV";#"CSV data";
|
||||
$strStrucData = "·Ñé§â¤Ã§ÊÃéÒ§áÅТéÍÁÙÅ";#"Structure and data";
|
||||
$strStrucDrop = "à¾ÔèÁ 'drop table'";#"Add 'drop table'";
|
||||
$strStrucOnly = "੾ÒÐâ¤Ã§ÊÃéÒ§";#"Structure only";
|
||||
$strSubmit = "Submit"; //to translate
|
||||
$strSuccess = "·Ó§Ò¹ SQL-query àÊÃç¨àÃÕºÃéÍÂáÅéÇ";#"Your SQL-query has been executed successfully";
|
||||
$strSum = "Sum"; //to translate
|
||||
$strReadTheDocs = 'ÍèÒ¹¤ÙèÁ×Í';
|
||||
$strRecords = 'ÃÐàºÕ¹';
|
||||
$strReloadFailed = 'MySQL reload failed.'; //to translate
|
||||
$strReloadMySQL = 'Reload MySQL'; //to translate
|
||||
$strRememberReload = 'Remember reload the server.'; //to translate
|
||||
$strRenameTable = 'à»ÅÕ蹪×è͵ÒÃÒ§à»ç¹';
|
||||
$strRenameTableOK = 'µÒÃÒ§ %s ä´é¶Ù¡à»ÅÕ蹪×èÍà»ç¹ %s';
|
||||
$strRepairTable = 'Repair table'; //to translate
|
||||
$strReplace = 'á·¹·Õè';
|
||||
$strReplaceTable = 'á·¹·Õè¢éÍÁÙÅ´éÇÂä¿Åì';
|
||||
$strReset = 'Reset'; //to translate
|
||||
$strReType = 'Re-type'; //to translate
|
||||
$strRevoke = 'Revoke'; //to translate
|
||||
$strRevokeGrant = 'Revoke Grant'; //to translate
|
||||
$strRevokeGrantMessage = 'You have revoked the Grant privilege for'; //to translate
|
||||
$strRevokeMessage = 'You have revoked the privileges for'; //to translate
|
||||
$strRevokePriv = 'Revoke Privileges'; //to translate
|
||||
$strRowLength = 'Row length'; //to translate
|
||||
$strRows = 'Rows'; //to translate
|
||||
$strRowsFrom = 'á¶Ç àÃÔèÁ¨Ò¡á¶Ç·Õè';
|
||||
$strRowsStatistic = 'Row Statistic'; //to translate
|
||||
$strRunning = 'running on '; //to translate
|
||||
$strRunQuery = 'Submit Query'; //to translate (tbl_qbe.php3)
|
||||
$strRunSQLQuery = '·Ó§Ò¹¤íÒÊÑè§ SQL query/queries ¡Ñº°Ò¹¢éÍÁÙŹÕé ';
|
||||
|
||||
$strTable = "µÒÃÒ§ ";#"table ";
|
||||
$strTableComments = "ËÁÒÂà˵آͧµÒÃÒ§¹Õé";#"Table comments";
|
||||
$strTableEmpty = "The table name is empty!"; //to translate
|
||||
$strTableMaintenance = "Table maintenance"; //to translate
|
||||
$strTableStructure = "â¤Ã§ÊÃéÒ§µÒÃÒ§ ÊÓËÃѺµÒÃÒ§";#"Table structure for table";
|
||||
$strTableType = "Table type"; //to translate
|
||||
$strTerminatedBy = "ÊÔé¹ÊØ´´éÇÂà¤Ã×èͧËÁÒÂ";#"terminated by";
|
||||
$strTextAreaLength = " Because of its length,<br> this field might not be editable "; //to translate
|
||||
$strTheContent = "á·Ã¡¢éÍÁÙŨҡä¿Åì¢Í§¤Ø³áÅéÇ";#"The content of your file has been inserted.";
|
||||
$strTheContents = "The contents of the file replaces the contents of the selected table for rows with identical primary or unique key."; //to translate
|
||||
$strTheTerminator = "¨Ø´ÊÔé¹ÊØ´¢Í§ field.";#"The terminator of the fields.";
|
||||
$strTotal = "·Ñé§ËÁ´";#"total";
|
||||
$strType = "Type"; //to translate
|
||||
$strSave = 'à¡çººÑ¹·Ö¡';
|
||||
$strSelect = 'àÅ×Í¡';
|
||||
$strSelectFields = 'àÅ×Í¡ field (ÍÂèÒ§¹éÍÂ˹Öè§):';
|
||||
$strSelectNumRows = 'in query'; //to translate
|
||||
$strSend = 'Send'; //to translate
|
||||
$strSequence = 'Seq.'; //to translate
|
||||
$strServerVersion = 'Server version'; //to translate
|
||||
$strShow = 'áÊ´§';
|
||||
$strShowingRecords = 'áÊ´§ÃÐàºÕ¹·Õè ';
|
||||
$strSingly = '(singly)'; //to translate
|
||||
$strSize = 'Size'; //to translate
|
||||
$strSort = 'Sort'; //to translate (tbl_qbe.php3)
|
||||
$strSpaceUsage = 'Space usage'; //to translate
|
||||
$strSQLQuery = 'SQL-query'; //to translate
|
||||
$strStatement = 'Statements'; //to translate
|
||||
$strStrucCSV = '¢éÍÁÙÅ CSV';
|
||||
$strStrucData = '·Ñé§â¤Ã§ÊÃéÒ§áÅТéÍÁÙÅ';
|
||||
$strStrucDrop = 'à¾ÔèÁ \'drop table\'';
|
||||
$strStrucOnly = '੾ÒÐâ¤Ã§ÊÃéÒ§';
|
||||
$strSubmit = 'Submit'; //to translate
|
||||
$strSuccess = '·Ó§Ò¹ SQL-query àÊÃç¨àÃÕºÃéÍÂáÅéÇ';
|
||||
$strSum = 'Sum'; //to translate
|
||||
|
||||
$strUncheckAll = "Uncheck All"; //to translate
|
||||
$strUnique = "Unique"; //to translate
|
||||
$strUpdatePassMessage = "You have updated the password for"; //to translate
|
||||
$strUpdatePassword = "Update Password"; //to translate
|
||||
$strUpdatePrivMessage = "You have updated the privileges for"; //to translate
|
||||
$strUpdateQuery = "Update Query"; //to translate (tbl_qbe.php3)
|
||||
$strUsage = "Usage"; //to translate
|
||||
$strUser = "User"; //to translate
|
||||
$strUserEmpty = "The user name is empty!"; //to translate
|
||||
$strUserName = "User name"; //to translate
|
||||
$strUsers = "Users"; //to translate
|
||||
$strUseTables = "Use Tables"; //to translate (tbl_qbe.php3)
|
||||
$strTable = 'µÒÃÒ§ ';
|
||||
$strTableComments = 'ËÁÒÂà˵آͧµÒÃÒ§¹Õé';
|
||||
$strTableEmpty = 'The table name is empty!'; //to translate
|
||||
$strTableMaintenance = 'Table maintenance'; //to translate
|
||||
$strTableStructure = 'â¤Ã§ÊÃéÒ§µÒÃÒ§ ÊÓËÃѺµÒÃÒ§';
|
||||
$strTableType = 'Table type'; //to translate
|
||||
$strTerminatedBy = 'ÊÔé¹ÊØ´´éÇÂà¤Ã×èͧËÁÒÂ';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable '; //to translate
|
||||
$strTheContent = 'á·Ã¡¢éÍÁÙŨҡä¿Åì¢Í§¤Ø³áÅéÇ';
|
||||
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.'; //to translate
|
||||
$strTheTerminator = '¨Ø´ÊÔé¹ÊØ´¢Í§ field.';
|
||||
$strTotal = '·Ñé§ËÁ´';
|
||||
$strType = 'Type'; //to translate
|
||||
|
||||
$strValue = "Value"; //to translate
|
||||
$strViewDump = "´Ùâ¤Ã§ÊÃéÒ§¢Í§µÒÃÒ§";#"View dump (schema) of table";
|
||||
$strViewDumpDB = "´Ùâ¤Ã§ÊÃéÒ§¢Í§°Ò¹¢éÍÁÙÅ";#"View dump (schema) of database";
|
||||
$strUncheckAll = 'Uncheck All'; //to translate
|
||||
$strUnique = 'Unique'; //to translate
|
||||
$strUpdatePassMessage = 'You have updated the password for'; //to translate
|
||||
$strUpdatePassword = 'Update Password'; //to translate
|
||||
$strUpdatePrivMessage = 'You have updated the privileges for'; //to translate
|
||||
$strUpdateQuery = 'Update Query'; //to translate (tbl_qbe.php3)
|
||||
$strUsage = 'Usage'; //to translate
|
||||
$strUser = 'User'; //to translate
|
||||
$strUserEmpty = 'The user name is empty!'; //to translate
|
||||
$strUserName = 'User name'; //to translate
|
||||
$strUsers = 'Users'; //to translate
|
||||
$strUseTables = 'Use Tables'; //to translate (tbl_qbe.php3)
|
||||
|
||||
$strWelcome = "ÂÔ¹´Õµé͹ÃѺÊÙè ";#"Welcome to ";
|
||||
$strWrongUser = "Wrong username/password. Access denied."; //to translate
|
||||
$strValue = 'Value'; //to translate
|
||||
$strViewDump = '´Ùâ¤Ã§ÊÃéÒ§¢Í§µÒÃÒ§';
|
||||
$strViewDumpDB = '´Ùâ¤Ã§ÊÃéÒ§¢Í§°Ò¹¢éÍÁÙÅ';
|
||||
|
||||
$strYes = "Yes"; //to translate
|
||||
$strWelcome = 'ÂÔ¹´Õµé͹ÃѺÊÙè ';
|
||||
$strWrongUser = 'Wrong username/password. Access denied.'; //to translate
|
||||
|
||||
$strYes = 'Yes'; //to translate
|
||||
|
||||
// automatic generated by langxlorer.php (June 27, 2001, 6:53 pm)
|
||||
// V0.11 - experimental (Steve Alberty - alberty@neptunlabs.de)
|
||||
$strBinary=" Binary "; //to translate
|
||||
$strBinaryDoNotEdit=" Binary - do not edit "; //to translate
|
||||
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; //to translate
|
||||
$strNotNumber = "This is not a number!"; //to translate
|
||||
$strNotValidNumber = " is not a valid row number!"; //to translate
|
||||
$strBinary = ' Binary '; //to translate
|
||||
$strBinaryDoNotEdit = ' Binary - do not edit '; //to translate
|
||||
$strEnglishPrivileges = ' Note: MySQL privilege names are expressed in English '; //to translate
|
||||
$strNotNumber = 'This is not a number!'; //to translate
|
||||
$strNotValidNumber = ' is not a valid row number!'; //to translate
|
||||
|
||||
// export Zip (July 07, 2001, 19:48am)
|
||||
$strBzip = "\"bzipped\"";
|
||||
$strGzip = "\"gzipped\""; //to translate
|
||||
$strOffSet = "Offset";
|
||||
$strNbRecords = "No. Of records";
|
||||
$strRowSize=" Row size "; //to translate
|
||||
$strShowThisQuery=" Show this query here again "; //to translate
|
||||
$strUseBackquotes=" Use backquotes with tables and fields names "; //to translate
|
||||
$strQueryOnDb=" SQL-query on database "; //to translate
|
||||
$strFieldsEmpty=" The field count is empty! "; //to translate
|
||||
$strAffectedRows=" Rows affected: "; //to translate
|
||||
$strBzip = '"bzipped"';
|
||||
$strGzip = '"gzipped"'; //to translate
|
||||
|
||||
// To translate
|
||||
$strAffectedRows = 'Affected rows:';
|
||||
$strFieldsEmpty = ' The field count is empty! '; //to translate
|
||||
$strNbRecords = 'no. of records';
|
||||
$strOffSet = 'offset';
|
||||
$strQueryOnDb = 'SQL-query on database ';
|
||||
$strRowSize = ' Row size '; //to translate
|
||||
$strShowThisQuery = ' Show this query here again '; //to translate
|
||||
$strUseBackquotes = 'Use backquotes with tables and fields\' names';
|
||||
?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user