RELEASE 0.9.4a

This commit is contained in:
Deon George 2009-06-30 18:13:22 +10:00
parent 97297cd99b
commit 4ddc73d883
27 changed files with 1660 additions and 992 deletions

View File

@ -1 +1 @@
0.9.4
0.9.4a

View File

@ -1,4 +1,4 @@
$Header: /cvsroot/phpldapadmin/phpldapadmin/doc/CREDITS,v 1.12 2004/03/25 12:50:39 uugdave Exp $
$Header: /cvsroot/phpldapadmin/phpldapadmin/doc/CREDITS,v 1.13 2004/05/06 20:04:26 i18phpldapadmin Exp $
* Project Developers:
- David Smith Maintainer
@ -36,6 +36,7 @@ $Header: /cvsroot/phpldapadmin/phpldapadmin/doc/CREDITS,v 1.12 2004/03/25 12:50:
Aleksey Soldatov
- Unknown Italian
- Alexandre Maciel Brasilian (Portuguese)
Elton (CLeGi)
- Piotr Tarnowski (DrFugazi) Polish
- Gunnar Nystrom Swedish

View File

@ -31,7 +31,9 @@ if( ! function_exists( 'mhash' ) && ! function_exists( 'mhash_keygen_s2k' ) ) {
$emuhash_openssl = '/usr/bin/openssl';
// don't create mhash functions if we don't have a working openssl
if ( ! is_executable( $emuhash_openssl ) ) {
if( ! file_exists( $emuhash_openssl ) )
unset( $emuhash_openssl );
elseif ( function_exists( 'is_executable' ) && ! is_executable( $emuhash_openssl ) ) {
unset( $emuhash_openssl );
} else {
@ -57,6 +59,8 @@ function openssl_hash( $openssl_hash_id, $password_clear ) {
set_magic_quotes_runtime( 0 );
$tmpfile = tempnam( $emuhash_temp_dir, "emuhash" );
$pwhandle = fopen( $tmpfile, "w" );
if( ! $pwhandle )
pla_error( "Unable to create a temporary file '$tmpfile' to create hashed password" );
fwrite( $pwhandle, $password_clear );
fclose( $pwhandle );
$cmd = $emuhash_openssl . ' ' . $openssl_hash_id . ' -binary < ' . $tmpfile;

View File

@ -1,7 +1,6 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/export.php,v 1.5 2004/03/19 20:13:08 i18phpldapadmin Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/export.php,v 1.6 2004/05/05 23:22:57 xrenard Exp $
require 'common.php';
require 'export_functions.php';
// get the POST parameters

View File

@ -1,5 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/export_form.php,v 1.6 2004/03/19 20:13:08 i18phpldapadmin Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/export_form.php,v 1.7 2004/05/05 23:21:57 xrenard Exp $
/**
* export_form.php
@ -9,7 +9,6 @@
*
*/
require 'common.php';
require 'export_functions.php';
$server_id = isset( $_GET['server_id'] ) ? $_GET['server_id']:NULL ;

View File

@ -1,5 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/functions.php,v 1.177 2004/05/01 13:53:52 uugdave Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/functions.php,v 1.180 2004/05/08 13:28:56 uugdave Exp $
/**
@ -692,6 +692,22 @@ function show_hints()
return true;
}
/**
* Determines if the user has enabled auto uidNumbers for the specified server ID.
*
* @param int $server_id The id of the server of interest.
* @return bool True if auto uidNumbers are enabled, false otherwise.
*/
function auto_uid_numbers_enabled( $server_id )
{
global $servers;
if( isset( $servers[$server_id]['enable_auto_uid_numbers'] ) &&
true == $servers[$server_id]['enable_auto_uid_numbers'] )
return true;
else
return false;
}
/**
* For hosts who have 'enable_auto_uid_numbers' set to true, this function will
* get the next available uidNumber using the host's preferred mechanism
@ -723,6 +739,8 @@ function get_next_uid_number( $server_id )
// Some error checking
if( ! check_server_id( $server_id ) )
return false;
if( ! auto_uid_numbers_enabled( $server_id ) )
return false;
$server_name = isset( $servers[ $server_id ]['name'] ) ?
$servers[$server_id]['name'] :
"Server $server_id";
@ -926,7 +944,7 @@ function is_attr_binary( $server_id, $attr_name )
return true;
}
@require_once realpath( 'schema_functions.php' );
@require_once realpath( './schema_functions.php' );
// See what the server schema says about this attribute
$schema_attr = get_schema_attribute( $server_id, $attr_name );

View File

@ -1,5 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/index.php,v 1.22 2004/03/19 20:13:08 i18phpldapadmin Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/index.php,v 1.23 2004/05/05 12:30:32 uugdave Exp $
/*******************************************
@ -68,6 +68,7 @@ echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
*/
function check_config()
{
global $lang;
/* Make sure their PHP version is current enough */
if( strcmp( phpversion(), REQUIRED_PHP_VERSION ) < 0 ) {
pla_error( "phpLDAPadmin requires PHP version 4.1.0 or greater. You are using " . phpversion() );

View File

@ -1,7 +1,7 @@
#
# This Makefile (lang/Makefile) converts the source lang files to UTF8
# coding. You need iconv installed to use it.
# $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/Makefile,v 1.18 2004/03/19 20:25:50 i18phpldapadmin Exp $
# $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/Makefile,v 1.19 2004/05/04 19:10:29 i18phpldapadmin Exp $
# ToDo: detect the encoding in the "source"
#
# posible detect of the language
@ -21,6 +21,7 @@ PHP=php
TARGETS=${DESTDIR}/auto.php \
${DESTDIR}/ca.php \
${DESTDIR}/cz.php \
${DESTDIR}/de.php \
${DESTDIR}/en.php \
${DESTDIR}/es.php \
@ -31,6 +32,7 @@ TARGETS=${DESTDIR}/auto.php \
${DESTDIR}/pt-br.php \
${DESTDIR}/ru.php \
${DESTDIR}/sv.php \
${DESTDIR}/zh-tw.php \
${DESTDIR}/zz.php \
${DESTDIR}/zzz.php
@ -70,6 +72,11 @@ ${DESTDIR}/ca.php: ca.php
@echo "Fixing encoding ca.php to UTF8 "${DESTDIR}/ca.php
@iconv -f iso8859-1 -t utf8 ca.php > ${DESTDIR}/ca.php
${DESTDIR}/cz.php: cz.php
@echo "Fixing encoding cz.php to UTF8 "${DESTDIR}/cz.php
@iconv -f windows-1250 -t utf8 cz.php > ${DESTDIR}/cz.php
${DESTDIR}/de.php: de.php
@echo "Fixing encoding de.php to UTF8 "${DESTDIR}/de.php
@iconv -f iso8859-1 -t utf8 de.php > ${DESTDIR}/de.php
@ -110,6 +117,11 @@ ${DESTDIR}/ru.php: ru.php
@echo "Fixing encoding ru.php to UTF8 "${DESTDIR}/ru.php
@iconv -f utf8 -t utf8 ru.php > ${DESTDIR}/ru.php
${DESTDIR}/zh-tw.php: zh-tw.php
@echo "Copying only the zz.php"
# @iconv -f utf8 -t utf8 zh-tw.php ${DESTDIR}/zh-tw.php
# INTERNAL BUG COULDN CONVERT IT, SO WE COPY IT
cp zh-tw.php ${DESTDIR}/zh-tw.php
${DESTDIR}/zz.php: zz.php
@echo "Copying only the zz.php"
@cp zz.php ${DESTDIR}/zz.php

View File

@ -1,4 +1,5 @@
<?php
/* --- INSTRUCTIONS FOR TRANSLATORS ---
*
* If you want to write a new language file for your language,
@ -16,346 +17,500 @@
* The $lang array contains all the strings that phpLDAPadmin uses.
* Each language file simply defines this aray with strings in its
* language.
* $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/pt-br.php,v 1.2 2004/01/07 20:28:24 i18phpldapadmin Exp $
* $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/pt-br.php,v 1.3 2004/05/06 20:00:37 i18phpldapadmin Exp $
*/
/*
Initial translation from Alexandre Maciel (digitalman (a) bol (dot) com (dot) br) for phpldapadmin-0.9.3
Next translation from Elton (CLeGi - do at - terra.com.br) to cvs-release 1.65
*/
// Search form
$lang['simple_search_form_str'] = 'Busca Simples';
$lang['advanced_search_form_str'] = 'Busca Avan&ccedil;ada';
$lang['server'] = 'Servidor';
//$lang['search_for_entries_whose'] = 'Procurar por objetos cujo';
$lang['base_dn'] = 'Base <acronym title="Nome Distinto">DN</acronym>';
$lang['search_scope'] = 'Abrang&ecirc;ncia da Busca';
$lang['search_ filter'] = 'Filtro de Busca';
$lang['show_attributes'] = 'Exibir Atributos';
$lang['Search'] = 'Buscar';
// $lang['equals'] = 'equals';
// $lang['starts_with'] = 'starts with';
// $lang['contains'] = 'contains';
// $lang['ends_with'] = 'ends with';
// $lang['sounds_like'] = 'sounds like';
$lang['simple_search_form_str'] = 'Formulário de busca Simples';//'Simple Search Form';
$lang['advanced_search_form_str'] = 'Formulário de busca Avançada';//'Advanced Search Form';
$lang['server'] = 'Servidor';//'Server';
$lang['search_for_entries_whose'] = 'Buscar objetos cujo...';//'Search for entries whose';
$lang['base_dn'] = 'Base DN';//'Base DN';
$lang['search_scope'] = 'Abrangência da Busca';//'Search Scope';
$lang['show_attributes'] = 'Exibir Atributos';//'Show Attributtes';
$lang['Search'] = 'Buscar';//'Search';
$lang['equals'] = 'igual';//'equals';
$lang['contains'] = 'contém';//'contains';
$lang['predefined_search_str'] = 'Selecione uma busca pré-definida';//'or select a predefined search';
$lang['predefined_searches'] = 'Buscas pré-definidas';//'Predefined Searches';
$lang['no_predefined_queries'] = 'Nenhum critério de busca foi definido no config.php';// 'No queries have been defined in config.php.';
// Tree browser
$lang['request_new_feature'] = 'Requisitar um novo recurso';
$lang['see_open_requests'] = 'Ver as requisi&ccedil;&otilde;es em aberto';
$lang['report_bug'] = 'Comunicar um problema/defeito';
$lang['see_open_bugs'] = 'Ver os problemas/defeitos em aberto';
$lang['schema'] = 'esquemas';
$lang['search'] = 'buscar';
$lang['create'] = 'novo';
$lang['info'] = 'info';
$lang['import'] = 'importar';
$lang['refresh'] = 'atualizar';
$lang['logout'] = 'desconectar';
$lang['create_new'] = 'Criar Novo';
$lang['view_schema_for'] = 'ver esquemas de';
$lang['refresh_expanded_containers'] = 'atualizar todos os containers abertos em';
$lang['create_new_entry_on'] = 'criar um novo objeto em';
$lang['view_server_info'] = 'visualizar as informa&ccedil;&otilde;es fornecidas pelo servidor';
$lang['import_from_ldif'] = 'importar objetos de um arquivo LDIF';
$lang['logout_of_this_server'] = 'desconectar deste servidor';
$lang['logged_in_as'] = 'Conectado como: ';
$lang['read_only'] = 'somente leitura';
$lang['could_not_determine_root'] = 'Incapaz de determinar a raiz do sua &aacute;rvore LDAP.';
$lang['ldap_refuses_to_give_root'] = 'Aparentemente o servidor LDAP foi configurado para ocultar sua raiz.';
$lang['please_specify_in_config'] = 'Por favor, especifique no arquivo config.php';
$lang['create_new_entry_in'] = 'Criar um novo objeto em';
$lang['login_link'] = 'Conectar...';
$lang['request_new_feature'] = 'Solicitar uma nova função';//'Request a new feature';
$lang['report_bug'] = 'Comunicar um bug';//'Report a bug';
$lang['schema'] = 'esquema';//'schema';
$lang['search'] = 'buscar';//'search';
$lang['refresh'] = 'atualizar';//'refresh';
$lang['create'] = 'criar';//'create';
$lang['info'] = 'info';//'info';
$lang['import'] = 'importar';//'import';
$lang['logout'] = 'desconectar';//'logout';
$lang['create_new'] = 'Criar Novo';//'Create New';
$lang['new'] = 'Novo';//'new';
$lang['view_schema_for'] = 'Ver esquemas de';//'View schema for';
$lang['refresh_expanded_containers'] = 'Atualizar todos containers abertos para';//'Refresh all expanded containers for';
$lang['create_new_entry_on'] = 'Criar um novo objeto em';//'Create a new entry on';
$lang['view_server_info'] = 'Ver informações fornecidas pelo servidor';//'View server-supplied information';
$lang['import_from_ldif'] = 'Importar objetos de um arquivo LDIF';//'Import entries from an LDIF file';
$lang['logout_of_this_server'] = 'Desconectar deste servidor';//'Logout of this server';
$lang['logged_in_as'] = 'Conectado como: ';//'Logged in as: ';
$lang['read_only'] = 'somente leitura';//'read only';
$lang['read_only_tooltip'] = 'Este atributo foi marcado como somente leitura pelo administrador do phpLDAPadmin';//This attribute has been flagged as read only by the phpLDAPadmin administrator';
$lang['could_not_determine_root'] = 'Não foi possível determinar a raiz da sua árvore LDAP.';//'Could not determin the root of your LDAP tree.';
$lang['ldap_refuses_to_give_root'] = 'Parece que o servidor LDAP foi configurado para não revelar seu root.';//'It appears that the LDAP server has been configured to not reveal its root.';
$lang['please_specify_in_config'] = 'Por favor especifique-o no config.php';//'Please specify it in config.php';
$lang['create_new_entry_in'] = 'Criar um novo objeto em';//'Create a new entry in';
$lang['login_link'] = 'Conectar...';//'Login...';
$lang['login'] = 'conectar';//'login';
// Entry display
$lang['delete_this_entry'] = 'Apagar este objeto';
$lang['delete_this_entry_tooltip'] = 'Ser&aacute; solicitado que voc&ecirc; confirme sua decis&atilde;o';
$lang['copy_this_entry'] = 'Copiar este objeto';
$lang['copy_this_entry_tooltip'] = 'Copia este objeto para outro contexto, para um novo DN ou para outro servidor';
$lang['export_to_ldif'] = 'Exportar para LDIF';
$lang['export_to_ldif_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto';
$lang['export_subtree_to_ldif_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto e todos os seus filhos';
$lang['export_subtree_to_ldif'] = 'Exportar ramos para LDIF';
$lang['export_mac'] = 'Arquivo texto do tipo Macintosh';
$lang['export_win'] = 'Arquivo texto do tipo DOS/Windows';
$lang['export_unix'] = 'Arquivo texto do tipo Unix';
$lang['create_a_child_entry'] = 'Criar um objeto-filho';
$lang['add_a_jpeg_photo'] = 'Adicionar uma imagem JPEG';
$lang['rename_entry'] = 'Renomear Objeto';
$lang['rename'] = 'Renomear';
$lang['add'] = 'Adicionar';
$lang['view'] = 'Ver';
$lang['add_new_attribute'] = 'Adicionar Novo Atributo';
$lang['add_new_attribute_tooltip'] = 'Adiciona um novo atributo/valor para este objeto';
$lang['internal_attributes'] = 'Atributos Internos';
$lang['hide_internal_attrs'] = 'Ocultar os atributos internos';
$lang['show_internal_attrs'] = 'Exibir os atributos internos';
$lang['internal_attrs_tooltip'] = 'Atributos configurados automaticamente pelo sistema';
$lang['entry_attributes'] = 'Atributos do Objeto';
$lang['attr_name_tooltip'] = 'Clique para visualizar a defini&ccedil;&atilde;o do esquema para atributos do tipo \'%s\'';
$lang['click_to_display'] = 'Clique em \'+\' para exibir';
$lang['hidden'] = 'ocultos';
$lang['none'] = 'nenhum';
$lang['save_changes'] = 'Salvar Altera&ccedil;&otilde;es';
$lang['add_value'] = 'adicionar novo valor';
$lang['add_value_tooltip'] = 'Adiciona um novo valor para o atributo \'%s\'';
$lang['refresh_entry'] = 'Atualizar';
$lang['refresh_this_entry'] = 'Atualiza este objeto';
$lang['delete_hint'] = "Dica: <b>Para apagar um atributo</b>, deixe o campo correspondente vazio e clique em 'Salvar Altera&ccedil;&otilde;es'.";
$lang['attr_schema_hint'] = 'Dica: <b>Para visualizar o esquema de um atributo</b>, clique no nome do atributo desejado.';
$lang['attrs_modified'] = 'Alguns atributos (%s) foram modificados e est&atilde;o destacados abaixo.';
$lang['attr_modified'] = 'Um atributo (%s) foi modificado e est&aacute; destacado abaixo.';
$lang['viewing_read_only'] = 'Visualizando o objeto em modo somente-leitura.';
$lang['change_entry_rdn'] = 'Alterar o RDN deste objeto';
$lang['no_new_attrs_available'] = 'n&atilde;o h&aacute; mais atributos dispon&iacute;veis para este objeto';
$lang['binary_value'] = 'Valor bin&aacute;rio';
$lang['add_new_binary_attr'] = 'Adicionar Novo Atributo Bin&aacute;rio';
$lang['add_new_binary_attr_tooltip'] = 'Adiciona um novo atributo/valor bin&aacute;rio de um arquivo para este objeto';
$lang['alias_for'] = 'Nota: \'%s\' &eacute; um nome amig&aacute;vel para \'%s\'';
$lang['download_value'] = 'fazer download';
$lang['delete_attribute'] = 'apagar atributo';
$lang['true'] = 'verdadeiro';
$lang['false'] = 'falso';
$lang['none_remove_value'] = 'nenhum, remover o valor';
$lang['really_delete_attribute'] = 'Deseja realmente apagar atributo';
$lang['delete_this_entry'] = 'Excluir este objeto';//'Delete this entry';
$lang['delete_this_entry_tooltip'] = 'Será solicitado que você confirme sua decisão';//'You will be prompted to confirm this decision';
$lang['copy_this_entry'] = 'Copiar este objeto';//'Copy this entry';
$lang['copy_this_entry_tooltip'] = 'Copiar este objeto para outro local, um novo DN, ou outro servidor';//'Copy this object to another location, a new DN, or another server';
$lang['export'] = 'Exportar';//'Export to LDIF';
$lang['export_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto';//'Save an LDIF dump of this object';
$lang['export_subtree_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto e todos os seus filhos';//'Save an LDIF dump of this object and all of its children';
$lang['export_subtree'] = 'Exportar sub-árvore para LDIF';//'Export subtree to LDIF';
$lang['create_a_child_entry'] = 'Criar objeto filho';//'Create a child entry';
$lang['rename_entry'] = 'Renomear objeto';//'Rename Entry';
$lang['rename'] = 'Renomear';//'Rename';
$lang['add'] = 'Inserir';//'Add';
$lang['view'] = 'Ver';//'View';
$lang['view_one_child'] = 'Ver 1 filho';//'View 1 child';
$lang['view_children'] = 'Ver %s filhos';//'View %s children';
$lang['add_new_attribute'] = 'Inserir Novo Atributo';//'Add New Attribute';
$lang['add_new_objectclass'] = 'Inserir nova ObjectClass';//'Add new ObjectClass';
$lang['hide_internal_attrs'] = 'Ocultar atributos internos';//'Hide internal attributes';
$lang['show_internal_attrs'] = 'Exibir atributos internos';//'Show internal attributes';
$lang['attr_name_tooltip'] = 'Clique para ver a definição do esquema para atributos do tipo \'%s\'';//'Click to view the schema defintion for attribute type \'%s\'';
$lang['none'] = 'nenhum';//'none';
$lang['no_internal_attributes'] = 'Nenhum atributo interno.';//'No internal attributes';
$lang['no_attributes'] = 'Este objeto não tem atributos.';//'This entry has no attributes';
$lang['save_changes'] = 'Salvar Alterações';//'Save Changes';
$lang['add_value'] = 'inserir valor';//'add value';
$lang['add_value_tooltip'] = 'Insere um novo valor para o atributo \'%s\'';//'Add an additional value to this attribute';
$lang['refresh_entry'] = 'Atualizar';// 'Refresh';
$lang['refresh_this_entry'] = 'Atualizar este objeto';//'Refresh this entry';
$lang['delete_hint'] = 'Dica: Para apagar um atributo, apague o conteúdo do campo de texto e clique salvar.';//'Hint: <b>To delete an attribute</b>, empty the text field and click save.';
$lang['attr_schema_hint'] = 'Dica: Para ver o esquema de um atributo clique no nome do atributo.';//'Hint: <b>To view the schema for an attribute</b>, click the attribute name.';
$lang['attrs_modified'] = 'Alguns atributos (%s) foram modificados e estão destacados abaixo.';//'Some attributes (%s) were modified and are highlighted below.';
$lang['attr_modified'] = 'Um atributo (%s) foi modificado e está destacado abaixo';//'An attribute (%s) was modified and is highlighted below.';
$lang['viewing_read_only'] = 'Vizualizando objeto em modo somente-leitura.';//'Viewing entry in read-only mode.';
$lang['no_new_attrs_available'] = 'novos atributos não disponíveis para este objeto.';//'no new attributes available for this entry';
$lang['no_new_binary_attrs_available'] = 'novos atributos binários não disponíveis para este objeto.';//'no new binary attributes available for this entry';
$lang['binary_value'] = 'Valor binário';//'Binary value';
$lang['add_new_binary_attr'] = 'Inserir novo atributo binário';//'Add New Binary Attribute';
$lang['alias_for'] = 'Nota: \'%s\' é um alias para \'%s\'';//'Note: \'%s\' is an alias for \'%s\'';
$lang['download_value'] = 'download do valor';//'download value';
$lang['delete_attribute'] = 'apagar atributo';//'delete attribute';
$lang['true'] = 'verdadeiro';//'true';
$lang['false'] = 'falso';//'false';
$lang['none_remove_value'] = 'nenhum, remover valor';//?? //'none, remove value';
$lang['really_delete_attribute'] = 'Deseja realmente apagar atributo';//'Really delete attribute';
$lang['add_new_value'] = 'Inserir novo valor';//'Add New Value';
// Schema browser
$lang['the_following_objectclasses'] = 'As seguintes <b>classes de objetos</b> s&atilde;o suportadas por este servidor LDAP.';
$lang['the_following_attributes'] = 'Os seguintes <b>tipos de atributos</b> s&atilde;o suportados por este servidor LDAP.';
$lang['the_following_matching'] = 'As seguintes <b>regras de consist&ecirc;ncia/b> s&atilde;o suportadas por este servidor LDAP.';
$lang['the_following_syntaxes'] = 'As seguintes <b> regras de sintaxe</b> s&atilde;o suportadas por este servidor LDAP.';
$lang['jump_to_objectclass'] = 'Ir para uma classe de objetos';
$lang['jump_to_attr'] = 'Ir para um atributo';
$lang['schema_for_server'] = 'Esquemas do servidor';
$lang['required_attrs'] = 'Atributos Necess&aacute;rios';
$lang['optional_attrs'] = 'Atributos Opcionais';
$lang['OID'] = 'OID';
$lang['desc'] = 'Descri&ccedil;&atilde;o';
$lang['name'] = 'Nome';
$lang['is_obsolete'] = 'Essa classe de objetos &eacute; <b>obsoleta</b>';
$lang['inherits'] = 'Herda de';
$lang['jump_to_this_oclass'] = 'Ir para a defini&ccedil;&atilde;o desta classe de objetos';
$lang['matching_rule_oid'] = 'OID da Regra de Consist&ecirc;ncia';
$lang['syntax_oid'] = 'OID da Regra de Sintaxe';
$lang['not_applicable'] = 'n&atilde;o aplic&aacute;vel';
$lang['not_specified'] = 'n&atilde;o especificado';
$lang['the_following_objectclasses'] = 'As seguintes Classes de objetos são suportadas por este servidor LDAP.';//'The following <b>objectClasses</b> are supported by this LDAP server.';
$lang['the_following_attributes'] = 'Os seguintes tipos de atributos são suportadas por este servidor LDAP.';//'The following <b>attributeTypes</b> are supported by this LDAP server.';
$lang['the_following_matching'] = 'As seguintes regras de consistência são suportadas por este servidor LDAP.';//'The following <b>matching rules</b> are supported by this LDAP server.';
$lang['the_following_syntaxes'] = 'As seguintes sintaxes são suportadas por este servidor LDAP.';//'The following <b>syntaxes</b> are supported by this LDAP server.';
$lang['schema_retrieve_error_1']='O servidor não suporta o protocolo LDAP completamente.';//'The server does not fully support the LDAP protocol.';
$lang['schema_retrieve_error_2']='Sua versão do PHP não executa a consulta corretamente.';//'Your version of PHP does not correctly perform the query.';
$lang['schema_retrieve_error_3']='Ou, por fim, o phpLDAPadmin não sabe como buscar o esquema para o seu servidor.';//'Or lastly, phpLDAPadmin doesn\'t know how to fetch the schema for your server.';
$lang['jump_to_objectclass'] = 'Ir para uma classe de objetos';//'Jump to an objectClass';
$lang['jump_to_attr'] = 'Ir para um tipo de atributo';//'Jump to an attribute';
$lang['jump_to_matching_rule'] = 'Ir para regras de consistência';//'Jump to a matching rule';
$lang['schema_for_server'] = 'Esquema para servidor';//'Schema for server';
$lang['required_attrs'] = 'Atributos Obrigatórios';//'Required Attributes';
$lang['optional_attrs'] = 'Atributos Opcionais';//'Optional Attributes';
$lang['optional_binary_attrs'] = 'Atributos Binários Opcionais';//'Optional Binary Attributes';
$lang['OID'] = 'OID';//'OID';
$lang['aliases']='Apelidos';//'Aliases';
$lang['desc'] = 'Descrição';//'Description';
$lang['no_description']='sem descrição';//'no description';
$lang['name'] = 'Nome';//'Name';
$lang['equality']='Igualdade';//'Equality';
$lang['is_obsolete'] = 'Esta classe de objeto está obsoleta.';//'This objectClass is <b>obsolete</b>';
$lang['inherits'] = 'Herda de';//'Inherits';
$lang['inherited_from']='Herdado de';//inherited from';
$lang['parent_to'] = 'Pai para';//'Parent to';
$lang['jump_to_this_oclass'] = 'Ir para definição desta classe de objeto';//'Jump to this objectClass definition';
$lang['matching_rule_oid'] = 'OID da Regra de consistência';//'Matching Rule OID';
$lang['syntax_oid'] = 'OID da Sintaxe';//'Syntax OID';
$lang['not_applicable'] = 'não aplicável';//'not applicable';
$lang['not_specified'] = 'não especificado';//not specified';
$lang['character']='caracter';//'character';
$lang['characters']='caracteres';//'characters';
$lang['used_by_objectclasses']='Usado por classes de objetos';//'Used by objectClasses';
$lang['used_by_attributes']='Usado por Atributos';//'Used by Attributes';
$lang['oid']='OID';
$lang['obsolete']='Obsoleto';//'Obsolete';
$lang['ordering']='Ordenando';//'Ordering';
$lang['substring_rule']='Regra de substring';//'Substring Rule';
$lang['single_valued']='Avaliado sozinho';//'Single Valued';
$lang['collective']='Coletivo';//'Collective';
$lang['user_modification']='Alteração do usuário';//'User Modification';
$lang['usage']='Uso';//'Usage';
$lang['maximum_length']='Tamanho Máximo';//'Maximum Length';
$lang['attributes']='Tipos de Atriburos';//'Attributes Types';
$lang['syntaxes']='Sintaxes';//'Syntaxes';
$lang['objectclasses']='Classe de Objetos';//'objectClasses';
$lang['matchingrules']='Regra de consistência';//'Matching Rules';
$lang['could_not_retrieve_schema_from']='Não foi possível encontrar esquema de';//'Could not retrieve schema from';
$lang['type']='Tipo';// 'Type';
// Deleting entries
$lang['entry_deleted_successfully'] = 'Objeto \'%s\' apagado com sucesso.';
$lang['you_must_specify_a_dn'] = 'Voc&ecirc; precisa especificar o DN';
$lang['could_not_delete_entry'] = 'Imposs&iacute;vel apagar o objeto: %s';
$lang['entry_deleted_successfully'] = 'Objeto \'%s\' excluído com sucesso.';//'Entry \'%s\' deleted successfully.';
$lang['you_must_specify_a_dn'] = 'Você deve especificar um DN';//'You must specify a DN';
$lang['could_not_delete_entry'] = 'Não foi possível excluir o objeto: %s';//'Could not delete the entry: %s';
$lang['no_such_entry'] = 'Objeto inexistente: %s';//'No such entry: %s';
$lang['delete_dn'] = 'Excluir %s';//'Delete %s';
$lang['entry_is_root_sub_tree'] = 'Este objeto é a raiz de uma sub-árvore e contém %s objetos.';//'This entry is the root of a sub-tree containing %s entries.';
$lang['view_entries'] = 'Ver objetos';//'view entries';
$lang['confirm_recursive_delete'] = 'o phpLDAPadmin pode excluir recursivamente este objeto e todos %s filhos. Veja abaixo uma lista de todos os objetos que esta ação vai excluir. Deseja fazer isso?';//'phpLDAPadmin can recursively delete this entry and all %s of its children. See below for a list of all the entries that this action will delete. Do you want to do this?';
$lang['confirm_recursive_delete_note'] = 'Nota: isto é potencialmente muito perigoso, faça isso por sua conta e risco. Esta operação não pode ser desfeita. Leve em consideração apelidos, referências e outras coisas que podem causar problemas.';//'Note: this is potentially very dangerous and you do this at your own risk. This operation cannot be undone. Take into consideration aliases, referrals, and other things that may cause problems.';
$lang['delete_all_x_objects'] = 'Excluir todos os %s objetos';//'Delete all %s objects';
$lang['recursive_delete_progress'] = 'Progresso de exclusão recursiva';//'Recursive delete progress';
$lang['entry_and_sub_tree_deleted_successfully'] = 'Objeto %s e sub-árvore excluído com sucesso.';// 'Entry %s and sub-tree deleted successfully.';
$lang['failed_to_delete_entry'] = 'Falha ao excluir objeto %s';//'Failed to delete entry %s';
// Deleting attributes
$lang['attr_is_read_only'] = 'O atributo %s está marcado como somente leitura na configuração do phpLDAPadmin.';//'The attribute "%s" is flagged as read-only in the phpLDAPadmin configuration.';
$lang['no_attr_specified'] = 'Nome de atributo não especificado.';//'No attribute name specified.';
$lang['no_dn_specified'] = 'DN não especificado';//'No DN specified';
// Adding attributes
$lang['left_attr_blank'] = 'Você deixou o valor do atributo vazio. Por favor retorne e tente novamente.';//'You left the attribute value blank. Please go back and try again.';
$lang['failed_to_add_attr'] = 'Falha ao inserir o atributo.';//'Failed to add the attribute.';
$lang['file_empty'] = 'O arquivo que você escolheu está vazio ou não existe. Por favor retorne e tente novamente.';//'The file you chose is either empty or does not exist. Please go back and try again.';
$lang['invalid_file'] = 'Erro de segurança: O arquivo que está sendo carregado pode ser malicioso.';//'Security error: The file being uploaded may be malicious.';
$lang['warning_file_uploads_disabled'] = 'Sua configuração do PHP desabilitou o upload de arquivos. Por favor verifique o php.ini antes de continuar.';//'Your PHP configuration has disabled file uploads. Please check php.ini before proceeding.';
$lang['uploaded_file_too_big'] = 'O arquivo que você carregou é muito grande. Por favor verifique a configuração do upload_max_size no php.ini';//'The file you uploaded is too large. Please check php.ini, upload_max_size setting';
$lang['uploaded_file_partial'] = 'O arquivo que você selecionou foi carregado parcialmente, provavelmente por causa de um erro de rede.';//'The file you selected was only partially uploaded, likley due to a network error.';
$lang['max_file_size'] = 'Tamanho máximo de arquivo: %s';//'Maximum file size: %s';
// Updating values
$lang['modification_successful'] = 'Alteração bem sucedida!';//'Modification successful!';
$lang['change_password_new_login'] = 'Você alterou sua senha, você deve conectar novamente com a sua nova senha.'; //'Since you changed your password, you must now login again with your new password.';
// Adding objectClass form
$lang['new_required_attrs'] = 'Novo(s) Atributo(s) Necess&aacute;rio(s)';
$lang['requires_to_add'] = 'Essa a&ccedil;&atilde;o requer que voc&ecirc; adicione';
$lang['new_attributes'] = 'novo(s) atributos(s)';
$lang['new_required_attrs_instructions'] = 'Instru&ccedil;&otilde;es: Para poder acrescentar esta Classe de Objetos a este objeto, voc&ecirc; precisa especificar';
$lang['that_this_oclass_requires'] = 'que esta Classe de Objetos necessita. Voc&ecirc; pode faz&ecirc;-lo no formul&aacute;rio abaixo:';
$lang['add_oclass_and_attrs'] = 'Acrescentar Classe de Objetos e Atributos';
$lang['new_required_attrs'] = 'Novos Atributos Obrigatórios';//'New Required Attributes';
$lang['requires_to_add'] = 'Esta ação requer que você insira';//'This action requires you to add';
$lang['new_attributes'] = 'novos atributos';//'new attributes';
$lang['new_required_attrs_instructions'] = 'Instruções: Para poder inserir esta Classe de Objetos a este objeto, você deve especificar';//'Instructions: In order to add this objectClass to this entry, you must specify';
$lang['that_this_oclass_requires'] = 'que esta Classe de Objetos requer. Você pode fazê-lo no formulário abaixo:';//'that this objectClass requires. You can do so in this form.';
$lang['add_oclass_and_attrs'] = 'Inserir Classe de Objetos e Atributos';//'Add ObjectClass and Attributes';
// General
$lang['chooser_link_tooltip'] = 'Clique aqui para abrir uma janela e selecionar o valor do atributo (DN) graficamente';
$lang['no_updates_in_read_only_mode'] = 'Voc&ecirc; n&atilde;o pode realizar altera&ccedil;&otilde;es enquanto o servidor estiver em modo somente-leitura';
$lang['bad_server_id'] = 'ID do servidor inv&aacute;lido';
$lang['not_enough_login_info'] = 'Informa&ccedil;&atilde;o insuficiente para efetuar conex&atilde;o ao servidor. Por favor verifique a sua configura&ccedil;&atilde;o.';
$lang['could_not_connect'] = 'Imposs&iacute;vel conectar ao servidor LDAP.';
$lang['could_not_perform_ldap_mod_add'] = 'Imposs&iacute;vel realizar opera&ccedil;&atilde;o ldap_mod_add.';
$lang['bad_server_id_underline'] = 'ID do servidor inv&aacute;lido: ';
$lang['success'] = ' Sucesso';
$lang['server_colon_pare'] = 'Servidor: ';
$lang['look_in'] = 'Procurando em: ';
$lang['missing_server_id_in_query_string'] = 'Nenhum ID de servidor especificado na busca!';
$lang['missing_dn_in_query_string'] = 'Nenhum DN especificado na busca!';
$lang['back_up_p'] = 'Backup...';
$lang['no_entries'] = 'nenhum objeto';
$lang['not_logged_in'] = 'N&atilde;o conectado';
$lang['could_not_det_base_dn'] = 'Imposs&iacute;vel determinar a base DN';
$lang['chooser_link_tooltip'] = 'Clique para abrir uma janela e selecionar um objeto (DN) graficamente';//"Click to popup a dialog to select an entry (DN) graphically';
$lang['no_updates_in_read_only_mode'] = 'Você não pode realizar atualizações enquanto o servidor estiver em modo somente leitura';//'You cannot perform updates while server is in read-only mode';
$lang['bad_server_id'] = 'ID do servidor inválido';//'Bad server id';
$lang['not_enough_login_info'] = 'Informações insuficientes para a conexão com o servidor. Por favor verifique sua configuração.';//'Not enough information to login to server. Please check your configuration.';
$lang['could_not_connect'] = 'Não foi possível conectar com o servidor LDAP.';//'Could not connect to LDAP server.';
$lang['could_not_connect_to_host_on_port'] = 'Não foi possível conectar em "%s" na porta "%s"';//'Could not connect to "%s" on port "%s"';
$lang['could_not_perform_ldap_mod_add'] = 'Não foi possível executar operação ldap_mod_add.';//'Could not perform ldap_mod_add operation.';
$lang['bad_server_id_underline'] = 'server_id inválido: ';//"Bad server_id: ';
$lang['success'] = 'Sucesso';//"Success';
$lang['server_colon_pare'] = 'Servidor: ';//"Server: ';
$lang['look_in'] = 'Procurando em: ';//"Looking in: ';
$lang['missing_server_id_in_query_string'] = 'ID do servidor não especificado na consulta!';//'No server ID specified in query string!';
$lang['missing_dn_in_query_string'] = 'DN não especificado na consulta!';//'No DN specified in query string!';
$lang['back_up_p'] = 'Backup...';//"Back Up...';
$lang['no_entries'] = 'nenhum objeto';//"no entries';
$lang['not_logged_in'] = 'Não conectado';//"Not logged in';
$lang['could_not_det_base_dn'] = 'Não foi possível determinar a base DN';//"Could not determine base DN';
$lang['reasons_for_error']='Isso pode ter acontecido por vários motivos, os mais provável são:';//'This could happen for several reasons, the most probable of which are:';
$lang['please_report_this_as_a_bug']='Por favor informe isso como bug.';//'Please report this as a bug.';
$lang['yes']='Sim';//'Yes'
$lang['no']='Não';//'No'
$lang['go']='Ir';//'go'
$lang['delete']='Excluir';//'Delete';
$lang['back']='Voltar';//'Back';
$lang['object']='objeto';//'object';
$lang['delete_all']='Excluir tudo';//'Delete all';
$lang['url_bug_report']='https://sourceforge.net/tracker/?func=add&group_id=61828&atid=498546';
$lang['hint'] = 'dica';//'hint';
$lang['bug'] = 'bug';//'bug';
$lang['warning'] = 'aviso';//'warning';
$lang['light'] = 'a palavra "light" de "light bulb"'; // the word 'light' from 'light bulb'
$lang['proceed_gt'] = 'Continuar &gt;&gt;';//'Proceed &gt;&gt;';
// Add value form
$lang['add_new'] = 'Adicionar novo valor';
$lang['value_to'] = 'para';
$lang['distinguished_name'] = 'Nome Distinto';
$lang['current_list_of'] = 'Lista atual de';
$lang['values_for_attribute'] = 'valor(es) para o atributo';
$lang['inappropriate_matching_note'] = 'Nota: Voc&ecirc; vai receber um erro de "inappropriate matching" se voc&ecirc; n&atilde;o<br />' .
'configurar uma regra de <tt>IGUALDADE</tt> no seu servidor LDAP para este atributo.';
$lang['enter_value_to_add'] = 'Entre com o valor que voc&ecirc; gostaria de adicionar:';
$lang['new_required_attrs_note'] = 'Nota: talvez seja solicitado que voc&ecirc; entre com os atributos necess&aacute;rios para esta classe de objetos';
$lang['syntax'] = 'Sintaxe';
$lang['add_new'] = 'Inserir novo';//'Add new';
$lang['value_to'] = 'valor para';//'value to';
//also used in copy_form.php
$lang['distinguished_name'] = 'Nome Distinto';// 'Distinguished Name';
$lang['current_list_of'] = 'Lista atual de';//'Current list of';
$lang['values_for_attribute'] = 'valores para atributo';//'values for attribute';
$lang['inappropriate_matching_note'] = 'Nota: Você vai receber um erro de "inappropriate matching" se você não configurar uma regra de IGUALDADE no seu servidor LDAP para este atributo.'; //'Note: You will get an "inappropriate matching" error if you have not<br /> setup an <tt>EQUALITY</tt> rule on your LDAP server for this attribute.';
$lang['enter_value_to_add'] = 'Entre com o valor que você quer inserir: ';//'Enter the value you would like to add:';
$lang['new_required_attrs_note'] = 'Nota: talvez seja solicitado que você entre com os atributos necessários para esta classe de objetos';//'Note: you may be required to enter new attributes<br />that this objectClass requires.';
$lang['syntax'] = 'Sintaxe';//'Syntax';
//Copy.php
$lang['copy_server_read_only'] = 'Você não pode realizar atualizações enquanto o servidor estiver em modo somente leitura';//"You cannot perform updates while server is in read-only mode';
$lang['copy_dest_dn_blank'] = 'Você deixou o DN de destino vazio.';//"You left the destination DN blank.';
$lang['copy_dest_already_exists'] = 'O objeto de destino (%s) já existe.';//"The destination entry (%s) already exists.';
$lang['copy_dest_container_does_not_exist'] = 'O container de destino (%s) não existe.';//'The destination container (%s) does not exist.';
$lang['copy_source_dest_dn_same'] = 'O DN de origem e destino são o mesmo.';//"The source and destination DN are the same.';
$lang['copy_copying'] = 'Copiando ';//"Copying ';
$lang['copy_recursive_copy_progress'] = 'Progresso da cópia recursiva';//"Recursive copy progress';
$lang['copy_building_snapshot'] = 'Construindo a imagem da árvore a ser copiada...';//"Building snapshot of tree to copy... ';
$lang['copy_successful_like_to'] = 'Copiado com sucesso! Você gostaria de ';//"Copy successful! Would you like to ';
$lang['copy_view_new_entry'] = 'ver o novo objeto';//"view the new entry';
$lang['copy_failed'] = 'Falha ao copiar DN: ';//'Failed to copy DN: ';
//copy.php
$lang['copy_server_read_only'] = 'Voc&ecirc; n&atilde;o pode realizar altera&ccedil;&otilde;es enquanto o servidor estiver em modo somente-leitura';
$lang['copy_dest_dn_blank'] = 'Voc&ecirc; n&atilde;o especificou o DN de destino.';
$lang['copy_dest_already_exists'] = 'O objeto de destino (%s) j&aacute; existe.';
$lang['copy_dest_container_does_not_exist'] = 'O container de destino (%s) n&atilde;o existe.';
$lang['copy_source_dest_dn_same'] = 'O DN de origem e o DN de destino s&atilde;o iguais.';
$lang['copy_copying'] = 'Copiando ';
$lang['copy_recursive_copy_progress'] = 'Progresso da c&oacute;pia recursiva';
$lang['copy_building_snapshot'] = 'Construindo a imagem da &aacute;rvore a ser copiada...';
$lang['copy_successful_like_to'] = 'C&oacute;pia bem-sucedida! Voc&ecirc; gostaria de ';
$lang['copy_view_new_entry'] = 'visualizar o novo objeto';
$lang['copy_failed'] = 'Falha ao copiar o DN: ';
//edit.php
$lang['missing_template_file'] = 'Alerta, o arquivo-modelo n&atilde;o encontrado: ';
$lang['using_default'] = 'Usando padr&atilde;o.';
$lang['missing_template_file'] = 'Aviso: arquivo modelo faltando, ';//'Warning: missing template file, ';
$lang['using_default'] = 'Usando o padrão.';//'Using default.';
$lang['template'] = 'Modelo';//'Template';
$lang['must_choose_template'] = 'Você deve escolher um modelo';//'You must choose a template';
$lang['invalid_template'] = '%s é um modelo inválido';// '%s is an invalid template';
$lang['using_template'] = 'usando o modelo';//'using template';
$lang['go_to_dn'] = 'Ir para %s';//'Go to %s';
//copy_form.php
$lang['copyf_title_copy'] = 'Copiar ';
$lang['copyf_to_new_object'] = 'para um novo objeto';
$lang['copyf_dest_dn'] = 'DN de Destino';
$lang['copyf_dest_dn_tooltip'] = 'O DN completo do novo objeto que ser&aacute; criado a partir da c&oacute;pia da origem';
$lang['copyf_dest_server'] = 'Servidor de Destino';
$lang['copyf_note'] = 'Dica: Copiar objetos entre servidores diferentes s&oacute; funcionar&aacute; se n&atilde;o houverem viola&ccedil;&otilde;es de esquema.';
$lang['copyf_recursive_copy'] = 'Copiar recursivamente todos os objetos-filhos deste objeto tamb&eacutem';
$lang['copyf_title_copy'] = 'Copiar ';//"Copy ';
$lang['copyf_to_new_object'] = 'para um novo objeto';//"to a new object';
$lang['copyf_dest_dn'] = 'DN de destino';//"Destination DN';
$lang['copyf_dest_dn_tooltip'] = 'O DN completo do novo objeto que será criado a partir da cópia da origem';//'The full DN of the new entry to be created when copying the source entry';
$lang['copyf_dest_server'] = 'Servidor de destino';//"Destination Server';
$lang['copyf_note'] = 'Dica: Copiando entre diferentes servidores somente funciona se não houver violação de esquema';//"Note: Copying between different servers only works if there are no schema violations';
$lang['copyf_recursive_copy'] = 'Copia recursivamente todos filhos deste objeto também.';//"Recursively copy all children of this object as well.';
$lang['recursive_copy'] = 'Cópia Recursiva';//'Recursive copy';
$lang['filter'] = 'Filtro';//'Filter';
$lang['filter_tooltip'] = 'Quando executar uma cópia recursiva, copiar somente os objetos que atendem a este filtro';// 'When performing a recursive copy, only copy those entries which match this filter';
//create.php
$lang['create_required_attribute'] = 'Voc&ecirc; especificou um valor em branco para <b>%s</b>, que &eacute; um atributo necess&aacute;rio.';
$lang['create_redirecting'] = 'Redirecionando';
$lang['create_here'] = 'aqui';
$lang['create_could_not_add'] = 'Imposs&iacute;vel adicionar o objeto ao servidor LDAP.';
$lang['create_required_attribute'] = 'Você deixou vazio o valor de um atributo obrigatório (%s).';//"Error, you left the value blank for required attribute ';
$lang['redirecting'] = 'Redirecionando...';//"Redirecting'; moved from create_redirection -> redirection
$lang['here'] = 'aqui';//"here'; renamed vom create_here -> here
$lang['create_could_not_add'] = 'Não foi possível inserir o objeto no servidor LDAP.';//"Could not add the object to the LDAP server.';
//create_form.php
$lang['createf_create_object'] = 'Criar um Objeto';
$lang['createf_choose_temp'] = 'Escolha um modelo';
$lang['createf_select_temp'] = 'Escolha o modelo correspondente ao objeto que deseja criar';
$lang['createf_proceed'] = 'Prosseguir';
$lang['createf_create_object'] = 'Criar Objeto';//"Create Object';
$lang['createf_choose_temp'] = 'Escolher um modelo';//"Choose a template';
$lang['createf_select_temp'] = 'Selecionar um modelo para o processo de criação';//"Select a template for the creation process';
$lang['createf_proceed'] = 'Prosseguir';//"Proceed &gt;&gt;';
$lang['rdn_field_blank'] = 'Você deixou o campo RDN vazio.';//'You left the RDN field blank.';
$lang['container_does_not_exist'] = 'O container que você especificou (%s) não existe. Por favor tente novamente.';// 'The container you specified (%s) does not exist. Please try again.';
$lang['no_objectclasses_selected'] = 'Você não selecionou nenhuma Classe de Objetos para este objeto. Por favor volte e faça isso.';//'You did not select any ObjectClasses for this object. Please go back and do so.';
$lang['hint_structural_oclass'] = 'Dica: Você deve escolher pelo menos uma Classe de Objetos estrutural';//'Hint: You must choose at least one structural objectClass';
//creation_template.php
$lang['ctemplate_on_server'] = 'No servidor';
$lang['ctemplate_no_template'] = 'Nenhum Modelo foi especificado.';
$lang['ctemplate_config_handler'] = 'Seu arquivo de configura&ccedil;&atilde;o determina que o modelo';
$lang['ctemplate_handler_does_not_exist'] = "&eacute; v&aacute;lido. Por&eacute;m este modelo n&atilde;o existe no diret&oacute;rio 'templates/creation'.";
$lang['ctemplate_on_server'] = 'No servidor';//"On server';
$lang['ctemplate_no_template'] = 'Nenhum modelo especificado.';//"No template specified in POST variables.';
$lang['ctemplate_config_handler'] = 'Seu arquivo de configuração determina que o modelo';//"Your config specifies a handler of';
$lang['ctemplate_handler_does_not_exist'] = 'é válido. Porém este modelo não existe no diretório "templates/creation".';//"for this template. But, this handler does not exist in the 'templates/creation' directory.';
$lang['create_step1'] = 'Passo 1 de 2: Nome e Classe(s) de Objetos';//'Step 1 of 2: Name and ObjectClass(es)';
$lang['create_step2'] = 'Passo 2 de 2: Especifica atributos e valores';//'Step 2 of 2: Specify attributes and values';
$lang['relative_distinguished_name'] = 'Nome Distinto Relativo';//'Relative Distinguished Name';
$lang['rdn'] = 'RDN';//'RDN';
$lang['rdn_example'] = 'exemplo: cn=MinhaNovaPessoa';//'(example: cn=MyNewPerson)';
$lang['container'] = 'Container';//'Container';
// search.php
$lang['you_have_not_logged_into_server'] = 'Voc&ecirc; ainda n&atilde;o se conectou ao servidor LDAP selecionado, portanto voc&ecirc; n&atilde;o pode efetuar buscas nele.';
$lang['click_to_go_to_login_form'] = 'Clique aqui para conectar-se ao servidor';
$lang['unrecognized_criteria_option'] = 'Crit&eacute;rio de busca desconhecido: ';
$lang['if_you_want_to_add_criteria'] = 'Se voc&ecirc; quer adicionar o seu pr&oacute;prio crit&eacute;rio de busca &agrave; lista, certifique-se de que voc&ecirc; editou \'search.php\' para contemplar o novo crit&eacute;rio. Saindo.';
$lang['entries_found'] = 'Objetos encontrados: ';
$lang['filter_performed'] = 'Filtro utilizado: ';
$lang['search_duration'] = 'A busca foi realizada pelo phpLDAPadmin em';
$lang['seconds'] = 'segundos';
$lang['you_have_not_logged_into_server'] = 'Você não conectou no servidor selecionado ainda, assim, você não pode realizar buscas nele.';//'You have not logged into the selected server yet, so you cannot perform searches on it.';
$lang['click_to_go_to_login_form'] = 'Clique aqui para conectar-se ao servidor';//'Click here to go to the login form';
$lang['unrecognized_criteria_option'] = 'Critério desconhecido: ';// 'Unrecognized criteria option: ';
$lang['if_you_want_to_add_criteria'] = 'Se você quer inserir seus próprios critérios à lista. Certifique-se de editar o search.php para tratá-los. Saindo.';//'If you want to add your own criteria to the list. Be sure to edit search.php to handle them. Quitting.';
$lang['entries_found'] = 'Objetos encontrados: ';//'Entries found: ';
$lang['filter_performed'] = 'Filtro aplicado: ';//'Filter performed: ';
$lang['search_duration'] = 'Busca realizada pelo phpLDAPadmin em';//'Search performed by phpLDAPadmin in';
$lang['seconds'] = 'segundos';//'seconds';
// search_form_advanced.php
$lang['scope_in_which_to_search'] = 'A abrang&ecirc;ncia de onde &eacute; feita a busca pelos objetos';
$lang['scope_sub'] = 'Sub (toda a sub-arvore)';
$lang['scope_one'] = 'One (um nivel abaixo do base DN)';
$lang['scope_base'] = 'Base (apenas no base DN)';
$lang['standard_ldap_search_filter'] = 'Filtro de busca LDAP padr&atilde;o. Exemplo: (&(sn=Smith)(givenname=David))';
$lang['search_filter'] = 'Filtro de Busca';
$lang['list_of_attrs_to_display_in_results'] = 'A lista de atributos que devem ser mostrados no resultado (separados por v&iacute;rgula)';
$lang['show_attributes'] = 'Exibir Atributos';
$lang['scope_in_which_to_search'] = 'O escopo no qual procurar';//'The scope in which to search';
$lang['scope_sub'] = 'Sub (toda a sub-árvore)';//'Sub (entire subtree)';
$lang['scope_one'] = 'One (um nível de profundidade)';//'One (one level beneath base)';
$lang['scope_base'] = 'Base (apenas a base dn)';//'Base (base dn only)';
$lang['standard_ldap_search_filter'] = 'Filtro de busca LDAP padrão. Exemplo: (&(sn=Silva)(givenname=Pedro))';//'Standard LDAP search filter. Example: (&(sn=Smith)(givenname=David))';
$lang['search_filter'] = 'Filtro de Busca';//'Search Filter';
$lang['list_of_attrs_to_display_in_results'] = 'A lista de atributos que devem ser mostrados nos resultados (separados por vírgula)';//'A list of attributes to display in the results (comma-separated)';
// search_form_simple.php
$lang['search_for_entries_whose'] = 'Procurar por objetos cujo:';
$lang['equals'] = 'e igual a';
$lang['starts with'] = 'comeca com';
$lang['contains'] = 'contem';
$lang['ends with'] = 'termina com';
$lang['sounds like'] = 'e semelhante a';
$lang['starts with'] = 'inicia com';//'starts with';
$lang['ends with'] = 'termina com';//'ends with';
$lang['sounds like'] = 'é semelhante a';//'sounds like';
// server_info.php
$lang['could_not_fetch_server_info'] = 'Incapaz de obter informa&ccedil;&otilde;es LDAP &agrave; partir do servidor';
$lang['server_info_for'] = 'Informa&ccedil;&otilde;es do servidor: ';
$lang['server_reports_following'] = 'O servidor forneceu as seguintes informa&ccedil;&otilde;es sobre si mesmo';
$lang['nothing_to_report'] = 'O servidor n&atilde;o tem nenhuma informa&ccedil;&atilde;o sobre si mesmo para fornecer.';
$lang['could_not_fetch_server_info'] = 'Não foi possível obter informação LDAP do servidor';//'Could not retrieve LDAP information from the server';
$lang['server_info_for'] = 'Informações do servidor: ';//'Server info for: ';
$lang['server_reports_following'] = 'O servidor forneceu a seguinte informação sobre si mesmo';//'Server reports the following information about itself';
$lang['nothing_to_report'] = 'Este servidor não tem nada a informar';//'This server has nothing to report.';
//update.php
$lang['update_array_malformed'] = 'update_array est&aaculte; mal-formado. Isto pode ser um problema/defeito do phpLDAPadmin. Por favor comunique isto.';
$lang['could_not_perform_ldap_modify'] = 'Imposs&iacute;vel realizar opera&ccedil;&atilde;o ldap_modify.';
$lang['update_array_malformed'] = 'update_array danificado. Isto pode ser um bug do phpLDAPadmin. Por favor informe.';//'update_array is malformed. This might be a phpLDAPadmin bug. Please report it.';
$lang['could_not_perform_ldap_modify'] = 'Não foi possível realizar a operação ldap_modify.';//'Could not perform ldap_modify operation.';
// update_confirm.php
$lang['do_you_want_to_make_these_changes'] = 'Voc&ecirc; confirma estas altera&ccedil;&otilde;es?';
$lang['attribute'] = 'Atributo';
$lang['old_value'] = 'Valor Antigo';
$lang['new_value'] = 'Valor Novo';
$lang['attr_deleted'] = '[atributo apagado]';
$lang['commit'] = 'Confirma';
$lang['cancel'] = 'Cancela';
$lang['you_made_no_changes'] = 'Voc&ecirc; n&atilde;o fez nenhuma altera&ccedil;&atilde;o.';
$lang['go_back'] = 'Voltar';
$lang['do_you_want_to_make_these_changes'] = 'Você confirma estas alterações?';//'Do you want to make these changes?';
$lang['attribute'] = 'Atributo';//'Attribute';
$lang['old_value'] = 'Valor Antigo';//'Old Value';
$lang['new_value'] = 'Valor Novo';//'New Value';
$lang['attr_deleted'] = '[atributo excluído]';//'[attribute deleted]';
$lang['commit'] = 'Confirmar';//'Commit';
$lang['cancel'] = 'Cancelar';//'Cancel';
$lang['you_made_no_changes'] = 'Você não fez alterações';//'You made no changes';
$lang['go_back'] = 'Voltar';//'Go back';
// welcome.php
$lang['welcome_note'] = 'Use o menu a esquerda para navegar';
$lang['credits'] = 'Cr&eacute;ditos';
$lang['changelog'] = '&Uacute;ltimas Atualiza&ccedil;&otilde;es';
$lang['documentation'] = 'Documenta&ccedil;&atilde;o';
$lang['welcome_note'] = 'Use o menu à esquerda para navegar';//'Use the menu to the left to navigate';
$lang['credits'] = 'Créditos';//'Credits';
$lang['changelog'] = 'Log de Alterações';//'ChangeLog';
$lang['donate'] = 'Contribuir';//'Donate';
// view_jpeg_photo.php
$lang['unsafe_file_name'] = 'Nome de arquivo inseguro: ';
$lang['no_such_file'] = 'Nome de arquivo n&atilde;o encontrado: ';
$lang['unsafe_file_name'] = 'Nome de arquivo inseguro: ';//'Unsafe file name: ';
$lang['no_such_file'] = 'Arquivo inexistente: ';//'No such file: ';
//function.php
$lang['auto_update_not_setup'] = 'Voc&ecirc; ativou o recurso auto_uid_numbers para <b>%s</b> na sua configura&ccedil;&atilde;o,
mas voc&ecirc; n&atilde;o definiu auto_uid_number_mechanism. Por favor, corrija este problema.';
$lang['uidpool_not_set'] = 'Voc&ecirc; especificou o recurso <tt>auto_uid_number_mechanism</tt> como <tt>uidpool</tt>
na sua configura&ccedil;&atilde;o para o servidor <b>%s</b>, mas voc&ecirc; n&atilde;o definiu
audo_uid_number_uid_pool_dn. Por favor, corrija este problema.';
$lang['uidpool_not_exist'] = 'Aparentemente, o objeto uidPool que voc&ecirc; especificou (<tt>%s</tt>)
n&atilde;o existe.';
$lang['specified_uidpool'] = 'Voc&ecirc; especificou o recurso <tt>auto_uid_number_mechanism</tt> como <tt>search</tt> na sua
configura&ccedil;&atilde;o para o servidor <b>%s</b>, mas voc&ecirc; n&atilde;o definiu
<tt>auto_uid_number_search_base</tt>. Por favor, corrija este problema.';
$lang['auto_uid_invalid_value'] = 'Voc&ecirc; especificou um valor inv&aacute;lido para o recurso auto_uid_number_mechanism (<tt>%s</tt>)
na sua configura&ccedil;&atilde;o. Apenas <tt>uidpool</tt> e <tt>search</tt> s&atilde;o v&aacute;lidos.
Por favor, corrija este problema.';
$lang['error_auth_type_config'] = 'Erro: Seu arquivo de configura&ccedil;&atilde;o possui um erro. Os &uacute;nicos valores permitidos para
auth_type na se&ccedil;&atilde;o $servers s&atilde;o \'config\' e \'form\'. Voc&ecirc; usou \'%s\',
o que n&atilde;o &eacute; permitido. ';
$lang['php_install_not_supports_tls'] = 'Sua instala&ccedil;&atilde;o do PHP n&atilde;o suporta TLS';
$lang['could_not_start_tls'] = 'Imposs&iacute;vel inicializar TLS.<br />Por favor, verifique a configura&ccedil;&atilde;o do seu servidor LDAP.';
$lang['auth_type_not_valid'] = 'Seu arquivo de configura&ccedil;&atilde;o possui um erro. O valor %s para auth_type n&atilde;o &eacute; permitido.';
$lang['ldap_said'] = '<b>O servidor LDAP respondeu</b>: %s<br /><br />';
$lang['ferror_error'] = 'Erro';
$lang['fbrowse'] = 'Procurar';
$lang['delete_photo'] = 'Apagar Imagem';
$lang['install_not_support_blowfish'] = 'Sua instala&ccedil;&atilde;o do PHP n&atilde;o suporta encripta&ccedil;&atilde;o blowfish.';
$lang['install_no_mash'] = 'Sua instala&ccedil;&atilde;o do PHP n&atilde;o possui a fun&ccedil;&atilde;o mhash(). Imposs&iacute;vel realizar encripta&ccedil;&otilde;es SHA.';
$lang['jpeg_contains_errors'] = 'jpegPhoto possui erros<br />';
$lang['ferror_number'] = '<b>N&uacute;mero do erro</b>: %s <small>(%s)</small><br /><br />';
$lang['ferror_discription'] = '<b>Descri&ccedil;&atilde;o</b>: %s <br /><br />';
$lang['ferror_number_short'] = '<b>N&uacute;mero do erro</b>: %s<br /><br />';
$lang['ferror_discription_short'] = '<b>Descri&ccedil;&atilde;o</b>: (nenhuma descri&ccedil;&atilde;o dispon&iacute;vel)<br />';
$lang['ferror_submit_bug'] = 'Isto &eacute; um problema/defeito do phpLDAPadmin? Se sim, por favor <a href=\'%s\'>comunique isto</a>.';
$lang['ferror_unrecognized_num'] = 'N&uacute;mero do erro desconhecido: ';
$lang['ferror_nonfatil_bug'] = '<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' />
<b>Voc&ecirc; encontrou um erro n&atilde;o-fatal do phpLDAPadmin!</b></td></tr><tr><td>Erro:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>Arquivo:</td>
<td><b>%s</b> Linha <b>%s</b>, Requisitante <b>%s</b></td></tr><tr><td>Vers&otilde;es:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b>
</td></tr><tr><td>Servidor Web:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>
Por favor, comunique este problema clicando aqui</a>.</center></td></tr></table></center><br />';
$lang['auto_update_not_setup'] = 'Você habilitou auto_uid_numbers para <b>%s</b> na sua configuração, mas você não especificou auto_uid_number_mechanism. Por favor corrija este problema.';//"You have enabled auto_uid_numbers for <b>%s</b> in your configuration, but you have not specified the auto_uid_number_mechanism. Please correct this problem.';
$lang['uidpool_not_set'] = 'Você especificou o "auto_uid_number_mechanism" como "uidpool" na sua configuração para o servidor <b>%s</b>, mas você não especificou o audo_uid_number_uid_pool_dn. Por favor especifique-o antes de continuar.';//"You specified the <tt>auto_uid_number_mechanism</tt> as <tt>uidpool</tt> in your configuration for server <b>%s</b>, but you did not specify the audo_uid_number_uid_pool_dn. Please specify it before proceeding.';
$lang['uidpool_not_exist'] = 'Parece que o uidPool que você especificou na sua configuração (<tt>%s</tt>) não existe.';//"It appears that the uidPool you specified in your configuration (<tt>%s</tt>) does not exist.';
$lang['specified_uidpool'] = 'Você especificou o "auto_uid_number_mechanism" como "busca" na sua configuração para o servidor <b>%s</b>, mas você não especificou o "auto_uid_number_search_base". Por favor especifique-o antes de continuar.';//"You specified the <tt>auto_uid_number_mechanism</tt> as <tt>search</tt> in your configuration for server <b>%s</b>, but you did not specify the <tt>auto_uid_number_search_base</tt>. Please specify it before proceeding.';
$lang['auto_uid_invalid_credential'] = 'Problema ao conectar ao <b>%s</b> com as suas credenciais auto_uid. Por favor verifique seu arquivo de configuração.';// 'Unable to bind to <b>%s</b> with your with auto_uid credentials. Please check your configuration file.';
$lang['bad_auto_uid_search_base'] = 'Sua configuração do phpLDAPadmin especifica que o auto_uid_search_base é inválido para o servidor %s';//'Your phpLDAPadmin configuration specifies an invalid auto_uid_search_base for server %s';
$lang['auto_uid_invalid_value'] = 'Você especificou um valor inválido para auto_uid_number_mechanism ("%s") na sua configuração. Somente "uidpool" e "busca" são válidos. Por favor corrija este problema.';//"You specified an invalid value for auto_uid_number_mechanism (<tt>%s</tt>) in your configration. Only <tt>uidpool</tt> and <tt>search</tt> are valid. Please correct this problem.';
$lang['ferror_congrats_found_bug'] = 'Parab&eacute;ns! Voc&ecirc; encontrou um problema/defeito no phpLDAPadmin.<br /><br />
<table class=\'bug\'>
<tr><td>Erro:</td><td><b>%s</b></td></tr>
<tr><td>N&iacute;vel:</td><td><b>%s</b></td></tr>
<tr><td>Arquivo:</td><td><b>%s</b></td></tr>
<tr><td>Linha:</td><td><b>%s</b></td></tr>
<tr><td>Requisitante:</td><td><b>%s</b></td></tr>
<tr><td>Vers&atilde;o do PLA:</td><td><b>%s</b></td></tr>
<tr><td>Vers&atilde;o do PHP:</td><td><b>%s</b></td></tr>
<tr><td>PHP SAPI:</td><td><b>%s</b></td></tr>
<tr><td>Servidor Web:</td><td><b>%s</b></td></tr>
</table>
<br />
Por favor comunique esse problema/defeito clicando abaixo!';
$lang['error_auth_type_config'] = 'Erro: Você tem um erro no seu arquivo de configuração. Os dois únicos valores permitidos para auth_type na seção $servers são \'config\' e \'form\'. Você entrou \'%s\', que não é permitido.';//"Error: You have an error in your config file. The only two allowed values for 'auth_type' in the $servers section are 'config' and 'form'. You entered '%s', which is not allowed. ';
$lang['php_install_not_supports_tls'] = 'Sua instalação do PHP não suporta TLS';//"Your PHP install does not support TLS';
$lang['could_not_start_tls'] = 'Impossível iniciar TLS. Por favor verifique a configuração do servidor LDAP.';//"Could not start TLS.<br />Please check your LDAP server configuration.';
$lang['could_not_bind_anon'] = 'Não foi possível conectar ao servidor anonimamente.';//'Could not bind anonymously to server.';
$lang['could_not_bind'] = 'Não foi possível conectar ao servidor LDAP.';//'Could not bind to the LDAP server.';
$lang['anonymous_bind'] = 'Conexão anônima';//'Anonymous Bind';
$lang['bad_user_name_or_password'] = 'Usuário ou senha inválido. Por favor tente novamente.';//'Bad username or password. Please try again.';
$lang['redirecting_click_if_nothing_happens'] = 'Redirecionando... Clique aqui se nada acontecer.';//'Redirecting... Click here if nothing happens.';
$lang['successfully_logged_in_to_server'] = 'Conexão estabelecida com sucesso no sevidor <b>%s</b>';//'Successfully logged into server <b>%s</b>';
$lang['could_not_set_cookie'] = 'Não foi possível criar o cookie.';//'Could not set cookie.';
$lang['ldap_said'] = 'O servidor LDAP respondeu: %s';//"<b>LDAP said</b>: %s<br /><br />';
$lang['ferror_error'] = 'Erro';//"Error';
$lang['fbrowse'] = 'procurar';//"browse';
$lang['delete_photo'] = 'Excluir imagem';//"Delete Photo';
$lang['install_not_support_blowfish'] = 'Sua instalação do PHP não suporta codificação blowfish.';//"Your PHP install does not support blowfish encryption.';
$lang['install_not_support_md5crypt'] = 'Sua instalação do PHP não suporta codificação md5crypt.';//'Your PHP install does not support md5crypt encryption.';
$lang['install_no_mash'] = 'Sua instalação do PHP não tem a função mhash(). Impossível fazer transformações SHA.';// "Your PHP install does not have the mhash() function. Cannot do SHA hashes.';
$lang['jpeg_contains_errors'] = 'Foto jpeg contém erros<br />';//"jpegPhoto contains errors<br />';
$lang['ferror_number'] = 'Erro número: %s (%s)';//"<b>Error number</b>: %s <small>(%s)</small><br /><br />';
$lang['ferror_discription'] ='Descrição: %s <br /><br />';// "<b>Description</b>: %s <br /><br />';
$lang['ferror_number_short'] = 'Erro número: %s<br /><br />';//"<b>Error number</b>: %s<br /><br />';
$lang['ferror_discription_short'] = 'Descrição: (descrição não disponível<br />';//"<b>Description</b>: (no description available)<br />';
$lang['ferror_submit_bug'] = 'Isto é um bug do phpLDAPadmin? Se for, por favor <a href=\'%s\'>informe</a>.';//"Is this a phpLDAPadmin bug? If so, please <a href=\'%s\'>report it</a>.';
$lang['ferror_unrecognized_num'] = 'Número do erro desconhecido: ';//"Unrecognized error number: ';
$lang['ferror_nonfatil_bug'] = '<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' /><b>Você encontrou um bug não-fatal no phpLDAPadmin!</b></td></tr><tr><td>Erro:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>Arquivo:</td><td><b>%s</b> linha <b>%s</b>, solicitante <b>%s</b></td></tr><tr><td>Versão:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b></td></tr><tr><td>Servidor Web:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>Por favor informe este bug clicando aqui</a>.</center></td></tr></table></center><br />';//"<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' /><b>You found a non-fatal phpLDAPadmin bug!</b></td></tr><tr><td>Error:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>File:</td><td><b>%s</b> line <b>%s</b>, caller <b>%s</b></td></tr><tr><td>Versions:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b></td></tr><tr><td>Web server:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>Please report this bug by clicking here</a>.</center></td></tr></table></center><br />';
$lang['ferror_congrats_found_bug'] = 'Parabéns! Você encontrou um bug no phpLDAPadmin.<br /><br /><table class=\'bug\'><tr><td>Erro:</td><td><b>%s</b></td></tr><tr><td>Nível:</td><td><b>%s</b></td></tr><tr><td>Arquivo:</td><td><b>%s</b></td></tr><tr><td>Linha:</td><td><b>%s</b></td></tr><tr><td>Caller:</td><td><b>%s</b></td></tr><tr><td>PLA Vers&atile;o:</td><td><b>%s</b></td></tr><tr><td>PHP Vers&atile;o:</td><td><b>%s</b></td></tr><tr><td>PHP SAPI:</td><td><b>%s</b></td></tr><tr><td>Servidor Web:</td><td><b>%s</b></td></tr></table><br />Por favor informe o bug clicando abaixo!';//"Congratulations! You found a bug in phpLDAPadmin.<br /><br /><table class=\'bug\'><tr><td>Error:</td><td><b>%s</b></td></tr><tr><td>Level:</td><td><b>%s</b></td></tr><tr><td>File:</td><td><b>%s</b></td></tr><tr><td>Line:</td><td><b>%s</b></td></tr><tr><td>Caller:</td><td><b>%s</b></td></tr><tr><td>PLA Version:</td><td><b>%s</b></td></tr><tr><td>PHP Version:</td><td><b>%s</b></td></tr><tr><td>PHP SAPI:</td><td><b>%s</b></td></tr><tr><td>Web server:</td><td><b>%s</b></td></tr></table><br /> Please report this bug by clicking below!';
//ldif_import_form
$lang['import_ldif_file_title'] = 'Importar Arquivo LDIF';
$lang['select_ldif_file'] = 'Selecione um arquivo LDIF:';
$lang['select_ldif_file_proceed'] = 'Prosseguir &gt;&gt;';
$lang['import_ldif_file_title'] = 'Importar arquivo LDIF';//'Import LDIF File';
$lang['select_ldif_file'] = 'Selecionar um arquivo LDIF';//'Select an LDIF file:';
$lang['select_ldif_file_proceed'] = 'Continuar &gt;&gt;';//'Proceed &gt;&gt;';
$lang['dont_stop_on_errors'] = 'Não parar quando der erro';//'Don\'t stop on errors';
//ldif_import
$lang['add_action'] = 'Adicionando...';
$lang['delete_action'] = 'Apagando...';
$lang['rename_action'] = 'Renomeando...';
$lang['modify_action'] = 'Modificando...';
$lang['add_action'] = 'Inserindo...';//'Adding...';
$lang['delete_action'] = 'Deletando...';//'Deleting...';
$lang['rename_action'] = 'Renomeando...';//'Renaming...';
$lang['modify_action'] = 'Alterando...';//'Modifying...';
$lang['warning_no_ldif_version_found'] = 'Nenhuma versão encontrada. Assumindo 1.';//'No version found. Assuming 1.';
$lang['valid_dn_line_required'] = 'Uma linha dn válida é obrigatória.';//'A valid dn line is required.';
$lang['missing_uploaded_file'] = 'Arquivo carregado perdido.';//'Missing uploaded file.';
$lang['no_ldif_file_specified.'] = 'Nenhum arquivo LDIF especificado. Por favor tente novamente.';//'No LDIF file specified. Please try again.';
$lang['ldif_file_empty'] = 'Arquivo LDIF carregado está vazio.';// 'Uploaded LDIF file is empty.';
$lang['empty'] = 'vazio';//'empty';
$lang['file'] = 'Arquivo';//'File';
$lang['number_bytes'] = '%s bytes';//'%s bytes';
$lang['failed'] = 'Falhou';//'failed';
$lang['ldif_parse_error'] = 'Erro Analisando Arquivo LDIF';//'LDIF Parse Error';
$lang['ldif_could_not_add_object'] = 'Não foi possível inserir objeto:';//'Could not add object:';
$lang['ldif_could_not_rename_object'] = 'Não foi possível renomear objeto:';//'Could not rename object:';
$lang['ldif_could_not_delete_object'] = 'Não foi possível excluir objeto:';//'Could not delete object:';
$lang['ldif_could_not_modify_object'] = 'Não foi possível alterar objeto:';//'Could not modify object:';
$lang['ldif_line_number'] = 'Linha Número:';//'Line Number:';
$lang['ldif_line'] = 'Linha:';//'Line:';
//delete_form
$lang['sure_permanent_delete_object']='Você tem certeza que deseja excluir este objeto permanentemente?';//'Are you sure you want to permanently delete this object?';
$lang['permanently_delete_children']='Exluir permanentemente todos os objetos filho também?';//'Permanently delete all children also?';
$lang['list_of_entries_to_be_deleted'] = 'Lista de objetos a serem deletados: ';//'List of entries to be deleted:';
$lang['dn'] = 'DN'; //'DN';
// Exports
$lang['export_format'] = 'Formato para exportar';// 'Export format';
$lang['line_ends'] = 'Fins de linha'; //'Line ends';
$lang['must_choose_export_format'] = 'Você deve especificar um formato para exportar';//'You must choose an export format.';
$lang['invalid_export_format'] = 'Formato para exportação inválido';//'Invalid export format';
$lang['no_exporter_found'] = 'Nenhum exportador de arquivos encontrado.';//'No available exporter found.';
$lang['error_performing_search'] = 'Erro encontrado enquanto fazia a pesquisa.';//'Encountered an error while performing search.';
$lang['showing_results_x_through_y'] = 'Mostrando resultados %s através %s.';//'Showing results %s through %s.';
$lang['searching'] = 'Pesquisando...';//'Searching...';
$lang['size_limit_exceeded'] = 'Aviso, limite da pesquisa excedido.';//'Notice, search size limit exceeded.';
$lang['entry'] = 'Objeto';//'Entry';
$lang['ldif_export_for_dn'] = 'Exportação LDIF para: %s'; //'LDIF Export for: %s';
$lang['generated_on_date'] = 'Gerado pelo phpLDAPadmin no %s';//'Generated by phpLDAPadmin on %s';
$lang['total_entries'] = 'Total de objetos';//'Total Entries';
$lang['dsml_export_for_dn'] = 'Exportação DSLM para: %s';//'DSLM Export for: %s';
// logins
$lang['could_not_find_user'] = 'Não foi possível encontrar o usuário "%s"';//'Could not find a user "%s"';
$lang['password_blank'] = 'Você deixou a senha vazia.';//'You left the password blank.';
$lang['login_cancelled'] = 'Login cancelado.';//'Login cancelled.';
$lang['no_one_logged_in'] = 'Ninguém está conectado neste servidor.';//'No one is logged in to that server.';
$lang['could_not_logout'] = 'Não foi possível desconectar.';//'Could not logout.';
$lang['unknown_auth_type'] = 'auth_type desconhecido: %s';//'Unknown auth_type: %s';
$lang['logged_out_successfully'] = 'Desconectado com sucesso do servidor <b>%s</b>';//'Logged out successfully from server <b>%s</b>';
$lang['authenticate_to_server'] = 'Autenticar no servidor %s';//'Authenticate to server %s';
$lang['warning_this_web_connection_is_unencrypted'] = 'Aviso: Esta conexão NÃO é criptografada.';//'Warning: This web connection is unencrypted.';
$lang['not_using_https'] = 'Você não está usando \'https\'. O navegador internet vai transmitir as informações de login sem criptografar.';// 'You are not use \'https\'. Web browser will transmit login information in clear text.';
$lang['login_dn'] = 'Login DN';//'Login DN';
$lang['user_name'] = 'Nome de usuário';//'User name';
$lang['password'] = 'Senha';//'Password';
$lang['authenticate'] = 'Autenticar';//'Authenticate';
// Entry browser
$lang['entry_chooser_title'] = 'Selecionador de objeto';//'Entry Chooser';
// Index page
$lang['need_to_configure'] = 'Você deve configurar o phpLDAPadmin. Faça isso editando o arquivo \'config.php\'. Um arquivo de exemplo é fornecido em \'config.php.example\'';// ';//'You need to configure phpLDAPadmin. Edit the file \'config.php\' to do so. An example config file is provided in \'config.php.example\'';
// Mass deletes
$lang['no_deletes_in_read_only'] = 'Exclusões não permitidas no modo somente leitura.';//'Deletes not allowed in read only mode.';
$lang['error_calling_mass_delete'] = 'Erro chamando mass_delete.php. Faltando mass_delete nas variáveis POST.';//'Error calling mass_delete.php. Missing mass_delete in POST vars.';
$lang['mass_delete_not_array'] = 'a variável POST mass_delete não é um conjunto';//'mass_delete POST var is not an array.';
$lang['mass_delete_not_enabled'] = 'Exclusão em massa não habilitada. Por favor habilite-a no arquivo config.php antes de continuar';//'Mass deletion is not enabled. Please enable it in config.php before proceeding.';
$lang['mass_deleting'] = 'Exclusão em massa';//'Mass Deleting';
$lang['mass_delete_progress'] = 'Progresso da exclusão no servidor "%s"';//'Deletion progress on server "%s"';
$lang['malformed_mass_delete_array'] = 'Conjunto mass_delete danificado.';//'Malformed mass_delete array.';
$lang['no_entries_to_delete'] = 'Você não selecionou nenhum objeto para excluir';//'You did not select any entries to delete.';
$lang['deleting_dn'] = 'Excluindo %s';//'Deleting %s';
$lang['total_entries_failed'] = '%s de %s objetos falharam na exclusão.';//'%s of %s entries failed to be deleted.';
$lang['all_entries_successful'] = 'Todos objetos foram excluídos com sucesso.';//'All entries deleted successfully.';
$lang['confirm_mass_delete'] = 'Confirme exclusão em massa de %s objetos no servidor %s';//'Confirm mass delete of %s entries on server %s';
$lang['yes_delete'] = 'Sim, excluir!';//'Yes, delete!';
// Renaming entries
$lang['non_leaf_nodes_cannot_be_renamed'] = 'Você não pode renomear um objeto que tem objetos filhos (isto é, a operação de renomear não é permitida em objetos não-folha)';// 'You cannot rename an entry which has children entries (eg, the rename operation is not allowed on non-leaf entries)';
$lang['no_rdn_change'] = 'Você não alterou o RDN';//'You did not change the RDN';
$lang['invalid_rdn'] = 'Valor RDN inválido';//'Invalid RDN value';
$lang['could_not_rename'] = 'Não foi possível renomear o objeto';//'Could not rename the entry';
$lang['failed'] = 'falhou';
$lang['ldif_parse_error'] = 'Erro Analisando Arquivo LDIF';
$lang['ldif_could_not_add_object'] = 'Imposs&iacute;vel adicionar objeto:';
$lang['ldif_could_not_rename_object'] = 'Imposs&iacute;vel renomear objeto:';
$lang['ldif_could_not_delete_object'] = 'Imposs&iacute;vel apagar objeto:';
$lang['ldif_could_not_modify_object'] = 'Imposs&iacute;vel modificar objeto:';
$lang['ldif_line_number'] = 'N&uacute;mero da Linha:';
$lang['ldif_line'] = 'Linha:';
?>

343
lang/recoded/cz.php Normal file
View File

@ -0,0 +1,343 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/recoded/cz.php,v 1.1 2004/05/04 19:09:34 i18phpldapadmin Exp $
/**
* Translated to Czech by Radek Senfeld
* --- INSTRUCTIONS FOR TRANSLATORS ---
*
* If you want to write a new language file for your language,
* please submit the file on SourceForge:
*
* https://sourceforge.net/tracker/?func=add&group_id=61828&atid=498548
*
* Use the option "Check to Upload and Attach a File" at the bottom
*
* Thank you!
*
*/
// Search form
$lang['simple_search_form_str'] = 'Rychlé vyhledávání';
$lang['advanced_search_form_str'] = 'Rozšířené vyhledávání';
$lang['server'] = 'Server';
$lang['search_for_entries_whose'] = 'Vyhledat objekty kde';
$lang['base_dn'] = 'Výchozí <acronym title="Distinguished Name">DN</acronym>';
$lang['search_scope'] = 'Oblast prohledávání';
$lang['search_ filter'] = 'Filtr';
$lang['show_attributes'] = 'Zobrazovat atributy';
$lang['Search'] = 'Vyhledat';
$lang['equals'] = 'je';
$lang['starts_with'] = 'začíná na';
$lang['contains'] = 'obsahuje';
$lang['ends_with'] = 'končí na';
$lang['sounds_like'] = 'zní jako';
// Tree browser
$lang['request_new_feature'] = 'Napište si o novou funkci';
$lang['see_open_requests'] = 'zobrazit seznam požadavků';
$lang['report_bug'] = 'Nahlásit chybu';
$lang['see_open_bugs'] = 'zobrazit seznam chyb';
$lang['schema'] = 'schéma';
$lang['search'] = 'vyhledat';
$lang['create'] = 'vytvořit';
$lang['info'] = 'info';
$lang['import'] = 'import';
$lang['refresh'] = 'obnovit';
$lang['logout'] = 'odhlásit se';
$lang['create_new'] = 'Vytvořit nový';
$lang['view_schema_for'] = 'Zobrazit schéma pro';
$lang['refresh_expanded_containers'] = 'Obnovit všechny otevřené složky';
$lang['create_new_entry_on'] = 'Vytvořit nový objekt v';
$lang['view_server_info'] = 'Zobrazit serverem poskytované informace';
$lang['import_from_ldif'] = 'Importovat data ze souboru LDIF';
$lang['logout_of_this_server'] = 'Odhlásit se od tohoto serveru';
$lang['logged_in_as'] = 'Přihlášen jako: ';
$lang['read_only'] = 'jen pro čtení';
$lang['could_not_determine_root'] = 'Nepodařilo se zjistit kořen Vašeho LDAP stromu.';
$lang['ldap_refuses_to_give_root'] = 'Zdá se, že LDAP server je nastavený tak, že nezobrazuje svůj kořen.';
$lang['please_specify_in_config'] = 'Nastavte ho prosím v souboru config.php';
$lang['create_new_entry_in'] = 'Vytvořit nový objekt v';
$lang['login_link'] = 'Přihlásit se...';
// Entry display
$lang['delete_this_entry'] = 'Smazat tento objekt';
$lang['delete_this_entry_tooltip'] = 'Budete požádáni o potvrzení tohoto rozhodnutí';
$lang['copy_this_entry'] = 'Kopírovat tento objekt';
$lang['copy_this_entry_tooltip'] = 'Okopíruje tento objekt do jiného umístění, nového DN, nebo na jiný server';
$lang['export_to_ldif'] = 'Exportovat do LDIF';
$lang['export_to_ldif_tooltip'] = 'Uložit LDIF přepis tohoto objektu';
$lang['export_subtree_to_ldif_tooltip'] = 'Uloží LDIF přepis tohoto objektu a všech jeho potomků';
$lang['export_subtree_to_ldif'] = 'Exportovat podstrom do LDIF';
$lang['export_to_ldif_mac'] = 'Macintosh styl odřádkování';
$lang['export_to_ldif_win'] = 'Windows styl odřádkování';
$lang['export_to_ldif_unix'] = 'Unix styl odřádkování';
$lang['create_a_child_entry'] = 'Vytvořit nového potomka';
$lang['add_a_jpeg_photo'] = 'Přidat jpegPhoto';
$lang['rename_entry'] = 'Přejmenovat objekt';
$lang['rename'] = 'Přejmenovat';
$lang['add'] = 'Přidat';
$lang['view'] = 'Zobrazit';
$lang['add_new_attribute'] = 'Přidat nový atribut';
$lang['add_new_attribute_tooltip'] = 'Přidá nový atribut/hodnotu tomuto objektu';
$lang['internal_attributes'] = 'Interní atributy';
$lang['hide_internal_attrs'] = 'Schovat interní atributy';
$lang['show_internal_attrs'] = 'Zobrazit interní atributy';
$lang['internal_attrs_tooltip'] = 'Atributy nastavené systémem automaticky';
$lang['entry_attributes'] = 'Seznam atributů';
$lang['attr_name_tooltip'] = 'Klepnutím zobrazíte definiční schéma pro atribut typu \'%s\'';
$lang['click_to_display'] = 'pro zobrazení klepněte na \'+\'';
$lang['hidden'] = 'skrytý';
$lang['none'] = 'žádný';
$lang['save_changes'] = 'Uložit změny';
$lang['add_value'] = 'přidat hodnotu';
$lang['add_value_tooltip'] = 'Přidá další hodnotu k atributu \'%s\'';
$lang['refresh_entry'] = 'Obnovit';
$lang['refresh_this_entry'] = 'Obnovit tento objekt';
$lang['delete_hint'] = 'Rada: <b>Pro smazání atributu</b> vyprázděte textové políčko a klepněte na Uložit.';
$lang['attr_schema_hint'] = 'Rada: <b>K zobrazení schémata pro atribut</b> klepněte na název atributu.';
$lang['attrs_modified'] = 'Některé atributy (%s) byly modifikováný a jsou zvýrazněny dole.';
$lang['attr_modified'] = 'Atribut (%s) byl změněn a je zvýrazněn dole.';
$lang['viewing_read_only'] = 'Prohlížení objekt v módu "pouze pro čtení".';
$lang['change_entry_rdn'] = 'Změnit RDN tohoto objektu';
$lang['no_new_attrs_available'] = 'nejsou dostupné žádné nové atributy pro tento objekt';
$lang['binary_value'] = 'Binarní hodnota';
$lang['add_new_binary_attr'] = 'Přidat nový binarní atribut';
$lang['add_new_binary_attr_tooltip'] = 'Přidat nový binarní atribut/hodnotu ze souboru';
$lang['alias_for'] = 'Poznámka: \'%s\' je aliasem pro \'%s\'';
$lang['download_value'] = 'stáhnout data';
$lang['delete_attribute'] = 'smazat atribut';
$lang['true'] = 'true';
$lang['false'] = 'false';
$lang['none_remove_value'] = 'žádný, odebrat hodnotu';
$lang['really_delete_attribute'] = 'Skutečně smazat atribut';
// Schema browser
$lang['the_following_objectclasses'] = 'Následující <b>objectClass</b> jsou podporovány tímto LDAP serverem.';
$lang['the_following_attributes'] = 'Následující <b>attributeType</b> jsou podporovány tímto LDAP serverem.';
$lang['the_following_matching'] = 'Následující <b>kritéria výběru</b> jsou podporovány tímto LDAP serverem.';
$lang['the_following_syntaxes'] = 'Následující <b>syntaxe</b> jsou podporovány tímto LDAP serverem.';
$lang['jump_to_objectclass'] = 'Jdi na objectClass';
$lang['jump_to_attr'] = 'Jdi na typ atributu';
$lang['schema_for_server'] = 'Schéma serveru';
$lang['required_attrs'] = 'Vyžadované atributy';
$lang['optional_attrs'] = 'Volitelné atributy';
$lang['OID'] = 'OID';
$lang['desc'] = 'Popis';
$lang['name'] = 'Název';
$lang['is_obsolete'] = 'Tato objectClass je <b>zastaralá</b>';
$lang['inherits'] = 'Dědí';
$lang['jump_to_this_oclass'] = 'Jdi na definici této objectClass';
$lang['matching_rule_oid'] = 'Výběrové kritérium OID';
$lang['syntax_oid'] = 'Syntaxe OID';
$lang['not_applicable'] = 'nepoužitelný';
$lang['not_specified'] = 'nespecifikovaný';
// Deleting entries
$lang['entry_deleted_successfully'] = 'Objekt \'%s\' byl úspěšně odstraněn.';
$lang['you_must_specify_a_dn'] = 'Musíte zadat DN';
$lang['could_not_delete_entry'] = 'Nebylo možné odstranit objekt: %s';
// Adding objectClass form
$lang['new_required_attrs'] = 'Nový vyžadovaný atribut';
$lang['requires_to_add'] = 'K provedení této akce musíte přidat';
$lang['new_attributes'] = 'nové atributy';
$lang['new_required_attrs_instructions'] = 'Návod: K přiřazení této objectClass k vybranému objektu musíte zadat';
$lang['that_this_oclass_requires'] = 'atributy, které jsou touto objectClass vyžadovány. Můžete tak učinit v tomto formuláři.';
$lang['add_oclass_and_attrs'] = 'Přidat objectClass a atributy';
// General
$lang['chooser_link_tooltip'] = 'Klepněte pro popup okno, ve kterém zvolíte DN';
$lang['no_updates_in_read_only_mode'] = 'Nelze provádět úpravy dokud je server v módu "pouze pro čtení"';
$lang['bad_server_id'] = 'Špatné ID serveru';
$lang['not_enough_login_info'] = 'Nedostatek informací pro přihlášení k serveru. Ověřte prosím nastavení.';
$lang['could_not_connect'] = 'Nelze se připojit k LDAP serveru.';
$lang['could_not_perform_ldap_mod_add'] = 'Nelze provést ldap_mod_add operaci.';
$lang['bad_server_id_underline'] = 'server_id: ';
$lang['success'] = 'Hotovo';
$lang['server_colon_pare'] = 'Server: ';
$lang['look_in'] = 'Prohlížení: ';
$lang['missing_server_id_in_query_string'] = 'V požadavku nebylo uvedeno žádné ID serveru!';
$lang['missing_dn_in_query_string'] = 'V požadavku nebyl uveden žádný DN!';
$lang['back_up_p'] = 'O úroveň výš...';
$lang['no_entries'] = 'žádné objekty';
$lang['not_logged_in'] = 'Nepřihlášen';
$lang['could_not_det_base_dn'] = 'Nelze zjistit výchozí DN';
// Add value form
$lang['add_new'] = 'Přidat nový';
$lang['value_to'] = 'hodnota pro';
$lang['distinguished_name'] = 'Distinguished Name';
$lang['current_list_of'] = 'Současný výpis';
$lang['values_for_attribute'] = 'hodnoty pro atribut';
$lang['inappropriate_matching_note'] = 'Poznámka: Pokud nenastavíte na tomto LDAP serveru pravidlo<br />'.
'<tt>EQUALITY</tt> pro tento atribut, dojde k chybě při výběru objektů.';
$lang['enter_value_to_add'] = 'Zadejte hodnotu, kterou chcete přidat:';
$lang['new_required_attrs_note'] = 'Poznámka: Není vyloučené, že budete vyzváni k zadání nových atributů vyžadovaných touto objectClass';
$lang['syntax'] = 'Syntaxe';
//copy.php
$lang['copy_server_read_only'] = 'Nemůžete provádět změny dokud je server v módu "jen pro čtení"';
$lang['copy_dest_dn_blank'] = 'Ponechali jste kolonku cílové DN prázdnou.';
$lang['copy_dest_already_exists'] = 'Objekt (%s) již v cílovém DN existuje.';
$lang['copy_dest_container_does_not_exist'] = 'Cílová složka (%s) neexistuje.';
$lang['copy_source_dest_dn_same'] = 'Zdrojové a cílové DN se shodují.';
$lang['copy_copying'] = 'Kopíruji ';
$lang['copy_recursive_copy_progress'] = 'Průběh rekurzivního kopírování';
$lang['copy_building_snapshot'] = 'Sestavuji obraz stromu ke kopírování... ';
$lang['copy_successful_like_to'] = 'Kopie úspěšně dokončena! Přejete si ';
$lang['copy_view_new_entry'] = 'zobrazit nový objekt';
$lang['copy_failed'] = 'Nepodařilo se okopírovat DN: ';
//edit.php
$lang['missing_template_file'] = 'Upozornění: chybí šablona, ';
$lang['using_default'] = 'Používám výchozí.';
//copy_form.php
$lang['copyf_title_copy'] = 'Kopírovat ';
$lang['copyf_to_new_object'] = 'jako nový objekt';
$lang['copyf_dest_dn'] = 'Cílové DN';
$lang['copyf_dest_dn_tooltip'] = 'The full DN of the new entry to be created when copying the source entry';
$lang['copyf_dest_server'] = 'Cílový server';
$lang['copyf_note'] = 'Rada: Kopírování mezi servery funguje jedině za předpokladu, že nedojde k neshodě schémat';
$lang['copyf_recursive_copy'] = 'Při kopírování zahrnout všechny potomky tohoto objektu.';
//create.php
$lang['create_required_attribute'] = 'Nevyplnili jste pole pro vyžadovaný atribut <b>%s</b>.';
$lang['create_redirecting'] = 'Přesměrovávám';
$lang['create_here'] = 'zde';
$lang['create_could_not_add'] = 'Nelze objekt do LDAP serveru přidat.';
//create_form.php
$lang['createf_create_object'] = 'Vytvořit objekt';
$lang['createf_choose_temp'] = 'Vyberte šablonu';
$lang['createf_select_temp'] = 'Zvolte šablonu pro vytvoření objektu';
$lang['createf_proceed'] = 'Provést';
//creation_template.php
$lang['ctemplate_on_server'] = 'Na serveru';
$lang['ctemplate_no_template'] = 'V POST požadavku nebyla zaslána žádná šablona.';
$lang['ctemplate_config_handler'] = 'Vaše nastavení uvádí obsluhovač ';
$lang['ctemplate_handler_does_not_exist'] = 'pro tuto šablonu. Ale tento obsluhovač nelze v adresáři templates/creation nalézt.';
// search.php
$lang['you_have_not_logged_into_server'] = 'Nelze provádět vyhledávání na serveru bez předchozího přihlášení.';
$lang['click_to_go_to_login_form'] = 'Klepnutím budete přesměrováni na formulář k přihlášení';
$lang['unrecognized_criteria_option'] = 'Neznámá vyhledávací kritéria: ';
$lang['if_you_want_to_add_criteria'] = 'Pokud si přejete přidat svoje vlastní vyhledávací kritéria, ujistěte se, že jste je přidali do search.php.';
$lang['entries_found'] = 'Nalezené objekty: ';
$lang['filter_performed'] = 'Uplatněný filtr: ';
$lang['search_duration'] = 'Vyhledávání dokončeno za';
$lang['seconds'] = 'sekund';
// search_form_advanced.php
$lang['scope_in_which_to_search'] = 'Oblast vyhledávání';
$lang['scope_sub'] = 'Celý podstrom';
$lang['scope_one'] = 'O jednu úroveň níž';
$lang['scope_base'] = 'Pouze výchozí DN';
$lang['standard_ldap_search_filter'] = 'Standardní LDAP vyhledávací filtr. Přiklad: (&(sn=Smith)(givenname=David))';
$lang['search_filter'] = 'Vyhledávací filtr';
$lang['list_of_attrs_to_display_in_results'] = 'Seznam atributů zobrazených ve výsledku hledání (oddělené čárkou)';
$lang['show_attributes'] = 'Zobrazit atributy';
// search_form_simple.php
$lang['search_for_entries_whose'] = 'Vyhledat objekty kde';
$lang['equals'] = 'je';
$lang['starts with'] = 'začíná na';
$lang['contains'] = 'obsahuje';
$lang['ends with'] = 'končí na';
$lang['sounds like'] = 'zní jako';
// server_info.php
$lang['could_not_fetch_server_info'] = 'Nelze získat informace z LDAP serveru';
$lang['server_info_for'] = 'Server info pro: ';
$lang['server_reports_following'] = 'Server o sobě poskytuje následující informace';
$lang['nothing_to_report'] = 'Server neposkytuje žádné informace.';
//update.php
$lang['update_array_malformed'] = 'update_array je poškozené. Může se jednat o chybu v phpLDAPadmin. Prosíme Vás, abyste chybu nahlásili.';
$lang['could_not_perform_ldap_modify'] = 'Nelze provést operaci ldap_modify.';
// update_confirm.php
$lang['do_you_want_to_make_these_changes'] = 'Přejete si provést tyto změny?';
$lang['attribute'] = 'Atribut';
$lang['old_value'] = 'Původní hodnota';
$lang['new_value'] = 'Nová hodnota';
$lang['attr_deleted'] = '[atribut odstraněn]';
$lang['commit'] = 'Odeslat';
$lang['cancel'] = 'Storno';
$lang['you_made_no_changes'] = 'Neprovedli jste žádné změny';
$lang['go_back'] = 'Zpět';
// welcome.php
$lang['welcome_note'] = 'K navigaci použijte prosím menu na levé straně obrazovky';
$lang['credits'] = 'Autoři';
$lang['changelog'] = 'ChangeLog';
$lang['documentation'] = 'Dokumentace';
// view_jpeg_photo.php
$lang['unsafe_file_name'] = 'Nebezpečný název souboru: ';
$lang['no_such_file'] = 'Soubor nelze nalézt: ';
//function.php
$lang['auto_update_not_setup'] = 'V konfiguraci jste zapnuli podporu auto_uid_numbers pro <b>%s</b>, ale nespecifikovali jste auto_uid_number_mechanism. Napravte prosím nejprve tento problém.';
$lang['uidpool_not_set'] = 'V konfiguraci serveru <b>%s</b> jste specifikovali <tt>auto_uid_number_mechanism</tt> jako <tt>uidpool</tt>, ale neuvedli jste audo_uid_number_uid_pool_dn. Napravte prosím nejprve tento problém.';
$lang['uidpool_not_exist'] = 'Zdá se, že uidPool, uvedený v konfiguraci (<tt>%s</tt>) neexistuje.';
$lang['specified_uidpool'] = 'V konfiguraci serveru <b>%s</b> jste specifikovali <tt>auto_uid_number_mechanism</tt> jako <tt>search</tt>, ale neuvedli jste <tt>auto_uid_number_search_base</tt>. Napravte prosím nejprve tento problém.';
$lang['auto_uid_invalid_value'] = 'V konfiguraci je uvedena neplatná hodnota auto_uid_number_mechanism (<tt>%s</tt>). Platné hodnoty jsou pouze <tt>uidpool</tt> a <tt>search</tt>. Napravte prosím nejprve tento problém.';
$lang['error_auth_type_config'] = 'Chyba: Ve svém konfiguračním souboru jste u položky $servers[\'auth_type\'] uvedli chybnou hodnotu \'%s\'. Platné hodnoty jsou pouze \'config\' a \'form\'.';
$lang['php_install_not_supports_tls'] = 'Tato instalace PHP neobsahuje podporu pro TLS';
$lang['could_not_start_tls'] = 'Nelze inicializovat TLS.<br />Zkontolujte prosím konfiguraci svého LDAP serveru.';
$lang['auth_type_not_valid'] = 'V konfigurační souboru byla nalezena chyba. Hodnota \'%s\' není pro parametr auth_type přípustná.';
$lang['ldap_said'] = '<b>Odpověď LDAP serveru</b>: %s<br /><br />';
$lang['ferror_error'] = 'Chyba';
$lang['fbrowse'] = 'procházet';
$lang['delete_photo'] = 'Odstranit fotografii';
$lang['install_not_support_blowfish'] = 'Tato instalace PHP neobsahuje podporu pro Blowfish.';
$lang['install_no_mash'] = 'Tato instalace PHP nepodporuje funkci mhash(). Nelze aplikovat SHA hash.';
$lang['jpeg_contains_errors'] = 'jpegPhoto obsahuje chyby<br />';
$lang['ferror_number'] = '<b>Číslo chyby</b>: %s <small>(%s)</small><br /><br />';
$lang['ferror_discription'] = '<b>Popis</b>: %s <br /><br />';
$lang['ferror_number_short'] = '<b>Číslo chyby</b>: %s<br /><br />';
$lang['ferror_discription_short'] = '<b>Popis</b>: (popis není k dispozici)<br />';
$lang['ferror_submit_bug'] = 'Pokud je toto chyba v phpLDAPadmin, <a href=\'%s\'>napište nám</a> o tom.';
$lang['ferror_unrecognized_num'] = 'Neznámé číslo chyby: ';
$lang['ferror_nonfatil_bug'] = '<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' />
<b>Narazili jste na nezávažnou, droubnou zanedbatelnou chybu v phpLDAPadmin!</b></td></tr><tr><td>Chyba:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>Soubor:</td>
<td><b>%s</b> řádka <b>%s</b>, voláno z <b>%s</b></td></tr><tr><td>Verze:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b>
</td></tr><tr><td>Web server:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>
Klepnutím prosím ohlášte chybu</a>.</center></td></tr></table></center><br />';
$lang['ferror_congrats_found_bug'] = 'Blahopřejeme! Nalezli jste chybu v phpLDAPadmin. :-)<br /><br />
<table class=\'bug\'>
<tr><td>Chyba:</td><td><b>%s</b></td></tr>
<tr><td>Vážnost:</td><td><b>%s</b></td></tr>
<tr><td>Soubor:</td><td><b>%s</b></td></tr>
<tr><td>Řádka:</td><td><b>%s</b></td></tr>
<tr><td>Voláno z:</td><td><b>%s</b></td></tr>
<tr><td>Verze PLA:</td><td><b>%s</b></td></tr>
<tr><td>Verze PHP:</td><td><b>%s</b></td></tr>
<tr><td>PHP SAPI:</td><td><b>%s</b></td></tr>
<tr><td>Web server:</td><td><b>%s</b></td></tr>
</table>
<br />
Klepnutím dole prosím ohlašte chybu!';
//ldif_import_form
$lang['import_ldif_file_title'] = 'Importovat soubor LDIF';
$lang['select_ldif_file'] = 'Zvolte soubor LDIF:';
$lang['select_ldif_file_proceed'] = 'Proveď &gt;&gt;';
//ldif_import
$lang['add_action'] = 'Přidávání...';
$lang['delete_action'] = 'Odstraňování...';
$lang['rename_action'] = 'Přejmenovávání...';
$lang['modify_action'] = 'Upravování...';
$lang['failed'] = 'selhal';
$lang['ldif_parse_error'] = 'Chyba v souboru LDIF';
$lang['ldif_could_not_add_object'] = 'Nelze přidat objekt:';
$lang['ldif_could_not_rename_object'] = 'Nelze přejmenovat objekt:';
$lang['ldif_could_not_delete_object'] = 'Nelze odstranit objekt:';
$lang['ldif_could_not_modify_object'] = 'Nelze upravit objekt:';
$lang['ldif_line_number'] = 'Číslo řádku:';
$lang['ldif_line'] = 'Řádek:';
?>

View File

@ -1,4 +1,5 @@
<?php
/* --- INSTRUCTIONS FOR TRANSLATORS ---
*
* If you want to write a new language file for your language,
@ -16,346 +17,500 @@
* The $lang array contains all the strings that phpLDAPadmin uses.
* Each language file simply defines this aray with strings in its
* language.
* $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/recoded/pt-br.php,v 1.2 2004/01/07 20:28:25 i18phpldapadmin Exp $
* $Header: /cvsroot/phpldapadmin/phpldapadmin/lang/recoded/pt-br.php,v 1.3 2004/05/06 20:00:38 i18phpldapadmin Exp $
*/
/*
Initial translation from Alexandre Maciel (digitalman (a) bol (dot) com (dot) br) for phpldapadmin-0.9.3
Next translation from Elton (CLeGi - do at - terra.com.br) to cvs-release 1.65
*/
// Search form
$lang['simple_search_form_str'] = 'Busca Simples';
$lang['advanced_search_form_str'] = 'Busca Avan&ccedil;ada';
$lang['server'] = 'Servidor';
//$lang['search_for_entries_whose'] = 'Procurar por objetos cujo';
$lang['base_dn'] = 'Base <acronym title="Nome Distinto">DN</acronym>';
$lang['search_scope'] = 'Abrang&ecirc;ncia da Busca';
$lang['search_ filter'] = 'Filtro de Busca';
$lang['show_attributes'] = 'Exibir Atributos';
$lang['Search'] = 'Buscar';
// $lang['equals'] = 'equals';
// $lang['starts_with'] = 'starts with';
// $lang['contains'] = 'contains';
// $lang['ends_with'] = 'ends with';
// $lang['sounds_like'] = 'sounds like';
$lang['simple_search_form_str'] = 'Formulário de busca Simples';//'Simple Search Form';
$lang['advanced_search_form_str'] = 'Formulário de busca Avançada';//'Advanced Search Form';
$lang['server'] = 'Servidor';//'Server';
$lang['search_for_entries_whose'] = 'Buscar objetos cujo...';//'Search for entries whose';
$lang['base_dn'] = 'Base DN';//'Base DN';
$lang['search_scope'] = 'Abrangência da Busca';//'Search Scope';
$lang['show_attributes'] = 'Exibir Atributos';//'Show Attributtes';
$lang['Search'] = 'Buscar';//'Search';
$lang['equals'] = 'igual';//'equals';
$lang['contains'] = 'contém';//'contains';
$lang['predefined_search_str'] = 'Selecione uma busca pré-definida';//'or select a predefined search';
$lang['predefined_searches'] = 'Buscas pré-definidas';//'Predefined Searches';
$lang['no_predefined_queries'] = 'Nenhum critério de busca foi definido no config.php';// 'No queries have been defined in config.php.';
// Tree browser
$lang['request_new_feature'] = 'Requisitar um novo recurso';
$lang['see_open_requests'] = 'Ver as requisi&ccedil;&otilde;es em aberto';
$lang['report_bug'] = 'Comunicar um problema/defeito';
$lang['see_open_bugs'] = 'Ver os problemas/defeitos em aberto';
$lang['schema'] = 'esquemas';
$lang['search'] = 'buscar';
$lang['create'] = 'novo';
$lang['info'] = 'info';
$lang['import'] = 'importar';
$lang['refresh'] = 'atualizar';
$lang['logout'] = 'desconectar';
$lang['create_new'] = 'Criar Novo';
$lang['view_schema_for'] = 'ver esquemas de';
$lang['refresh_expanded_containers'] = 'atualizar todos os containers abertos em';
$lang['create_new_entry_on'] = 'criar um novo objeto em';
$lang['view_server_info'] = 'visualizar as informa&ccedil;&otilde;es fornecidas pelo servidor';
$lang['import_from_ldif'] = 'importar objetos de um arquivo LDIF';
$lang['logout_of_this_server'] = 'desconectar deste servidor';
$lang['logged_in_as'] = 'Conectado como: ';
$lang['read_only'] = 'somente leitura';
$lang['could_not_determine_root'] = 'Incapaz de determinar a raiz do sua &aacute;rvore LDAP.';
$lang['ldap_refuses_to_give_root'] = 'Aparentemente o servidor LDAP foi configurado para ocultar sua raiz.';
$lang['please_specify_in_config'] = 'Por favor, especifique no arquivo config.php';
$lang['create_new_entry_in'] = 'Criar um novo objeto em';
$lang['login_link'] = 'Conectar...';
$lang['request_new_feature'] = 'Solicitar uma nova função';//'Request a new feature';
$lang['report_bug'] = 'Comunicar um bug';//'Report a bug';
$lang['schema'] = 'esquema';//'schema';
$lang['search'] = 'buscar';//'search';
$lang['refresh'] = 'atualizar';//'refresh';
$lang['create'] = 'criar';//'create';
$lang['info'] = 'info';//'info';
$lang['import'] = 'importar';//'import';
$lang['logout'] = 'desconectar';//'logout';
$lang['create_new'] = 'Criar Novo';//'Create New';
$lang['new'] = 'Novo';//'new';
$lang['view_schema_for'] = 'Ver esquemas de';//'View schema for';
$lang['refresh_expanded_containers'] = 'Atualizar todos containers abertos para';//'Refresh all expanded containers for';
$lang['create_new_entry_on'] = 'Criar um novo objeto em';//'Create a new entry on';
$lang['view_server_info'] = 'Ver informações fornecidas pelo servidor';//'View server-supplied information';
$lang['import_from_ldif'] = 'Importar objetos de um arquivo LDIF';//'Import entries from an LDIF file';
$lang['logout_of_this_server'] = 'Desconectar deste servidor';//'Logout of this server';
$lang['logged_in_as'] = 'Conectado como: ';//'Logged in as: ';
$lang['read_only'] = 'somente leitura';//'read only';
$lang['read_only_tooltip'] = 'Este atributo foi marcado como somente leitura pelo administrador do phpLDAPadmin';//This attribute has been flagged as read only by the phpLDAPadmin administrator';
$lang['could_not_determine_root'] = 'Não foi possível determinar a raiz da sua árvore LDAP.';//'Could not determin the root of your LDAP tree.';
$lang['ldap_refuses_to_give_root'] = 'Parece que o servidor LDAP foi configurado para não revelar seu root.';//'It appears that the LDAP server has been configured to not reveal its root.';
$lang['please_specify_in_config'] = 'Por favor especifique-o no config.php';//'Please specify it in config.php';
$lang['create_new_entry_in'] = 'Criar um novo objeto em';//'Create a new entry in';
$lang['login_link'] = 'Conectar...';//'Login...';
$lang['login'] = 'conectar';//'login';
// Entry display
$lang['delete_this_entry'] = 'Apagar este objeto';
$lang['delete_this_entry_tooltip'] = 'Ser&aacute; solicitado que voc&ecirc; confirme sua decis&atilde;o';
$lang['copy_this_entry'] = 'Copiar este objeto';
$lang['copy_this_entry_tooltip'] = 'Copia este objeto para outro contexto, para um novo DN ou para outro servidor';
$lang['export_to_ldif'] = 'Exportar para LDIF';
$lang['export_to_ldif_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto';
$lang['export_subtree_to_ldif_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto e todos os seus filhos';
$lang['export_subtree_to_ldif'] = 'Exportar ramos para LDIF';
$lang['export_mac'] = 'Arquivo texto do tipo Macintosh';
$lang['export_win'] = 'Arquivo texto do tipo DOS/Windows';
$lang['export_unix'] = 'Arquivo texto do tipo Unix';
$lang['create_a_child_entry'] = 'Criar um objeto-filho';
$lang['add_a_jpeg_photo'] = 'Adicionar uma imagem JPEG';
$lang['rename_entry'] = 'Renomear Objeto';
$lang['rename'] = 'Renomear';
$lang['add'] = 'Adicionar';
$lang['view'] = 'Ver';
$lang['add_new_attribute'] = 'Adicionar Novo Atributo';
$lang['add_new_attribute_tooltip'] = 'Adiciona um novo atributo/valor para este objeto';
$lang['internal_attributes'] = 'Atributos Internos';
$lang['hide_internal_attrs'] = 'Ocultar os atributos internos';
$lang['show_internal_attrs'] = 'Exibir os atributos internos';
$lang['internal_attrs_tooltip'] = 'Atributos configurados automaticamente pelo sistema';
$lang['entry_attributes'] = 'Atributos do Objeto';
$lang['attr_name_tooltip'] = 'Clique para visualizar a defini&ccedil;&atilde;o do esquema para atributos do tipo \'%s\'';
$lang['click_to_display'] = 'Clique em \'+\' para exibir';
$lang['hidden'] = 'ocultos';
$lang['none'] = 'nenhum';
$lang['save_changes'] = 'Salvar Altera&ccedil;&otilde;es';
$lang['add_value'] = 'adicionar novo valor';
$lang['add_value_tooltip'] = 'Adiciona um novo valor para o atributo \'%s\'';
$lang['refresh_entry'] = 'Atualizar';
$lang['refresh_this_entry'] = 'Atualiza este objeto';
$lang['delete_hint'] = "Dica: <b>Para apagar um atributo</b>, deixe o campo correspondente vazio e clique em 'Salvar Altera&ccedil;&otilde;es'.";
$lang['attr_schema_hint'] = 'Dica: <b>Para visualizar o esquema de um atributo</b>, clique no nome do atributo desejado.';
$lang['attrs_modified'] = 'Alguns atributos (%s) foram modificados e est&atilde;o destacados abaixo.';
$lang['attr_modified'] = 'Um atributo (%s) foi modificado e est&aacute; destacado abaixo.';
$lang['viewing_read_only'] = 'Visualizando o objeto em modo somente-leitura.';
$lang['change_entry_rdn'] = 'Alterar o RDN deste objeto';
$lang['no_new_attrs_available'] = 'n&atilde;o h&aacute; mais atributos dispon&iacute;veis para este objeto';
$lang['binary_value'] = 'Valor bin&aacute;rio';
$lang['add_new_binary_attr'] = 'Adicionar Novo Atributo Bin&aacute;rio';
$lang['add_new_binary_attr_tooltip'] = 'Adiciona um novo atributo/valor bin&aacute;rio de um arquivo para este objeto';
$lang['alias_for'] = 'Nota: \'%s\' &eacute; um nome amig&aacute;vel para \'%s\'';
$lang['download_value'] = 'fazer download';
$lang['delete_attribute'] = 'apagar atributo';
$lang['true'] = 'verdadeiro';
$lang['false'] = 'falso';
$lang['none_remove_value'] = 'nenhum, remover o valor';
$lang['really_delete_attribute'] = 'Deseja realmente apagar atributo';
$lang['delete_this_entry'] = 'Excluir este objeto';//'Delete this entry';
$lang['delete_this_entry_tooltip'] = 'Será solicitado que você confirme sua decisão';//'You will be prompted to confirm this decision';
$lang['copy_this_entry'] = 'Copiar este objeto';//'Copy this entry';
$lang['copy_this_entry_tooltip'] = 'Copiar este objeto para outro local, um novo DN, ou outro servidor';//'Copy this object to another location, a new DN, or another server';
$lang['export'] = 'Exportar';//'Export to LDIF';
$lang['export_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto';//'Save an LDIF dump of this object';
$lang['export_subtree_tooltip'] = 'Salva um arquivo LDIF com os dados deste objeto e todos os seus filhos';//'Save an LDIF dump of this object and all of its children';
$lang['export_subtree'] = 'Exportar sub-árvore para LDIF';//'Export subtree to LDIF';
$lang['create_a_child_entry'] = 'Criar objeto filho';//'Create a child entry';
$lang['rename_entry'] = 'Renomear objeto';//'Rename Entry';
$lang['rename'] = 'Renomear';//'Rename';
$lang['add'] = 'Inserir';//'Add';
$lang['view'] = 'Ver';//'View';
$lang['view_one_child'] = 'Ver 1 filho';//'View 1 child';
$lang['view_children'] = 'Ver %s filhos';//'View %s children';
$lang['add_new_attribute'] = 'Inserir Novo Atributo';//'Add New Attribute';
$lang['add_new_objectclass'] = 'Inserir nova ObjectClass';//'Add new ObjectClass';
$lang['hide_internal_attrs'] = 'Ocultar atributos internos';//'Hide internal attributes';
$lang['show_internal_attrs'] = 'Exibir atributos internos';//'Show internal attributes';
$lang['attr_name_tooltip'] = 'Clique para ver a definição do esquema para atributos do tipo \'%s\'';//'Click to view the schema defintion for attribute type \'%s\'';
$lang['none'] = 'nenhum';//'none';
$lang['no_internal_attributes'] = 'Nenhum atributo interno.';//'No internal attributes';
$lang['no_attributes'] = 'Este objeto não tem atributos.';//'This entry has no attributes';
$lang['save_changes'] = 'Salvar Alterações';//'Save Changes';
$lang['add_value'] = 'inserir valor';//'add value';
$lang['add_value_tooltip'] = 'Insere um novo valor para o atributo \'%s\'';//'Add an additional value to this attribute';
$lang['refresh_entry'] = 'Atualizar';// 'Refresh';
$lang['refresh_this_entry'] = 'Atualizar este objeto';//'Refresh this entry';
$lang['delete_hint'] = 'Dica: Para apagar um atributo, apague o conteúdo do campo de texto e clique salvar.';//'Hint: <b>To delete an attribute</b>, empty the text field and click save.';
$lang['attr_schema_hint'] = 'Dica: Para ver o esquema de um atributo clique no nome do atributo.';//'Hint: <b>To view the schema for an attribute</b>, click the attribute name.';
$lang['attrs_modified'] = 'Alguns atributos (%s) foram modificados e estão destacados abaixo.';//'Some attributes (%s) were modified and are highlighted below.';
$lang['attr_modified'] = 'Um atributo (%s) foi modificado e está destacado abaixo';//'An attribute (%s) was modified and is highlighted below.';
$lang['viewing_read_only'] = 'Vizualizando objeto em modo somente-leitura.';//'Viewing entry in read-only mode.';
$lang['no_new_attrs_available'] = 'novos atributos não disponíveis para este objeto.';//'no new attributes available for this entry';
$lang['no_new_binary_attrs_available'] = 'novos atributos binários não disponíveis para este objeto.';//'no new binary attributes available for this entry';
$lang['binary_value'] = 'Valor binário';//'Binary value';
$lang['add_new_binary_attr'] = 'Inserir novo atributo binário';//'Add New Binary Attribute';
$lang['alias_for'] = 'Nota: \'%s\' é um alias para \'%s\'';//'Note: \'%s\' is an alias for \'%s\'';
$lang['download_value'] = 'download do valor';//'download value';
$lang['delete_attribute'] = 'apagar atributo';//'delete attribute';
$lang['true'] = 'verdadeiro';//'true';
$lang['false'] = 'falso';//'false';
$lang['none_remove_value'] = 'nenhum, remover valor';//?? //'none, remove value';
$lang['really_delete_attribute'] = 'Deseja realmente apagar atributo';//'Really delete attribute';
$lang['add_new_value'] = 'Inserir novo valor';//'Add New Value';
// Schema browser
$lang['the_following_objectclasses'] = 'As seguintes <b>classes de objetos</b> s&atilde;o suportadas por este servidor LDAP.';
$lang['the_following_attributes'] = 'Os seguintes <b>tipos de atributos</b> s&atilde;o suportados por este servidor LDAP.';
$lang['the_following_matching'] = 'As seguintes <b>regras de consist&ecirc;ncia/b> s&atilde;o suportadas por este servidor LDAP.';
$lang['the_following_syntaxes'] = 'As seguintes <b> regras de sintaxe</b> s&atilde;o suportadas por este servidor LDAP.';
$lang['jump_to_objectclass'] = 'Ir para uma classe de objetos';
$lang['jump_to_attr'] = 'Ir para um atributo';
$lang['schema_for_server'] = 'Esquemas do servidor';
$lang['required_attrs'] = 'Atributos Necess&aacute;rios';
$lang['optional_attrs'] = 'Atributos Opcionais';
$lang['OID'] = 'OID';
$lang['desc'] = 'Descri&ccedil;&atilde;o';
$lang['name'] = 'Nome';
$lang['is_obsolete'] = 'Essa classe de objetos &eacute; <b>obsoleta</b>';
$lang['inherits'] = 'Herda de';
$lang['jump_to_this_oclass'] = 'Ir para a defini&ccedil;&atilde;o desta classe de objetos';
$lang['matching_rule_oid'] = 'OID da Regra de Consist&ecirc;ncia';
$lang['syntax_oid'] = 'OID da Regra de Sintaxe';
$lang['not_applicable'] = 'n&atilde;o aplic&aacute;vel';
$lang['not_specified'] = 'n&atilde;o especificado';
$lang['the_following_objectclasses'] = 'As seguintes Classes de objetos são suportadas por este servidor LDAP.';//'The following <b>objectClasses</b> are supported by this LDAP server.';
$lang['the_following_attributes'] = 'Os seguintes tipos de atributos são suportadas por este servidor LDAP.';//'The following <b>attributeTypes</b> are supported by this LDAP server.';
$lang['the_following_matching'] = 'As seguintes regras de consistência são suportadas por este servidor LDAP.';//'The following <b>matching rules</b> are supported by this LDAP server.';
$lang['the_following_syntaxes'] = 'As seguintes sintaxes são suportadas por este servidor LDAP.';//'The following <b>syntaxes</b> are supported by this LDAP server.';
$lang['schema_retrieve_error_1']='O servidor não suporta o protocolo LDAP completamente.';//'The server does not fully support the LDAP protocol.';
$lang['schema_retrieve_error_2']='Sua versão do PHP não executa a consulta corretamente.';//'Your version of PHP does not correctly perform the query.';
$lang['schema_retrieve_error_3']='Ou, por fim, o phpLDAPadmin não sabe como buscar o esquema para o seu servidor.';//'Or lastly, phpLDAPadmin doesn\'t know how to fetch the schema for your server.';
$lang['jump_to_objectclass'] = 'Ir para uma classe de objetos';//'Jump to an objectClass';
$lang['jump_to_attr'] = 'Ir para um tipo de atributo';//'Jump to an attribute';
$lang['jump_to_matching_rule'] = 'Ir para regras de consistência';//'Jump to a matching rule';
$lang['schema_for_server'] = 'Esquema para servidor';//'Schema for server';
$lang['required_attrs'] = 'Atributos Obrigatórios';//'Required Attributes';
$lang['optional_attrs'] = 'Atributos Opcionais';//'Optional Attributes';
$lang['optional_binary_attrs'] = 'Atributos Binários Opcionais';//'Optional Binary Attributes';
$lang['OID'] = 'OID';//'OID';
$lang['aliases']='Apelidos';//'Aliases';
$lang['desc'] = 'Descrição';//'Description';
$lang['no_description']='sem descrição';//'no description';
$lang['name'] = 'Nome';//'Name';
$lang['equality']='Igualdade';//'Equality';
$lang['is_obsolete'] = 'Esta classe de objeto está obsoleta.';//'This objectClass is <b>obsolete</b>';
$lang['inherits'] = 'Herda de';//'Inherits';
$lang['inherited_from']='Herdado de';//inherited from';
$lang['parent_to'] = 'Pai para';//'Parent to';
$lang['jump_to_this_oclass'] = 'Ir para definição desta classe de objeto';//'Jump to this objectClass definition';
$lang['matching_rule_oid'] = 'OID da Regra de consistência';//'Matching Rule OID';
$lang['syntax_oid'] = 'OID da Sintaxe';//'Syntax OID';
$lang['not_applicable'] = 'não aplicável';//'not applicable';
$lang['not_specified'] = 'não especificado';//not specified';
$lang['character']='caracter';//'character';
$lang['characters']='caracteres';//'characters';
$lang['used_by_objectclasses']='Usado por classes de objetos';//'Used by objectClasses';
$lang['used_by_attributes']='Usado por Atributos';//'Used by Attributes';
$lang['oid']='OID';
$lang['obsolete']='Obsoleto';//'Obsolete';
$lang['ordering']='Ordenando';//'Ordering';
$lang['substring_rule']='Regra de substring';//'Substring Rule';
$lang['single_valued']='Avaliado sozinho';//'Single Valued';
$lang['collective']='Coletivo';//'Collective';
$lang['user_modification']='Alteração do usuário';//'User Modification';
$lang['usage']='Uso';//'Usage';
$lang['maximum_length']='Tamanho Máximo';//'Maximum Length';
$lang['attributes']='Tipos de Atriburos';//'Attributes Types';
$lang['syntaxes']='Sintaxes';//'Syntaxes';
$lang['objectclasses']='Classe de Objetos';//'objectClasses';
$lang['matchingrules']='Regra de consistência';//'Matching Rules';
$lang['could_not_retrieve_schema_from']='Não foi possível encontrar esquema de';//'Could not retrieve schema from';
$lang['type']='Tipo';// 'Type';
// Deleting entries
$lang['entry_deleted_successfully'] = 'Objeto \'%s\' apagado com sucesso.';
$lang['you_must_specify_a_dn'] = 'Voc&ecirc; precisa especificar o DN';
$lang['could_not_delete_entry'] = 'Imposs&iacute;vel apagar o objeto: %s';
$lang['entry_deleted_successfully'] = 'Objeto \'%s\' excluído com sucesso.';//'Entry \'%s\' deleted successfully.';
$lang['you_must_specify_a_dn'] = 'Você deve especificar um DN';//'You must specify a DN';
$lang['could_not_delete_entry'] = 'Não foi possível excluir o objeto: %s';//'Could not delete the entry: %s';
$lang['no_such_entry'] = 'Objeto inexistente: %s';//'No such entry: %s';
$lang['delete_dn'] = 'Excluir %s';//'Delete %s';
$lang['entry_is_root_sub_tree'] = 'Este objeto é a raiz de uma sub-árvore e contém %s objetos.';//'This entry is the root of a sub-tree containing %s entries.';
$lang['view_entries'] = 'Ver objetos';//'view entries';
$lang['confirm_recursive_delete'] = 'o phpLDAPadmin pode excluir recursivamente este objeto e todos %s filhos. Veja abaixo uma lista de todos os objetos que esta ação vai excluir. Deseja fazer isso?';//'phpLDAPadmin can recursively delete this entry and all %s of its children. See below for a list of all the entries that this action will delete. Do you want to do this?';
$lang['confirm_recursive_delete_note'] = 'Nota: isto é potencialmente muito perigoso, faça isso por sua conta e risco. Esta operação não pode ser desfeita. Leve em consideração apelidos, referências e outras coisas que podem causar problemas.';//'Note: this is potentially very dangerous and you do this at your own risk. This operation cannot be undone. Take into consideration aliases, referrals, and other things that may cause problems.';
$lang['delete_all_x_objects'] = 'Excluir todos os %s objetos';//'Delete all %s objects';
$lang['recursive_delete_progress'] = 'Progresso de exclusão recursiva';//'Recursive delete progress';
$lang['entry_and_sub_tree_deleted_successfully'] = 'Objeto %s e sub-árvore excluído com sucesso.';// 'Entry %s and sub-tree deleted successfully.';
$lang['failed_to_delete_entry'] = 'Falha ao excluir objeto %s';//'Failed to delete entry %s';
// Deleting attributes
$lang['attr_is_read_only'] = 'O atributo %s está marcado como somente leitura na configuração do phpLDAPadmin.';//'The attribute "%s" is flagged as read-only in the phpLDAPadmin configuration.';
$lang['no_attr_specified'] = 'Nome de atributo não especificado.';//'No attribute name specified.';
$lang['no_dn_specified'] = 'DN não especificado';//'No DN specified';
// Adding attributes
$lang['left_attr_blank'] = 'Você deixou o valor do atributo vazio. Por favor retorne e tente novamente.';//'You left the attribute value blank. Please go back and try again.';
$lang['failed_to_add_attr'] = 'Falha ao inserir o atributo.';//'Failed to add the attribute.';
$lang['file_empty'] = 'O arquivo que você escolheu está vazio ou não existe. Por favor retorne e tente novamente.';//'The file you chose is either empty or does not exist. Please go back and try again.';
$lang['invalid_file'] = 'Erro de segurança: O arquivo que está sendo carregado pode ser malicioso.';//'Security error: The file being uploaded may be malicious.';
$lang['warning_file_uploads_disabled'] = 'Sua configuração do PHP desabilitou o upload de arquivos. Por favor verifique o php.ini antes de continuar.';//'Your PHP configuration has disabled file uploads. Please check php.ini before proceeding.';
$lang['uploaded_file_too_big'] = 'O arquivo que você carregou é muito grande. Por favor verifique a configuração do upload_max_size no php.ini';//'The file you uploaded is too large. Please check php.ini, upload_max_size setting';
$lang['uploaded_file_partial'] = 'O arquivo que você selecionou foi carregado parcialmente, provavelmente por causa de um erro de rede.';//'The file you selected was only partially uploaded, likley due to a network error.';
$lang['max_file_size'] = 'Tamanho máximo de arquivo: %s';//'Maximum file size: %s';
// Updating values
$lang['modification_successful'] = 'Alteração bem sucedida!';//'Modification successful!';
$lang['change_password_new_login'] = 'Você alterou sua senha, você deve conectar novamente com a sua nova senha.'; //'Since you changed your password, you must now login again with your new password.';
// Adding objectClass form
$lang['new_required_attrs'] = 'Novo(s) Atributo(s) Necess&aacute;rio(s)';
$lang['requires_to_add'] = 'Essa a&ccedil;&atilde;o requer que voc&ecirc; adicione';
$lang['new_attributes'] = 'novo(s) atributos(s)';
$lang['new_required_attrs_instructions'] = 'Instru&ccedil;&otilde;es: Para poder acrescentar esta Classe de Objetos a este objeto, voc&ecirc; precisa especificar';
$lang['that_this_oclass_requires'] = 'que esta Classe de Objetos necessita. Voc&ecirc; pode faz&ecirc;-lo no formul&aacute;rio abaixo:';
$lang['add_oclass_and_attrs'] = 'Acrescentar Classe de Objetos e Atributos';
$lang['new_required_attrs'] = 'Novos Atributos Obrigatórios';//'New Required Attributes';
$lang['requires_to_add'] = 'Esta ação requer que você insira';//'This action requires you to add';
$lang['new_attributes'] = 'novos atributos';//'new attributes';
$lang['new_required_attrs_instructions'] = 'Instruções: Para poder inserir esta Classe de Objetos a este objeto, você deve especificar';//'Instructions: In order to add this objectClass to this entry, you must specify';
$lang['that_this_oclass_requires'] = 'que esta Classe de Objetos requer. Você pode fazê-lo no formulário abaixo:';//'that this objectClass requires. You can do so in this form.';
$lang['add_oclass_and_attrs'] = 'Inserir Classe de Objetos e Atributos';//'Add ObjectClass and Attributes';
// General
$lang['chooser_link_tooltip'] = 'Clique aqui para abrir uma janela e selecionar o valor do atributo (DN) graficamente';
$lang['no_updates_in_read_only_mode'] = 'Voc&ecirc; n&atilde;o pode realizar altera&ccedil;&otilde;es enquanto o servidor estiver em modo somente-leitura';
$lang['bad_server_id'] = 'ID do servidor inv&aacute;lido';
$lang['not_enough_login_info'] = 'Informa&ccedil;&atilde;o insuficiente para efetuar conex&atilde;o ao servidor. Por favor verifique a sua configura&ccedil;&atilde;o.';
$lang['could_not_connect'] = 'Imposs&iacute;vel conectar ao servidor LDAP.';
$lang['could_not_perform_ldap_mod_add'] = 'Imposs&iacute;vel realizar opera&ccedil;&atilde;o ldap_mod_add.';
$lang['bad_server_id_underline'] = 'ID do servidor inv&aacute;lido: ';
$lang['success'] = ' Sucesso';
$lang['server_colon_pare'] = 'Servidor: ';
$lang['look_in'] = 'Procurando em: ';
$lang['missing_server_id_in_query_string'] = 'Nenhum ID de servidor especificado na busca!';
$lang['missing_dn_in_query_string'] = 'Nenhum DN especificado na busca!';
$lang['back_up_p'] = 'Backup...';
$lang['no_entries'] = 'nenhum objeto';
$lang['not_logged_in'] = 'N&atilde;o conectado';
$lang['could_not_det_base_dn'] = 'Imposs&iacute;vel determinar a base DN';
$lang['chooser_link_tooltip'] = 'Clique para abrir uma janela e selecionar um objeto (DN) graficamente';//"Click to popup a dialog to select an entry (DN) graphically';
$lang['no_updates_in_read_only_mode'] = 'Você não pode realizar atualizações enquanto o servidor estiver em modo somente leitura';//'You cannot perform updates while server is in read-only mode';
$lang['bad_server_id'] = 'ID do servidor inválido';//'Bad server id';
$lang['not_enough_login_info'] = 'Informações insuficientes para a conexão com o servidor. Por favor verifique sua configuração.';//'Not enough information to login to server. Please check your configuration.';
$lang['could_not_connect'] = 'Não foi possível conectar com o servidor LDAP.';//'Could not connect to LDAP server.';
$lang['could_not_connect_to_host_on_port'] = 'Não foi possível conectar em "%s" na porta "%s"';//'Could not connect to "%s" on port "%s"';
$lang['could_not_perform_ldap_mod_add'] = 'Não foi possível executar operação ldap_mod_add.';//'Could not perform ldap_mod_add operation.';
$lang['bad_server_id_underline'] = 'server_id inválido: ';//"Bad server_id: ';
$lang['success'] = 'Sucesso';//"Success';
$lang['server_colon_pare'] = 'Servidor: ';//"Server: ';
$lang['look_in'] = 'Procurando em: ';//"Looking in: ';
$lang['missing_server_id_in_query_string'] = 'ID do servidor não especificado na consulta!';//'No server ID specified in query string!';
$lang['missing_dn_in_query_string'] = 'DN não especificado na consulta!';//'No DN specified in query string!';
$lang['back_up_p'] = 'Backup...';//"Back Up...';
$lang['no_entries'] = 'nenhum objeto';//"no entries';
$lang['not_logged_in'] = 'Não conectado';//"Not logged in';
$lang['could_not_det_base_dn'] = 'Não foi possível determinar a base DN';//"Could not determine base DN';
$lang['reasons_for_error']='Isso pode ter acontecido por vários motivos, os mais provável são:';//'This could happen for several reasons, the most probable of which are:';
$lang['please_report_this_as_a_bug']='Por favor informe isso como bug.';//'Please report this as a bug.';
$lang['yes']='Sim';//'Yes'
$lang['no']='Não';//'No'
$lang['go']='Ir';//'go'
$lang['delete']='Excluir';//'Delete';
$lang['back']='Voltar';//'Back';
$lang['object']='objeto';//'object';
$lang['delete_all']='Excluir tudo';//'Delete all';
$lang['url_bug_report']='https://sourceforge.net/tracker/?func=add&group_id=61828&atid=498546';
$lang['hint'] = 'dica';//'hint';
$lang['bug'] = 'bug';//'bug';
$lang['warning'] = 'aviso';//'warning';
$lang['light'] = 'a palavra "light" de "light bulb"'; // the word 'light' from 'light bulb'
$lang['proceed_gt'] = 'Continuar &gt;&gt;';//'Proceed &gt;&gt;';
// Add value form
$lang['add_new'] = 'Adicionar novo valor';
$lang['value_to'] = 'para';
$lang['distinguished_name'] = 'Nome Distinto';
$lang['current_list_of'] = 'Lista atual de';
$lang['values_for_attribute'] = 'valor(es) para o atributo';
$lang['inappropriate_matching_note'] = 'Nota: Voc&ecirc; vai receber um erro de "inappropriate matching" se voc&ecirc; n&atilde;o<br />' .
'configurar uma regra de <tt>IGUALDADE</tt> no seu servidor LDAP para este atributo.';
$lang['enter_value_to_add'] = 'Entre com o valor que voc&ecirc; gostaria de adicionar:';
$lang['new_required_attrs_note'] = 'Nota: talvez seja solicitado que voc&ecirc; entre com os atributos necess&aacute;rios para esta classe de objetos';
$lang['syntax'] = 'Sintaxe';
$lang['add_new'] = 'Inserir novo';//'Add new';
$lang['value_to'] = 'valor para';//'value to';
//also used in copy_form.php
$lang['distinguished_name'] = 'Nome Distinto';// 'Distinguished Name';
$lang['current_list_of'] = 'Lista atual de';//'Current list of';
$lang['values_for_attribute'] = 'valores para atributo';//'values for attribute';
$lang['inappropriate_matching_note'] = 'Nota: Você vai receber um erro de "inappropriate matching" se você não configurar uma regra de IGUALDADE no seu servidor LDAP para este atributo.'; //'Note: You will get an "inappropriate matching" error if you have not<br /> setup an <tt>EQUALITY</tt> rule on your LDAP server for this attribute.';
$lang['enter_value_to_add'] = 'Entre com o valor que você quer inserir: ';//'Enter the value you would like to add:';
$lang['new_required_attrs_note'] = 'Nota: talvez seja solicitado que você entre com os atributos necessários para esta classe de objetos';//'Note: you may be required to enter new attributes<br />that this objectClass requires.';
$lang['syntax'] = 'Sintaxe';//'Syntax';
//Copy.php
$lang['copy_server_read_only'] = 'Você não pode realizar atualizações enquanto o servidor estiver em modo somente leitura';//"You cannot perform updates while server is in read-only mode';
$lang['copy_dest_dn_blank'] = 'Você deixou o DN de destino vazio.';//"You left the destination DN blank.';
$lang['copy_dest_already_exists'] = 'O objeto de destino (%s) já existe.';//"The destination entry (%s) already exists.';
$lang['copy_dest_container_does_not_exist'] = 'O container de destino (%s) não existe.';//'The destination container (%s) does not exist.';
$lang['copy_source_dest_dn_same'] = 'O DN de origem e destino são o mesmo.';//"The source and destination DN are the same.';
$lang['copy_copying'] = 'Copiando ';//"Copying ';
$lang['copy_recursive_copy_progress'] = 'Progresso da cópia recursiva';//"Recursive copy progress';
$lang['copy_building_snapshot'] = 'Construindo a imagem da árvore a ser copiada...';//"Building snapshot of tree to copy... ';
$lang['copy_successful_like_to'] = 'Copiado com sucesso! Você gostaria de ';//"Copy successful! Would you like to ';
$lang['copy_view_new_entry'] = 'ver o novo objeto';//"view the new entry';
$lang['copy_failed'] = 'Falha ao copiar DN: ';//'Failed to copy DN: ';
//copy.php
$lang['copy_server_read_only'] = 'Voc&ecirc; n&atilde;o pode realizar altera&ccedil;&otilde;es enquanto o servidor estiver em modo somente-leitura';
$lang['copy_dest_dn_blank'] = 'Voc&ecirc; n&atilde;o especificou o DN de destino.';
$lang['copy_dest_already_exists'] = 'O objeto de destino (%s) j&aacute; existe.';
$lang['copy_dest_container_does_not_exist'] = 'O container de destino (%s) n&atilde;o existe.';
$lang['copy_source_dest_dn_same'] = 'O DN de origem e o DN de destino s&atilde;o iguais.';
$lang['copy_copying'] = 'Copiando ';
$lang['copy_recursive_copy_progress'] = 'Progresso da c&oacute;pia recursiva';
$lang['copy_building_snapshot'] = 'Construindo a imagem da &aacute;rvore a ser copiada...';
$lang['copy_successful_like_to'] = 'C&oacute;pia bem-sucedida! Voc&ecirc; gostaria de ';
$lang['copy_view_new_entry'] = 'visualizar o novo objeto';
$lang['copy_failed'] = 'Falha ao copiar o DN: ';
//edit.php
$lang['missing_template_file'] = 'Alerta, o arquivo-modelo n&atilde;o encontrado: ';
$lang['using_default'] = 'Usando padr&atilde;o.';
$lang['missing_template_file'] = 'Aviso: arquivo modelo faltando, ';//'Warning: missing template file, ';
$lang['using_default'] = 'Usando o padrão.';//'Using default.';
$lang['template'] = 'Modelo';//'Template';
$lang['must_choose_template'] = 'Você deve escolher um modelo';//'You must choose a template';
$lang['invalid_template'] = '%s é um modelo inválido';// '%s is an invalid template';
$lang['using_template'] = 'usando o modelo';//'using template';
$lang['go_to_dn'] = 'Ir para %s';//'Go to %s';
//copy_form.php
$lang['copyf_title_copy'] = 'Copiar ';
$lang['copyf_to_new_object'] = 'para um novo objeto';
$lang['copyf_dest_dn'] = 'DN de Destino';
$lang['copyf_dest_dn_tooltip'] = 'O DN completo do novo objeto que ser&aacute; criado a partir da c&oacute;pia da origem';
$lang['copyf_dest_server'] = 'Servidor de Destino';
$lang['copyf_note'] = 'Dica: Copiar objetos entre servidores diferentes s&oacute; funcionar&aacute; se n&atilde;o houverem viola&ccedil;&otilde;es de esquema.';
$lang['copyf_recursive_copy'] = 'Copiar recursivamente todos os objetos-filhos deste objeto tamb&eacutem';
$lang['copyf_title_copy'] = 'Copiar ';//"Copy ';
$lang['copyf_to_new_object'] = 'para um novo objeto';//"to a new object';
$lang['copyf_dest_dn'] = 'DN de destino';//"Destination DN';
$lang['copyf_dest_dn_tooltip'] = 'O DN completo do novo objeto que será criado a partir da cópia da origem';//'The full DN of the new entry to be created when copying the source entry';
$lang['copyf_dest_server'] = 'Servidor de destino';//"Destination Server';
$lang['copyf_note'] = 'Dica: Copiando entre diferentes servidores somente funciona se não houver violação de esquema';//"Note: Copying between different servers only works if there are no schema violations';
$lang['copyf_recursive_copy'] = 'Copia recursivamente todos filhos deste objeto também.';//"Recursively copy all children of this object as well.';
$lang['recursive_copy'] = 'Cópia Recursiva';//'Recursive copy';
$lang['filter'] = 'Filtro';//'Filter';
$lang['filter_tooltip'] = 'Quando executar uma cópia recursiva, copiar somente os objetos que atendem a este filtro';// 'When performing a recursive copy, only copy those entries which match this filter';
//create.php
$lang['create_required_attribute'] = 'Voc&ecirc; especificou um valor em branco para <b>%s</b>, que &eacute; um atributo necess&aacute;rio.';
$lang['create_redirecting'] = 'Redirecionando';
$lang['create_here'] = 'aqui';
$lang['create_could_not_add'] = 'Imposs&iacute;vel adicionar o objeto ao servidor LDAP.';
$lang['create_required_attribute'] = 'Você deixou vazio o valor de um atributo obrigatório (%s).';//"Error, you left the value blank for required attribute ';
$lang['redirecting'] = 'Redirecionando...';//"Redirecting'; moved from create_redirection -> redirection
$lang['here'] = 'aqui';//"here'; renamed vom create_here -> here
$lang['create_could_not_add'] = 'Não foi possível inserir o objeto no servidor LDAP.';//"Could not add the object to the LDAP server.';
//create_form.php
$lang['createf_create_object'] = 'Criar um Objeto';
$lang['createf_choose_temp'] = 'Escolha um modelo';
$lang['createf_select_temp'] = 'Escolha o modelo correspondente ao objeto que deseja criar';
$lang['createf_proceed'] = 'Prosseguir';
$lang['createf_create_object'] = 'Criar Objeto';//"Create Object';
$lang['createf_choose_temp'] = 'Escolher um modelo';//"Choose a template';
$lang['createf_select_temp'] = 'Selecionar um modelo para o processo de criação';//"Select a template for the creation process';
$lang['createf_proceed'] = 'Prosseguir';//"Proceed &gt;&gt;';
$lang['rdn_field_blank'] = 'Você deixou o campo RDN vazio.';//'You left the RDN field blank.';
$lang['container_does_not_exist'] = 'O container que você especificou (%s) não existe. Por favor tente novamente.';// 'The container you specified (%s) does not exist. Please try again.';
$lang['no_objectclasses_selected'] = 'Você não selecionou nenhuma Classe de Objetos para este objeto. Por favor volte e faça isso.';//'You did not select any ObjectClasses for this object. Please go back and do so.';
$lang['hint_structural_oclass'] = 'Dica: Você deve escolher pelo menos uma Classe de Objetos estrutural';//'Hint: You must choose at least one structural objectClass';
//creation_template.php
$lang['ctemplate_on_server'] = 'No servidor';
$lang['ctemplate_no_template'] = 'Nenhum Modelo foi especificado.';
$lang['ctemplate_config_handler'] = 'Seu arquivo de configura&ccedil;&atilde;o determina que o modelo';
$lang['ctemplate_handler_does_not_exist'] = "&eacute; v&aacute;lido. Por&eacute;m este modelo n&atilde;o existe no diret&oacute;rio 'templates/creation'.";
$lang['ctemplate_on_server'] = 'No servidor';//"On server';
$lang['ctemplate_no_template'] = 'Nenhum modelo especificado.';//"No template specified in POST variables.';
$lang['ctemplate_config_handler'] = 'Seu arquivo de configuração determina que o modelo';//"Your config specifies a handler of';
$lang['ctemplate_handler_does_not_exist'] = 'é válido. Porém este modelo não existe no diretório "templates/creation".';//"for this template. But, this handler does not exist in the 'templates/creation' directory.';
$lang['create_step1'] = 'Passo 1 de 2: Nome e Classe(s) de Objetos';//'Step 1 of 2: Name and ObjectClass(es)';
$lang['create_step2'] = 'Passo 2 de 2: Especifica atributos e valores';//'Step 2 of 2: Specify attributes and values';
$lang['relative_distinguished_name'] = 'Nome Distinto Relativo';//'Relative Distinguished Name';
$lang['rdn'] = 'RDN';//'RDN';
$lang['rdn_example'] = 'exemplo: cn=MinhaNovaPessoa';//'(example: cn=MyNewPerson)';
$lang['container'] = 'Container';//'Container';
// search.php
$lang['you_have_not_logged_into_server'] = 'Voc&ecirc; ainda n&atilde;o se conectou ao servidor LDAP selecionado, portanto voc&ecirc; n&atilde;o pode efetuar buscas nele.';
$lang['click_to_go_to_login_form'] = 'Clique aqui para conectar-se ao servidor';
$lang['unrecognized_criteria_option'] = 'Crit&eacute;rio de busca desconhecido: ';
$lang['if_you_want_to_add_criteria'] = 'Se voc&ecirc; quer adicionar o seu pr&oacute;prio crit&eacute;rio de busca &agrave; lista, certifique-se de que voc&ecirc; editou \'search.php\' para contemplar o novo crit&eacute;rio. Saindo.';
$lang['entries_found'] = 'Objetos encontrados: ';
$lang['filter_performed'] = 'Filtro utilizado: ';
$lang['search_duration'] = 'A busca foi realizada pelo phpLDAPadmin em';
$lang['seconds'] = 'segundos';
$lang['you_have_not_logged_into_server'] = 'Você não conectou no servidor selecionado ainda, assim, você não pode realizar buscas nele.';//'You have not logged into the selected server yet, so you cannot perform searches on it.';
$lang['click_to_go_to_login_form'] = 'Clique aqui para conectar-se ao servidor';//'Click here to go to the login form';
$lang['unrecognized_criteria_option'] = 'Critério desconhecido: ';// 'Unrecognized criteria option: ';
$lang['if_you_want_to_add_criteria'] = 'Se você quer inserir seus próprios critérios à lista. Certifique-se de editar o search.php para tratá-los. Saindo.';//'If you want to add your own criteria to the list. Be sure to edit search.php to handle them. Quitting.';
$lang['entries_found'] = 'Objetos encontrados: ';//'Entries found: ';
$lang['filter_performed'] = 'Filtro aplicado: ';//'Filter performed: ';
$lang['search_duration'] = 'Busca realizada pelo phpLDAPadmin em';//'Search performed by phpLDAPadmin in';
$lang['seconds'] = 'segundos';//'seconds';
// search_form_advanced.php
$lang['scope_in_which_to_search'] = 'A abrang&ecirc;ncia de onde &eacute; feita a busca pelos objetos';
$lang['scope_sub'] = 'Sub (toda a sub-arvore)';
$lang['scope_one'] = 'One (um nivel abaixo do base DN)';
$lang['scope_base'] = 'Base (apenas no base DN)';
$lang['standard_ldap_search_filter'] = 'Filtro de busca LDAP padr&atilde;o. Exemplo: (&(sn=Smith)(givenname=David))';
$lang['search_filter'] = 'Filtro de Busca';
$lang['list_of_attrs_to_display_in_results'] = 'A lista de atributos que devem ser mostrados no resultado (separados por v&iacute;rgula)';
$lang['show_attributes'] = 'Exibir Atributos';
$lang['scope_in_which_to_search'] = 'O escopo no qual procurar';//'The scope in which to search';
$lang['scope_sub'] = 'Sub (toda a sub-árvore)';//'Sub (entire subtree)';
$lang['scope_one'] = 'One (um nível de profundidade)';//'One (one level beneath base)';
$lang['scope_base'] = 'Base (apenas a base dn)';//'Base (base dn only)';
$lang['standard_ldap_search_filter'] = 'Filtro de busca LDAP padrão. Exemplo: (&(sn=Silva)(givenname=Pedro))';//'Standard LDAP search filter. Example: (&(sn=Smith)(givenname=David))';
$lang['search_filter'] = 'Filtro de Busca';//'Search Filter';
$lang['list_of_attrs_to_display_in_results'] = 'A lista de atributos que devem ser mostrados nos resultados (separados por vírgula)';//'A list of attributes to display in the results (comma-separated)';
// search_form_simple.php
$lang['search_for_entries_whose'] = 'Procurar por objetos cujo:';
$lang['equals'] = 'e igual a';
$lang['starts with'] = 'comeca com';
$lang['contains'] = 'contem';
$lang['ends with'] = 'termina com';
$lang['sounds like'] = 'e semelhante a';
$lang['starts with'] = 'inicia com';//'starts with';
$lang['ends with'] = 'termina com';//'ends with';
$lang['sounds like'] = 'é semelhante a';//'sounds like';
// server_info.php
$lang['could_not_fetch_server_info'] = 'Incapaz de obter informa&ccedil;&otilde;es LDAP &agrave; partir do servidor';
$lang['server_info_for'] = 'Informa&ccedil;&otilde;es do servidor: ';
$lang['server_reports_following'] = 'O servidor forneceu as seguintes informa&ccedil;&otilde;es sobre si mesmo';
$lang['nothing_to_report'] = 'O servidor n&atilde;o tem nenhuma informa&ccedil;&atilde;o sobre si mesmo para fornecer.';
$lang['could_not_fetch_server_info'] = 'Não foi possível obter informação LDAP do servidor';//'Could not retrieve LDAP information from the server';
$lang['server_info_for'] = 'Informações do servidor: ';//'Server info for: ';
$lang['server_reports_following'] = 'O servidor forneceu a seguinte informação sobre si mesmo';//'Server reports the following information about itself';
$lang['nothing_to_report'] = 'Este servidor não tem nada a informar';//'This server has nothing to report.';
//update.php
$lang['update_array_malformed'] = 'update_array est&aaculte; mal-formado. Isto pode ser um problema/defeito do phpLDAPadmin. Por favor comunique isto.';
$lang['could_not_perform_ldap_modify'] = 'Imposs&iacute;vel realizar opera&ccedil;&atilde;o ldap_modify.';
$lang['update_array_malformed'] = 'update_array danificado. Isto pode ser um bug do phpLDAPadmin. Por favor informe.';//'update_array is malformed. This might be a phpLDAPadmin bug. Please report it.';
$lang['could_not_perform_ldap_modify'] = 'Não foi possível realizar a operação ldap_modify.';//'Could not perform ldap_modify operation.';
// update_confirm.php
$lang['do_you_want_to_make_these_changes'] = 'Voc&ecirc; confirma estas altera&ccedil;&otilde;es?';
$lang['attribute'] = 'Atributo';
$lang['old_value'] = 'Valor Antigo';
$lang['new_value'] = 'Valor Novo';
$lang['attr_deleted'] = '[atributo apagado]';
$lang['commit'] = 'Confirma';
$lang['cancel'] = 'Cancela';
$lang['you_made_no_changes'] = 'Voc&ecirc; n&atilde;o fez nenhuma altera&ccedil;&atilde;o.';
$lang['go_back'] = 'Voltar';
$lang['do_you_want_to_make_these_changes'] = 'Você confirma estas alterações?';//'Do you want to make these changes?';
$lang['attribute'] = 'Atributo';//'Attribute';
$lang['old_value'] = 'Valor Antigo';//'Old Value';
$lang['new_value'] = 'Valor Novo';//'New Value';
$lang['attr_deleted'] = '[atributo excluído]';//'[attribute deleted]';
$lang['commit'] = 'Confirmar';//'Commit';
$lang['cancel'] = 'Cancelar';//'Cancel';
$lang['you_made_no_changes'] = 'Você não fez alterações';//'You made no changes';
$lang['go_back'] = 'Voltar';//'Go back';
// welcome.php
$lang['welcome_note'] = 'Use o menu a esquerda para navegar';
$lang['credits'] = 'Cr&eacute;ditos';
$lang['changelog'] = '&Uacute;ltimas Atualiza&ccedil;&otilde;es';
$lang['documentation'] = 'Documenta&ccedil;&atilde;o';
$lang['welcome_note'] = 'Use o menu à esquerda para navegar';//'Use the menu to the left to navigate';
$lang['credits'] = 'Créditos';//'Credits';
$lang['changelog'] = 'Log de Alterações';//'ChangeLog';
$lang['donate'] = 'Contribuir';//'Donate';
// view_jpeg_photo.php
$lang['unsafe_file_name'] = 'Nome de arquivo inseguro: ';
$lang['no_such_file'] = 'Nome de arquivo n&atilde;o encontrado: ';
$lang['unsafe_file_name'] = 'Nome de arquivo inseguro: ';//'Unsafe file name: ';
$lang['no_such_file'] = 'Arquivo inexistente: ';//'No such file: ';
//function.php
$lang['auto_update_not_setup'] = 'Voc&ecirc; ativou o recurso auto_uid_numbers para <b>%s</b> na sua configura&ccedil;&atilde;o,
mas voc&ecirc; n&atilde;o definiu auto_uid_number_mechanism. Por favor, corrija este problema.';
$lang['uidpool_not_set'] = 'Voc&ecirc; especificou o recurso <tt>auto_uid_number_mechanism</tt> como <tt>uidpool</tt>
na sua configura&ccedil;&atilde;o para o servidor <b>%s</b>, mas voc&ecirc; n&atilde;o definiu
audo_uid_number_uid_pool_dn. Por favor, corrija este problema.';
$lang['uidpool_not_exist'] = 'Aparentemente, o objeto uidPool que voc&ecirc; especificou (<tt>%s</tt>)
n&atilde;o existe.';
$lang['specified_uidpool'] = 'Voc&ecirc; especificou o recurso <tt>auto_uid_number_mechanism</tt> como <tt>search</tt> na sua
configura&ccedil;&atilde;o para o servidor <b>%s</b>, mas voc&ecirc; n&atilde;o definiu
<tt>auto_uid_number_search_base</tt>. Por favor, corrija este problema.';
$lang['auto_uid_invalid_value'] = 'Voc&ecirc; especificou um valor inv&aacute;lido para o recurso auto_uid_number_mechanism (<tt>%s</tt>)
na sua configura&ccedil;&atilde;o. Apenas <tt>uidpool</tt> e <tt>search</tt> s&atilde;o v&aacute;lidos.
Por favor, corrija este problema.';
$lang['error_auth_type_config'] = 'Erro: Seu arquivo de configura&ccedil;&atilde;o possui um erro. Os &uacute;nicos valores permitidos para
auth_type na se&ccedil;&atilde;o $servers s&atilde;o \'config\' e \'form\'. Voc&ecirc; usou \'%s\',
o que n&atilde;o &eacute; permitido. ';
$lang['php_install_not_supports_tls'] = 'Sua instala&ccedil;&atilde;o do PHP n&atilde;o suporta TLS';
$lang['could_not_start_tls'] = 'Imposs&iacute;vel inicializar TLS.<br />Por favor, verifique a configura&ccedil;&atilde;o do seu servidor LDAP.';
$lang['auth_type_not_valid'] = 'Seu arquivo de configura&ccedil;&atilde;o possui um erro. O valor %s para auth_type n&atilde;o &eacute; permitido.';
$lang['ldap_said'] = '<b>O servidor LDAP respondeu</b>: %s<br /><br />';
$lang['ferror_error'] = 'Erro';
$lang['fbrowse'] = 'Procurar';
$lang['delete_photo'] = 'Apagar Imagem';
$lang['install_not_support_blowfish'] = 'Sua instala&ccedil;&atilde;o do PHP n&atilde;o suporta encripta&ccedil;&atilde;o blowfish.';
$lang['install_no_mash'] = 'Sua instala&ccedil;&atilde;o do PHP n&atilde;o possui a fun&ccedil;&atilde;o mhash(). Imposs&iacute;vel realizar encripta&ccedil;&otilde;es SHA.';
$lang['jpeg_contains_errors'] = 'jpegPhoto possui erros<br />';
$lang['ferror_number'] = '<b>N&uacute;mero do erro</b>: %s <small>(%s)</small><br /><br />';
$lang['ferror_discription'] = '<b>Descri&ccedil;&atilde;o</b>: %s <br /><br />';
$lang['ferror_number_short'] = '<b>N&uacute;mero do erro</b>: %s<br /><br />';
$lang['ferror_discription_short'] = '<b>Descri&ccedil;&atilde;o</b>: (nenhuma descri&ccedil;&atilde;o dispon&iacute;vel)<br />';
$lang['ferror_submit_bug'] = 'Isto &eacute; um problema/defeito do phpLDAPadmin? Se sim, por favor <a href=\'%s\'>comunique isto</a>.';
$lang['ferror_unrecognized_num'] = 'N&uacute;mero do erro desconhecido: ';
$lang['ferror_nonfatil_bug'] = '<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' />
<b>Voc&ecirc; encontrou um erro n&atilde;o-fatal do phpLDAPadmin!</b></td></tr><tr><td>Erro:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>Arquivo:</td>
<td><b>%s</b> Linha <b>%s</b>, Requisitante <b>%s</b></td></tr><tr><td>Vers&otilde;es:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b>
</td></tr><tr><td>Servidor Web:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>
Por favor, comunique este problema clicando aqui</a>.</center></td></tr></table></center><br />';
$lang['auto_update_not_setup'] = 'Você habilitou auto_uid_numbers para <b>%s</b> na sua configuração, mas você não especificou auto_uid_number_mechanism. Por favor corrija este problema.';//"You have enabled auto_uid_numbers for <b>%s</b> in your configuration, but you have not specified the auto_uid_number_mechanism. Please correct this problem.';
$lang['uidpool_not_set'] = 'Você especificou o "auto_uid_number_mechanism" como "uidpool" na sua configuração para o servidor <b>%s</b>, mas você não especificou o audo_uid_number_uid_pool_dn. Por favor especifique-o antes de continuar.';//"You specified the <tt>auto_uid_number_mechanism</tt> as <tt>uidpool</tt> in your configuration for server <b>%s</b>, but you did not specify the audo_uid_number_uid_pool_dn. Please specify it before proceeding.';
$lang['uidpool_not_exist'] = 'Parece que o uidPool que você especificou na sua configuração (<tt>%s</tt>) não existe.';//"It appears that the uidPool you specified in your configuration (<tt>%s</tt>) does not exist.';
$lang['specified_uidpool'] = 'Você especificou o "auto_uid_number_mechanism" como "busca" na sua configuração para o servidor <b>%s</b>, mas você não especificou o "auto_uid_number_search_base". Por favor especifique-o antes de continuar.';//"You specified the <tt>auto_uid_number_mechanism</tt> as <tt>search</tt> in your configuration for server <b>%s</b>, but you did not specify the <tt>auto_uid_number_search_base</tt>. Please specify it before proceeding.';
$lang['auto_uid_invalid_credential'] = 'Problema ao conectar ao <b>%s</b> com as suas credenciais auto_uid. Por favor verifique seu arquivo de configuração.';// 'Unable to bind to <b>%s</b> with your with auto_uid credentials. Please check your configuration file.';
$lang['bad_auto_uid_search_base'] = 'Sua configuração do phpLDAPadmin especifica que o auto_uid_search_base é inválido para o servidor %s';//'Your phpLDAPadmin configuration specifies an invalid auto_uid_search_base for server %s';
$lang['auto_uid_invalid_value'] = 'Você especificou um valor inválido para auto_uid_number_mechanism ("%s") na sua configuração. Somente "uidpool" e "busca" são válidos. Por favor corrija este problema.';//"You specified an invalid value for auto_uid_number_mechanism (<tt>%s</tt>) in your configration. Only <tt>uidpool</tt> and <tt>search</tt> are valid. Please correct this problem.';
$lang['ferror_congrats_found_bug'] = 'Parab&eacute;ns! Voc&ecirc; encontrou um problema/defeito no phpLDAPadmin.<br /><br />
<table class=\'bug\'>
<tr><td>Erro:</td><td><b>%s</b></td></tr>
<tr><td>N&iacute;vel:</td><td><b>%s</b></td></tr>
<tr><td>Arquivo:</td><td><b>%s</b></td></tr>
<tr><td>Linha:</td><td><b>%s</b></td></tr>
<tr><td>Requisitante:</td><td><b>%s</b></td></tr>
<tr><td>Vers&atilde;o do PLA:</td><td><b>%s</b></td></tr>
<tr><td>Vers&atilde;o do PHP:</td><td><b>%s</b></td></tr>
<tr><td>PHP SAPI:</td><td><b>%s</b></td></tr>
<tr><td>Servidor Web:</td><td><b>%s</b></td></tr>
</table>
<br />
Por favor comunique esse problema/defeito clicando abaixo!';
$lang['error_auth_type_config'] = 'Erro: Você tem um erro no seu arquivo de configuração. Os dois únicos valores permitidos para auth_type na seção $servers são \'config\' e \'form\'. Você entrou \'%s\', que não é permitido.';//"Error: You have an error in your config file. The only two allowed values for 'auth_type' in the $servers section are 'config' and 'form'. You entered '%s', which is not allowed. ';
$lang['php_install_not_supports_tls'] = 'Sua instalação do PHP não suporta TLS';//"Your PHP install does not support TLS';
$lang['could_not_start_tls'] = 'Impossível iniciar TLS. Por favor verifique a configuração do servidor LDAP.';//"Could not start TLS.<br />Please check your LDAP server configuration.';
$lang['could_not_bind_anon'] = 'Não foi possível conectar ao servidor anonimamente.';//'Could not bind anonymously to server.';
$lang['could_not_bind'] = 'Não foi possível conectar ao servidor LDAP.';//'Could not bind to the LDAP server.';
$lang['anonymous_bind'] = 'Conexão anônima';//'Anonymous Bind';
$lang['bad_user_name_or_password'] = 'Usuário ou senha inválido. Por favor tente novamente.';//'Bad username or password. Please try again.';
$lang['redirecting_click_if_nothing_happens'] = 'Redirecionando... Clique aqui se nada acontecer.';//'Redirecting... Click here if nothing happens.';
$lang['successfully_logged_in_to_server'] = 'Conexão estabelecida com sucesso no sevidor <b>%s</b>';//'Successfully logged into server <b>%s</b>';
$lang['could_not_set_cookie'] = 'Não foi possível criar o cookie.';//'Could not set cookie.';
$lang['ldap_said'] = 'O servidor LDAP respondeu: %s';//"<b>LDAP said</b>: %s<br /><br />';
$lang['ferror_error'] = 'Erro';//"Error';
$lang['fbrowse'] = 'procurar';//"browse';
$lang['delete_photo'] = 'Excluir imagem';//"Delete Photo';
$lang['install_not_support_blowfish'] = 'Sua instalação do PHP não suporta codificação blowfish.';//"Your PHP install does not support blowfish encryption.';
$lang['install_not_support_md5crypt'] = 'Sua instalação do PHP não suporta codificação md5crypt.';//'Your PHP install does not support md5crypt encryption.';
$lang['install_no_mash'] = 'Sua instalação do PHP não tem a função mhash(). Impossível fazer transformações SHA.';// "Your PHP install does not have the mhash() function. Cannot do SHA hashes.';
$lang['jpeg_contains_errors'] = 'Foto jpeg contém erros<br />';//"jpegPhoto contains errors<br />';
$lang['ferror_number'] = 'Erro número: %s (%s)';//"<b>Error number</b>: %s <small>(%s)</small><br /><br />';
$lang['ferror_discription'] ='Descrição: %s <br /><br />';// "<b>Description</b>: %s <br /><br />';
$lang['ferror_number_short'] = 'Erro número: %s<br /><br />';//"<b>Error number</b>: %s<br /><br />';
$lang['ferror_discription_short'] = 'Descrição: (descrição não disponível<br />';//"<b>Description</b>: (no description available)<br />';
$lang['ferror_submit_bug'] = 'Isto é um bug do phpLDAPadmin? Se for, por favor <a href=\'%s\'>informe</a>.';//"Is this a phpLDAPadmin bug? If so, please <a href=\'%s\'>report it</a>.';
$lang['ferror_unrecognized_num'] = 'Número do erro desconhecido: ';//"Unrecognized error number: ';
$lang['ferror_nonfatil_bug'] = '<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' /><b>Você encontrou um bug não-fatal no phpLDAPadmin!</b></td></tr><tr><td>Erro:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>Arquivo:</td><td><b>%s</b> linha <b>%s</b>, solicitante <b>%s</b></td></tr><tr><td>Versão:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b></td></tr><tr><td>Servidor Web:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>Por favor informe este bug clicando aqui</a>.</center></td></tr></table></center><br />';//"<center><table class=\'notice\'><tr><td colspan=\'2\'><center><img src=\'images/warning.png\' height=\'12\' width=\'13\' /><b>You found a non-fatal phpLDAPadmin bug!</b></td></tr><tr><td>Error:</td><td><b>%s</b> (<b>%s</b>)</td></tr><tr><td>File:</td><td><b>%s</b> line <b>%s</b>, caller <b>%s</b></td></tr><tr><td>Versions:</td><td>PLA: <b>%s</b>, PHP: <b>%s</b>, SAPI: <b>%s</b></td></tr><tr><td>Web server:</td><td><b>%s</b></td></tr><tr><td colspan=\'2\'><center><a target=\'new\' href=\'%s\'>Please report this bug by clicking here</a>.</center></td></tr></table></center><br />';
$lang['ferror_congrats_found_bug'] = 'Parabéns! Você encontrou um bug no phpLDAPadmin.<br /><br /><table class=\'bug\'><tr><td>Erro:</td><td><b>%s</b></td></tr><tr><td>Nível:</td><td><b>%s</b></td></tr><tr><td>Arquivo:</td><td><b>%s</b></td></tr><tr><td>Linha:</td><td><b>%s</b></td></tr><tr><td>Caller:</td><td><b>%s</b></td></tr><tr><td>PLA Vers&atile;o:</td><td><b>%s</b></td></tr><tr><td>PHP Vers&atile;o:</td><td><b>%s</b></td></tr><tr><td>PHP SAPI:</td><td><b>%s</b></td></tr><tr><td>Servidor Web:</td><td><b>%s</b></td></tr></table><br />Por favor informe o bug clicando abaixo!';//"Congratulations! You found a bug in phpLDAPadmin.<br /><br /><table class=\'bug\'><tr><td>Error:</td><td><b>%s</b></td></tr><tr><td>Level:</td><td><b>%s</b></td></tr><tr><td>File:</td><td><b>%s</b></td></tr><tr><td>Line:</td><td><b>%s</b></td></tr><tr><td>Caller:</td><td><b>%s</b></td></tr><tr><td>PLA Version:</td><td><b>%s</b></td></tr><tr><td>PHP Version:</td><td><b>%s</b></td></tr><tr><td>PHP SAPI:</td><td><b>%s</b></td></tr><tr><td>Web server:</td><td><b>%s</b></td></tr></table><br /> Please report this bug by clicking below!';
//ldif_import_form
$lang['import_ldif_file_title'] = 'Importar Arquivo LDIF';
$lang['select_ldif_file'] = 'Selecione um arquivo LDIF:';
$lang['select_ldif_file_proceed'] = 'Prosseguir &gt;&gt;';
$lang['import_ldif_file_title'] = 'Importar arquivo LDIF';//'Import LDIF File';
$lang['select_ldif_file'] = 'Selecionar um arquivo LDIF';//'Select an LDIF file:';
$lang['select_ldif_file_proceed'] = 'Continuar &gt;&gt;';//'Proceed &gt;&gt;';
$lang['dont_stop_on_errors'] = 'Não parar quando der erro';//'Don\'t stop on errors';
//ldif_import
$lang['add_action'] = 'Adicionando...';
$lang['delete_action'] = 'Apagando...';
$lang['rename_action'] = 'Renomeando...';
$lang['modify_action'] = 'Modificando...';
$lang['add_action'] = 'Inserindo...';//'Adding...';
$lang['delete_action'] = 'Deletando...';//'Deleting...';
$lang['rename_action'] = 'Renomeando...';//'Renaming...';
$lang['modify_action'] = 'Alterando...';//'Modifying...';
$lang['warning_no_ldif_version_found'] = 'Nenhuma versão encontrada. Assumindo 1.';//'No version found. Assuming 1.';
$lang['valid_dn_line_required'] = 'Uma linha dn válida é obrigatória.';//'A valid dn line is required.';
$lang['missing_uploaded_file'] = 'Arquivo carregado perdido.';//'Missing uploaded file.';
$lang['no_ldif_file_specified.'] = 'Nenhum arquivo LDIF especificado. Por favor tente novamente.';//'No LDIF file specified. Please try again.';
$lang['ldif_file_empty'] = 'Arquivo LDIF carregado está vazio.';// 'Uploaded LDIF file is empty.';
$lang['empty'] = 'vazio';//'empty';
$lang['file'] = 'Arquivo';//'File';
$lang['number_bytes'] = '%s bytes';//'%s bytes';
$lang['failed'] = 'Falhou';//'failed';
$lang['ldif_parse_error'] = 'Erro Analisando Arquivo LDIF';//'LDIF Parse Error';
$lang['ldif_could_not_add_object'] = 'Não foi possível inserir objeto:';//'Could not add object:';
$lang['ldif_could_not_rename_object'] = 'Não foi possível renomear objeto:';//'Could not rename object:';
$lang['ldif_could_not_delete_object'] = 'Não foi possível excluir objeto:';//'Could not delete object:';
$lang['ldif_could_not_modify_object'] = 'Não foi possível alterar objeto:';//'Could not modify object:';
$lang['ldif_line_number'] = 'Linha Número:';//'Line Number:';
$lang['ldif_line'] = 'Linha:';//'Line:';
//delete_form
$lang['sure_permanent_delete_object']='Você tem certeza que deseja excluir este objeto permanentemente?';//'Are you sure you want to permanently delete this object?';
$lang['permanently_delete_children']='Exluir permanentemente todos os objetos filho também?';//'Permanently delete all children also?';
$lang['list_of_entries_to_be_deleted'] = 'Lista de objetos a serem deletados: ';//'List of entries to be deleted:';
$lang['dn'] = 'DN'; //'DN';
// Exports
$lang['export_format'] = 'Formato para exportar';// 'Export format';
$lang['line_ends'] = 'Fins de linha'; //'Line ends';
$lang['must_choose_export_format'] = 'Você deve especificar um formato para exportar';//'You must choose an export format.';
$lang['invalid_export_format'] = 'Formato para exportação inválido';//'Invalid export format';
$lang['no_exporter_found'] = 'Nenhum exportador de arquivos encontrado.';//'No available exporter found.';
$lang['error_performing_search'] = 'Erro encontrado enquanto fazia a pesquisa.';//'Encountered an error while performing search.';
$lang['showing_results_x_through_y'] = 'Mostrando resultados %s através %s.';//'Showing results %s through %s.';
$lang['searching'] = 'Pesquisando...';//'Searching...';
$lang['size_limit_exceeded'] = 'Aviso, limite da pesquisa excedido.';//'Notice, search size limit exceeded.';
$lang['entry'] = 'Objeto';//'Entry';
$lang['ldif_export_for_dn'] = 'Exportação LDIF para: %s'; //'LDIF Export for: %s';
$lang['generated_on_date'] = 'Gerado pelo phpLDAPadmin no %s';//'Generated by phpLDAPadmin on %s';
$lang['total_entries'] = 'Total de objetos';//'Total Entries';
$lang['dsml_export_for_dn'] = 'Exportação DSLM para: %s';//'DSLM Export for: %s';
// logins
$lang['could_not_find_user'] = 'Não foi possível encontrar o usuário "%s"';//'Could not find a user "%s"';
$lang['password_blank'] = 'Você deixou a senha vazia.';//'You left the password blank.';
$lang['login_cancelled'] = 'Login cancelado.';//'Login cancelled.';
$lang['no_one_logged_in'] = 'Ninguém está conectado neste servidor.';//'No one is logged in to that server.';
$lang['could_not_logout'] = 'Não foi possível desconectar.';//'Could not logout.';
$lang['unknown_auth_type'] = 'auth_type desconhecido: %s';//'Unknown auth_type: %s';
$lang['logged_out_successfully'] = 'Desconectado com sucesso do servidor <b>%s</b>';//'Logged out successfully from server <b>%s</b>';
$lang['authenticate_to_server'] = 'Autenticar no servidor %s';//'Authenticate to server %s';
$lang['warning_this_web_connection_is_unencrypted'] = 'Aviso: Esta conexão NÃO é criptografada.';//'Warning: This web connection is unencrypted.';
$lang['not_using_https'] = 'Você não está usando \'https\'. O navegador internet vai transmitir as informações de login sem criptografar.';// 'You are not use \'https\'. Web browser will transmit login information in clear text.';
$lang['login_dn'] = 'Login DN';//'Login DN';
$lang['user_name'] = 'Nome de usuário';//'User name';
$lang['password'] = 'Senha';//'Password';
$lang['authenticate'] = 'Autenticar';//'Authenticate';
// Entry browser
$lang['entry_chooser_title'] = 'Selecionador de objeto';//'Entry Chooser';
// Index page
$lang['need_to_configure'] = 'Você deve configurar o phpLDAPadmin. Faça isso editando o arquivo \'config.php\'. Um arquivo de exemplo é fornecido em \'config.php.example\'';// ';//'You need to configure phpLDAPadmin. Edit the file \'config.php\' to do so. An example config file is provided in \'config.php.example\'';
// Mass deletes
$lang['no_deletes_in_read_only'] = 'Exclusões não permitidas no modo somente leitura.';//'Deletes not allowed in read only mode.';
$lang['error_calling_mass_delete'] = 'Erro chamando mass_delete.php. Faltando mass_delete nas variáveis POST.';//'Error calling mass_delete.php. Missing mass_delete in POST vars.';
$lang['mass_delete_not_array'] = 'a variável POST mass_delete não é um conjunto';//'mass_delete POST var is not an array.';
$lang['mass_delete_not_enabled'] = 'Exclusão em massa não habilitada. Por favor habilite-a no arquivo config.php antes de continuar';//'Mass deletion is not enabled. Please enable it in config.php before proceeding.';
$lang['mass_deleting'] = 'Exclusão em massa';//'Mass Deleting';
$lang['mass_delete_progress'] = 'Progresso da exclusão no servidor "%s"';//'Deletion progress on server "%s"';
$lang['malformed_mass_delete_array'] = 'Conjunto mass_delete danificado.';//'Malformed mass_delete array.';
$lang['no_entries_to_delete'] = 'Você não selecionou nenhum objeto para excluir';//'You did not select any entries to delete.';
$lang['deleting_dn'] = 'Excluindo %s';//'Deleting %s';
$lang['total_entries_failed'] = '%s de %s objetos falharam na exclusão.';//'%s of %s entries failed to be deleted.';
$lang['all_entries_successful'] = 'Todos objetos foram excluídos com sucesso.';//'All entries deleted successfully.';
$lang['confirm_mass_delete'] = 'Confirme exclusão em massa de %s objetos no servidor %s';//'Confirm mass delete of %s entries on server %s';
$lang['yes_delete'] = 'Sim, excluir!';//'Yes, delete!';
// Renaming entries
$lang['non_leaf_nodes_cannot_be_renamed'] = 'Você não pode renomear um objeto que tem objetos filhos (isto é, a operação de renomear não é permitida em objetos não-folha)';// 'You cannot rename an entry which has children entries (eg, the rename operation is not allowed on non-leaf entries)';
$lang['no_rdn_change'] = 'Você não alterou o RDN';//'You did not change the RDN';
$lang['invalid_rdn'] = 'Valor RDN inválido';//'Invalid RDN value';
$lang['could_not_rename'] = 'Não foi possível renomear o objeto';//'Could not rename the entry';
$lang['failed'] = 'falhou';
$lang['ldif_parse_error'] = 'Erro Analisando Arquivo LDIF';
$lang['ldif_could_not_add_object'] = 'Imposs&iacute;vel adicionar objeto:';
$lang['ldif_could_not_rename_object'] = 'Imposs&iacute;vel renomear objeto:';
$lang['ldif_could_not_delete_object'] = 'Imposs&iacute;vel apagar objeto:';
$lang['ldif_could_not_modify_object'] = 'Imposs&iacute;vel modificar objeto:';
$lang['ldif_line_number'] = 'N&uacute;mero da Linha:';
$lang['ldif_line'] = 'Linha:';
?>

View File

@ -1,5 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/search.php,v 1.38 2004/04/12 01:44:08 uugdave Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/search.php,v 1.39 2004/05/08 13:26:27 uugdave Exp $
/*
@ -191,7 +191,11 @@ if( isset( $_GET['search'] ) )
// grab the size limit set in config.php
$size_limit = isset ( $search_result_size_limit ) && is_numeric( $search_result_size_limit ) ?
$search_result_size_limit :
0;
50;
// Sanity check
if( $size_limit < 1 )
$size_limit = 1;
$page = isset( $_GET['page'] ) ? $_GET['page'] : 0;
$time_start = utime();

View File

@ -1,5 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/server_info.php,v 1.10 2004/05/03 13:04:42 uugdave Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/server_info.php,v 1.11 2004/05/06 04:01:40 uugdave Exp $
/*
@ -48,21 +48,23 @@ $server_name = $servers[$server_id]['name'];
$ds = pla_ldap_connect( $server_id ) or pla_error( $lang['could_not_connect'] );
// Fetch basic RootDSE attributes using the + and *.
$r = ldap_read( $ds, '', 'objectClass=*', array( '+', '*' ) );
$r = @ldap_read( $ds, '', 'objectClass=*', array( '+', '*' ) );
if( ! $r )
pla_error( $lang['could_not_fetch_server_info'], ldap_error( $ds ), ldap_errno( $ds ) );
$entry = ldap_first_entry( $ds, $r );
$attrs = ldap_get_attributes( $ds, $entry );
$count = ldap_count_entries( $ds, $r );
$entry = @ldap_first_entry( $ds, $r );
if( ! $entry )
pla_error( $lang['could_not_fetch_server_info'], ldap_error( $ds ), ldap_errno( $ds ) );
$attrs = @ldap_get_attributes( $ds, $entry );
$count = @ldap_count_entries( $ds, $r );
// After fetching the "basic" attributes from the RootDSE, try fetching the
// more advanced ones (from ths list). Add them to the list of attrs to display
// if they weren't already fetched. (this was added as a work-around for OpenLDAP
// on RHEL 3.
$r2 = ldap_read( $ds, '', 'objectClass=*', $root_dse_attributes );
$r2 = @ldap_read( $ds, '', 'objectClass=*', $root_dse_attributes );
if( $r2 ) {
$entry2 = ldap_first_entry( $ds, $r );
$attrs2 = ldap_get_attributes( $ds, $entry );
$entry2 = @ldap_first_entry( $ds, $r );
$attrs2 = @ldap_get_attributes( $ds, $entry );
for( $i=0; $i<$attrs2['count']; $i++ ) {
$attr = $attrs2[$i];
if( ! isset( $attrs[ $attr ] ) ) {

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/custom.php,v 1.28 2004/04/13 03:50:49 uugdave Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/custom.php,v 1.29 2004/05/05 12:47:54 uugdave Exp $
// Common to all templates
$rdn = isset( $_POST['rdn'] ) ? $_POST['rdn'] : null;

View File

@ -1,9 +1,7 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_address_template.php,v 1.8 2004/03/19 20:13:09 i18phpldapadmin Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_address_template.php,v 1.9 2004/05/05 12:47:54 uugdave Exp $
require 'common.php';
// customize this to your needs
$default_container = "ou=Addresses";

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_dns_entry.php,v 1.7 2004/03/19 20:13:09 i18phpldapadmin Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_dns_entry.php,v 1.8 2004/05/05 12:47:54 uugdave Exp $
// Common to all templates
$container = $_POST['container'];

View File

@ -1,7 +1,5 @@
<?php
require 'common.php';
// customize this to your needs
$default_container = "ou=Addresses";

View File

@ -1,9 +1,7 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_nt_machine.php,v 1.10 2004/03/19 20:13:09 i18phpldapadmin Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_nt_machine.php,v 1.11 2004/05/05 12:47:54 uugdave Exp $
require 'common.php';
// Common to all templates
$container = $_POST['container'];
$server_id = $_POST['server_id'];

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_ou_template.php,v 1.9 2004/03/19 20:13:09 i18phpldapadmin Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_ou_template.php,v 1.10 2004/05/05 12:47:54 uugdave Exp $
// Common to all templates
$container = $_POST['container'];

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_posix_group_template.php,v 1.6 2004/03/19 20:13:09 i18phpldapadmin Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_posix_group_template.php,v 1.7 2004/05/05 12:47:54 uugdave Exp $
// Common to all templates
$container = $_POST['container'];

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_security_object_template.php,v 1.2 2004/03/19 20:13:09 i18phpldapadmin Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_security_object_template.php,v 1.3 2004/05/05 12:47:54 uugdave Exp $
// customize this to your needs
$default_container = "ou=server";

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smb3_nt_machine.php,v 1.3 2004/03/19 20:13:09 i18phpldapadmin Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smb3_nt_machine.php,v 1.4 2004/05/05 12:47:54 uugdave Exp $
// Common to all templates
$container = $_POST['container'];

View File

@ -1,7 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smb3_user_template.php,v 1.15 2004/04/29 13:17:02 xrenard Exp $
require realpath( 'common.php' );
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smb3_user_template.php,v 1.20 2004/05/08 11:41:04 xrenard Exp $
$samba3_domains = get_samba3_domains();
@ -54,10 +52,17 @@ function autoFillHomeDir( form ){
function autoFillSambaRID( form ){
var sambaRID;
var uidNumber;
// TO DO:need to check if uidNumber is an integer
//check if the UID Number is a number
if(!isNaN(form.uid_number.value)){
uidNumber = form.uid_number.value;
sambaRID = (2*uidNumber)+1000;
form.samba3_user_rid.value = sambaRID;
}
// otherwise (re)set the samba rid value to an empty string
else{
form.samba3_user_rid.value = "";
}
}
function autoFillSambaGroupRID( form ){
var gidNumber;
@ -94,7 +99,10 @@ function autoFillSambaGroupRID( form ){
<tr>
<td></td>
<td class="heading">UID Number:</td>
<td><input type="text" name="uid_number" value="" onChange="autoFillSambaRID(this.form)" /></td>
<?php $next_uid_number = get_next_uid_number( $server_id ); ?>
<td><input type="text" name="uid_number" value="<?php echo $next_uid_number; ?>" onChange="autoFillSambaRID(this.form)" />
<?php if( false !== $next_uid_number ) echo "<small>(automatically determined)</small>"; ?>
</td>
</tr>
<tr>
<td></td>
@ -102,7 +110,7 @@ function autoFillSambaGroupRID( form ){
<td><select name="samba3_domain_sid">
<?php foreach($samba3_domains as $samba3_domain) ?>
<option value="<?php echo $samba3_domain['sid'] ?>"><?php echo $samba3_domain['sid'] ?></option>
</select> - <input type="text" name="samba3_user_rid" id="samba3_user_rid" value="" size="7"/></td>
</select> - <input type="text" name="samba3_user_rid" id="samba3_user_rid" value="" size="7" onfocus="autoFillSambaRID(this.form)"/></td>
</tr>
<tr class="spacer"><td colspan="3"></tr>
<tr>
@ -225,7 +233,7 @@ function autoFillSambaGroupRID( form ){
<tr>
<td></td>
<?php $posix_groups_found = ( is_array( $posix_groups )?1:0 );?>
<td class="heading"><?echo $posix_groups_found?"Unix Group":"GID Number"?>:</td>
<td class="heading"><?php echo $posix_groups_found?"Unix Group":"GID Number"?>:</td>
<td>
<?php if( $posix_groups_found ){?>
<select name="gid_number" onchange="autoFillSambaGroupRID( this.form )">
@ -250,7 +258,7 @@ function autoFillSambaGroupRID( form ){
<select name="builtin_sid">
<optgroup label="Local Group">
<?php foreach( $built_in_local_groups as $sid => $name ){ ?>
<option value="<?php echo $sid; ?>"><?php echo $name; ?> (<?php echo $sid; ?>)</option> <? } ?>
<option value="<?php echo $sid; ?>"><?php echo $name; ?> (<?php echo $sid; ?>)</option> <?php } ?>
</optgroup>
<optgroup label="Global Groups">
<?php foreach($samba3_domains as $samba3_domain) { ?>

View File

@ -1,7 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smbgroup_template.php,v 1.9 2004/04/12 22:40:55 xrenard Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smbgroup_template.php,v 1.11 2004/05/08 12:27:17 xrenard Exp $
// Common to all templates
$rdn = isset( $_POST['rdn'] ) ? $_POST['rdn'] : null;
@ -96,7 +94,7 @@ function autoFillSambaGroupRID( form ){
<select name="builtin_sid">
<optgroup label="Local Group">
<?php foreach( $built_in_local_groups as $sid => $name ){ ?>
<option value="<?php echo $sid; ?>"><?php echo $name; ?> (<?php echo $sid; ?>)</option> <? } ?>
<option value="<?php echo $sid; ?>"><?php echo $name; ?> (<?php echo $sid; ?>)</option> <?php } ?>
</optgroup>
<optgroup label="Global Groups">
<?php foreach($samba3_domains as $samba3_domain) { ?>

View File

@ -1,7 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smbuser_template.php,v 1.14 2004/03/19 20:13:09 i18phpldapadmin Exp $
require realpath( 'common.php' );
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_smbuser_template.php,v 1.15 2004/05/05 12:47:54 uugdave Exp $
$default_container = "ou=Users";
$default_home = "/home";

View File

@ -1,8 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_user_template.php,v 1.13 2004/03/19 20:13:09 i18phpldapadmin Exp $
require 'common.php';
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/creation/new_user_template.php,v 1.17 2004/05/08 13:31:04 uugdave Exp $
/*
* TODO Add a check: If the server is configured to use auto_uid_numbers AND the
@ -188,7 +185,7 @@ function autoFillHomeDir( form )
<tr>
<td></td>
<td class="heading">UID Number:</td>
<?php $next_uid_number = get_next_uid_number( $server_id ); ?>
<?php $next_uid_number = ( auto_uid_numbers_enabled( $server_id ) ? get_next_uid_number( $server_id ) : false ); ?>
<td><input type="text" name="uid_number" value="<?php echo $next_uid_number ?>" />
<?php if( false !== $next_uid_number ) echo "<small>(automatically determined)</small>"; ?>
</td>
@ -196,7 +193,7 @@ function autoFillHomeDir( form )
<tr>
<td></td>
<?php $posix_groups_found = ( is_array( $posix_groups )?1:0 );?>
<td class="heading"><?echo $posix_groups_found?"Group":"GID Number"?>:</td>
<td class="heading"><?php echo $posix_groups_found?"Group":"GID Number"?>:</td>
<td>
<?php if( $posix_groups_found ){?>
<select name="gid_number">
@ -231,6 +228,8 @@ function autoFillHomeDir( form )
$home_dir = trim( $_POST['home_dir'] );
/* Critical assertions */
if( ! trim( $user_name ) )
pla_error( "You left the user name field blank" );
$password1 == $password2 or
pla_error( "Your passwords don't match. Please go back and try again." );
0 != strlen( $uid_number ) or
@ -245,6 +244,7 @@ function autoFillHomeDir( form )
$password = password_hash( $password1, $encryption );
?>
<center><h3>Confirm account creation:</h3></center>

View File

@ -1,5 +1,5 @@
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/template_config.php,v 1.16 2004/05/01 14:03:56 uugdave Exp $
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/template_config.php,v 1.17 2004/05/08 11:14:55 xrenard Exp $
/**
* template_config.php
@ -86,11 +86,6 @@ $templates[] =
array( 'desc' => 'Simple Security Object',
'icon' => 'images/user.png',
'handler' => 'new_security_object_template.php' );
$templates[] =
array( 'desc' => 'Mozilla User',
'icon' => 'images/user.png',
'handler' => 'mozilla_template.php' );
$templates[] =
array( 'desc' => 'Custom',