File: D:/web/itpartnership.net (cms)/admin/lang/ext/pt_PT/admin.inc.php
<?php
$lang['admin']['help_function_browser_lang'] = '<h3>What does this do?</h3>
<p>This plugin detects and outputs the language that the users browser accepts, and cross references it with a list of allowed languages to determine a language value for the session.</p>
<h3>How do I use it?</h3>
<p>Insert the tag early into your page template <em>(it can go above the <head> section if you want)</em> and provide it the name of the default language, and the accepted languages (only two character language names are accepted), then do something with the result. i.e:</p>
<pre><code>{browser_lang accept=de,fr,en,es default=en assign=tmp}{session_put var=lang val=$tmp}</code></pre>
<p><em>({session_put} is a plugin provided by the CGSimpleSmarty module)</em></p>
<h3>What Parameters does it Take?</h3>
<ul>
<li><strong>accepted <em>(required)</em></strong><br/> - A comma separated list of two character language names that are accepted.</li>
<li>default<br/>- <em>(optional)</em> A default language to output if no accepted language was supported by the browser. en is used if no other value is specified.</li>
<li>assign<br/>- <em>(optional)</em> The name of the smarty variable to assign the results to. If not specified the results of this function are returned.</li>
</ul>';
$lang['admin']['info_target'] = 'This option may used by the Menu Manager to indicate when and how new frames or windows should be opened. Some menu manager templates may ignore this option.';
$lang['admin']['close'] = 'Fechar';
$lang['admin']['revert'] = 'Reverter as alterações';
$lang['admin']['autoclearcache2'] = 'Remove cache files that are older than the specified number of days';
$lang['admin']['root'] = 'Root';
$lang['admin']['info_content_autocreate_flaturls'] = 'If enabled, all urls will be created as a copy of the page alias (but not synchronized to the page alias)';
$lang['admin']['content_autocreate_flaturls'] = 'Automatically created URL's are flat';
$lang['admin']['content_autocreate_urls'] = 'Automatically create page URL's';
$lang['admin']['content_mandatory_urls'] = 'Page URLS are required';
$lang['admin']['content_imagefield_path'] = 'Path for image field';
$lang['admin']['info_content_imagefield_path'] = 'Relative to the image uploads path, specify a directory name that contains the paths containing files for the image field';
$lang['admin']['content_thumbnailfield_path'] = 'Path for thumbnail field';
$lang['admin']['info_content_thumbnailfield_path'] = 'Relative to the image uploads path, specify a directory name that contains the paths containing files for the image field. Usually this will be the same as the path above.';
$lang['admin']['contentimage_path'] = 'Path for {content_image} tag';
$lang['admin']['info_contentimage_path'] = 'Relative to the uploads path, specify a directory name that contains the paths containing files for the {content_image} tag. This value is used as a default for the dir parameter';
$lang['admin']['editcontent_settings'] = 'Content Editing Settings';
$lang['admin']['help_page_url'] = 'Specify an alternate URL (relative to the root of your website) that can be used to uniquely identify this page. i.e: path/to/mypage. The page url is only useful when pretty urls are enabled.';
$lang['admin']['help_page_alias'] = 'The alias is used as an alternate to the page id to uniquely identify a page. It must be unique across all pages. The alias is also used to assist in building the URL for the page';
$lang['admin']['help_page_searchable'] = 'This setting indicates whether the content of this page should be indexed by the Search module';
$lang['admin']['help_page_cachable'] = 'Performance can be increased by setting as many pages as possible to cachable. However this cannot be used for pages where content may change on a per request basis';
$lang['admin']['sitedownexcludeadmins'] = 'Exclude users logged in to the CMSMS admin console';
$lang['admin']['your_ipaddress'] = 'Your IP Address is';
$lang['admin']['use_wysiwyg'] = 'Use WYSIWYG';
$lang['admin']['contenttype_redirlink'] = 'Redirecting Link';
$lang['admin']['yes'] = 'Yes';
$lang['admin']['no'] = 'No';
$lang['admin']['listcontent_showalias'] = 'Display the "Alias" column';
$lang['admin']['listcontent_showurl'] = 'Display the "URL" column';
$lang['admin']['listcontent_showtitle'] = 'Display the Page Title or Menu Text';
$lang['admin']['listcontent_settings'] = 'Content List Settings';
$lang['admin']['lctitle_page'] = 'The title of existing content items';
$lang['admin']['lctitle_alias'] = 'The alias of existing content items. Some content items do not have aliases';
$lang['admin']['lctitle_url'] = 'The URL suffix for the content item. If set';
$lang['admin']['lctitle_template'] = 'The selected template for the content item. Some content items do not have templates';
$lang['admin']['lctitle_owner'] = 'The owner of the content item';
$lang['admin']['lctitle_active'] = 'Indicates whether the content item is active. Inactive items cannot be displayed.';
$lang['admin']['lctitle_default'] = 'Specify the content item that is accessed when the root url is requested. Only one item can be default';
$lang['admin']['lctitle_move'] = 'Allows arranging your content hierarchy';
$lang['admin']['lctitle_multiselect'] = 'Select All/Select None';
$lang['admin']['invalid_url'] = 'The page URL specified is invalid. It should contain only alphanumeric characters, or - or /. It is also possible that the URL specified is already in use.';
$lang['admin']['page_url'] = 'Page URL';
$lang['admin']['runuserplugin'] = 'Run User Plugin';
$lang['admin']['output'] = 'Output';
$lang['admin']['run'] = 'Run';
$lang['admin']['run_udt'] = 'Run this User Defined Tag';
$lang['admin']['stylesheetcopied'] = 'Stylesheet Copiado';
$lang['admin']['templatecopied'] = 'Template Copiado';
$lang['admin']['ecommerce_desc'] = 'Módulos para fornecer as capacidades de E-commerce';
$lang['admin']['ecommerce'] = 'E-Commerce ';
$lang['admin']['help_function_content_module'] = '<h3>What does this do?</h3>
<p>This content block type allows interfacing with different modules to create different content block types.</p>
<p>Some modules can define content block types for use in module templates. i.e: The FrontEndUsers module may define a group list content block type. It will then indicate how you can use the content_module tag to utilize that block type within your templates.</p>
<p><strong>Note:</strong> This block type must be used only with compatible modules. You should not use this in any way except for as guided by addon modules.</p>';
$lang['admin']['error_parsing_content_blocks'] = 'Ocorreu um erro ao analisar blocos de conteúdo (talvez os nomes duplicados no bloco?)';
$lang['admin']['error_no_default_content_block'] = 'Nenhum bloco de conteúdo padrão foi detectado neste template. Certifique-se de que tem um conteúdo (tag) na página do template.';
$lang['admin']['help_function_cms_stylesheet'] = '<h3>What does this do?</h3>
<p>A replacement for the {stylesheet} tag, this tag provides caching of css files by generating static files in the tmp/cache directory, and smarty processing of the individual stylesheets.</p>
<p>This plugin retrieves stylesheet information from the system. By default, it grabs all of the stylesheets attached to the current template in the order specified by the designer, and generates stylesheet tags.</p>
<p>Generated stylesheets are uniquely named according to the last modification date in the database, and are only generated if the stylesheet has changed.</p>
<p>This tag is the replacement for the {stylesheet} tag.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page's head section like: <code>{cms_stylesheet}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>name - Instead of getting all stylesheets for the given page, it will only get one specifically named one, whether it's attached to the current template or not.</li>
<li><em>(optional)</em>templateid - If templateid is defined, this will return stylesheets associated with that template instead of the current one.</li>
<li><em>(optional)</em>media - When used in conjunction with the name parameter this parameter will allow you to override the media type for that stylesheet. When used in conjunction with the templateid parameter, the media parameter will only output stylesheet tags for those stylesheets that arer marked as compatible with the specified media type.</li>
</ul>
<h3>Smarty Processing</h3>
<p>When generating css files this system passes the stylesheets retrieved from the database through smarty. The smarty delimiters have been changed from the CMSMS standard { and } to [[ and ]] respectively to ease transition in stylesheets. This allows creating smarty variables i.e.: [[assign var='red' value='#900']] at the top of the stylesheet, and then using these variables later in the stylesheet, i.e:</p>
<pre>
<code>
h3 .error { color: [[$red]]; }<br/>
</code>
</pre>
<p>Because the cached files are generated in the tmp/cache directory of the CMSMS installation, the CSS relative working directory is not the root of the website. Therefore any images, or other tags that require a url should use the [[root_url]] tag to force it to be an absolute url. i.e:</p>
<pre>
<code>
h3 .error { background: url([[root_url]]/uploads/images/error_background.gif); }<br/>
</code>
</pre>
<p><strong>Note:</strong> Due to the caching nature of the plugin, smarty variables should be placed at the top of EACH stylesheet that is attached to a template.</p>';
$lang['admin']['pseudocron_granularity'] = 'Pseudocron Granularity ';
$lang['admin']['info_pseudocron_granularity'] = 'Essa configuração indica quantas vezes o sistema irá tentar lidar com tarefas regulares';
$lang['admin']['cron_request'] = 'Cada pedido';
$lang['admin']['cron_15m'] = '15 Minutos';
$lang['admin']['cron_30m'] = '30 Minutos';
$lang['admin']['cron_60m'] = '1 Hora';
$lang['admin']['cron_120m'] = '2 Horas';
$lang['admin']['cron_3h'] = '3 Horas';
$lang['admin']['cron_6h'] = '6 Horas';
$lang['admin']['cron_12h'] = '12 Horas';
$lang['admin']['cron_24h'] = '24 Horas';
$lang['admin']['clearcache_taskdescription'] = 'Executado diariamente, essa tarefa irá limpar o cache que são mais antigos do que os que estão presentes nas preferências globais';
$lang['admin']['clearcache_taskname'] = 'Limpar os ficheiros que estão em cache';
$lang['admin']['info_autoclearcache'] = 'Especifique um valor inteiro. Digite 0 para desactivar a limpeza do cache automático';
$lang['admin']['autoclearcache'] = 'Automáticamente limpar o cache a cada N dias';
$lang['admin']['listtemplates_pagelimit'] = 'Número de linhas por página, quando visualizaram os templates';
$lang['admin']['liststylesheets_pagelimit'] = 'Número de linhas por página, quando visualizaram os stylesheets (css)';
$lang['admin']['listgcbs_pagelimit'] = 'Número de linhas por página, quando visualizaram os Blocos de conteúdo global';
$lang['admin']['insecure'] = 'Inseguro (HTTP)';
$lang['admin']['secure'] = 'Seguro (HTTPS)';
$lang['admin']['secure_page'] = 'Usar HTTPS neste página';
$lang['admin']['thumbnail_width'] = 'Comprimento das miniaturas';
$lang['admin']['thumbnail_height'] = 'Largura das miniaturas';
$lang['admin']['E_STRICT'] = 'E_STRICT não está habilitado no "error_reporting"';
$lang['admin']['test_estrict_failed'] = 'E_STRICT está habilitado no seu "error reporting"';
$lang['admin']['info_estrict_failed'] = 'Algumas bibliotecas que o CMSMS utiliza não funcionam bem com E_STRICT. Desactive antes de continuar';
$lang['admin']['E_DEPRECATED'] = 'E_DEPRECATED não está habilitado no "error_reporting"';
$lang['admin']['test_edeprecated_failed'] = 'E_DEPRECATED está habilitado';
$lang['admin']['info_edeprecated_failed'] = 'Se E_DEPRECATED estiver habilitado no seu "error reporting" os utilizadores irão ver bastantes mensagens de alerta';
$lang['admin']['session_use_cookies'] = 'As sessões são autorizados a utilizar Cookies';
$lang['admin']['errorgettingcontent'] = 'Não foi possível recuperar as informações para o objeto de conteúdo especificado';
$lang['admin']['errordeletingcontent'] = 'Erro de exclusão do conteúdo (ou esta página tem sub-paginas ou é o conteúdo padrão)';
$lang['admin']['invalidemail'] = 'Enderço de E-mail Inválido';
$lang['admin']['info_deletepages'] = 'Nota: Devido a restrições de permissões, algumas das páginas que seleccionou para a suprimir não podem ser listadas abaixo';
$lang['admin']['info_pagealias'] = 'Especifique um único atalho para esta página.';
$lang['admin']['info_autoalias'] = 'Se este campo estiver vazio, será criado um atalho automaticamente.';
$lang['admin']['invalidparent'] = 'Deve seleccionar uma página Parente (contacte o seu administrador se não visualizar esta opção).';
$lang['admin']['forgotpwprompt'] = 'Digite o seu nome de utilizador. Um E-mail será enviado para o seu endereço de E-mail com o nome de utilizador e com as novas informações de login';
$lang['admin']['info_basic_attributes'] = 'Este campo permite especificar qual as propriedades do conteúdo que os utilizadores sem a permissão "Gerir Todo o Conteúdo" estão autorizados a editar.';
$lang['admin']['basic_attributes'] = 'Propriedades Básicas';
$lang['admin']['no_permission'] = 'Não tem permissão para executar essa função.';
$lang['admin']['bulk_success'] = 'A operação foi actualizada.';
$lang['admin']['no_bulk_performed'] = 'Nehuma operação foi seleccionada.';
$lang['admin']['info_preview_notice'] = 'Atenção: Este painel de pré-visualização tem comportamentos como se de uma janela de navegador se tratasse, permite que navegue pelo site. No entanto, se o fizer, poderá sentir comportamentos inesperados. Este painel de pré-visualização foi feito com o intuito de pré-visualizar somente a página que está a editar ou a adicionar e não uma navegação pelo site.';
$lang['admin']['sitedownexcludes'] = 'Excluir esses endereços nas Mensagens do Site em Manutenção';
$lang['admin']['info_sitedownexcludes'] = 'Este parâmetro permite a listagem de uma lista separada por vírgulas de endereços IP ou redes, que não devem ser sujeitos ao mecanismo "Site em Manutenção". Isto permite que os administradores possam trabalhar no site enquanto os visitantes anónimo recebem uma mensagem "Site em Manutenção".<br/><br/>Endereços podem ser especificados nos seguintes formatos:<br/>
1. xxx.xxx.xxx.xxx -- (exacto IP)<br/>
2. xxx.xxx.xxx.[yyy-zzz] -- (IP range)<br/>
3. xxx.xxx.xxx.xxx/nn -- (nnn = number of bits, cisco style. i.e: 192.168.0.100/24 = entire 192.168.0 class C subnet)';
$lang['admin']['setup'] = 'Definições Avançadas';
$lang['admin']['handle_404'] = 'Página Erro Personalizada 404';
$lang['admin']['sitedown_settings'] = 'Definições Site Manutenção ';
$lang['admin']['general_settings'] = 'Definições Globais';
$lang['admin']['help_function_page_attr'] = '<h3>What does this do?</h3>
<p>This tag can be used to return the value of the attributes of a certain page.</p>
<h3>How do I use it?</h3>
<p>Insert the tag into the template like: <code>{page_attr key="extra1"}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>key [required]</strong> The key to return the attribute of.</li>
</ul>';
$lang['admin']['forge'] = 'Forge ';
$lang['admin']['disable_wysiwyg'] = 'Desactivar editor WYSIWYG nessa página (independentemente do template ou configurações do utilizador)';
$lang['admin']['help_function_page_image'] = '<h3>What does this do?</h3>
<p>This tag can be used to return the value of the image or thumbnail fields of a certain page.</p>
<h3>How do I use it?</h3>
<p>Insert the tag into the template like: <code>{page_image}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li>thumbnail - Optionally display the value of the thumbnail property instead of the image property.</li>
</ul>
';
$lang['admin']['pagelink_circular'] = 'A página link não pode linkar outra página link';
$lang['admin']['destinationnotfound'] = 'A página seleccionada não pôde ser encontrado ou é inválida';
$lang['admin']['help_function_dump'] = '<h3>What does this do?</h3>
<p>This tag can be used to dump the contents of any smarty variable in a more readable format. This is useful for debugging, and editing templates, to know the format and types of data available.</p>
<h3>How do I use it?</h3>
<p>Insert the tag in the template like <code>{dump item='the_smarty_variable_to_dump'}</code>.</p>
<h3>What parameters does it take</h3>
<ul>
<li><strong>item (required)</strong> - The smarty variable to dump the contents of.</li>
<li>maxlevel - The maximum number of levels to recurse (applicable only if recurse is also supplied. The default value for this parameter is 3</li>
<li>nomethods - Skip output of methods from objects.</li>
<li>novars - Skip output of object members.</li>
<li>recurse - Recurse a maximum number of levels through the objects providing verbose output for each item until the maximum number of levels is reached.</li>
</ul>';
$lang['admin']['sqlerror'] = 'SQL erro em %s';
$lang['admin']['image'] = 'Imagem';
$lang['admin']['thumbnail'] = 'Miniatura';
$lang['admin']['searchable'] = 'Esta página é pesquisavel';
$lang['admin']['help_function_content_image'] = '<h3>What does this do?</h3>
<p>This plugin allows template designers to prompt users to select an image file when editing the content of a page. It behaves similarly to the content plugin, for additional content blocks.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your page template like: <code>{content_image block='image1'}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><strong>(required)</strong> block - The name for this additional content block.
<p>Example:</p>
<pre>{content_image block='image1'}</pre><br/>
</li>
<li><em>(optional)</em> label - A label or prompt for this content block in the edit content page. If not specified, the block name will be used.</li>
<li><em>(optional)</em> dir - The name of a directory (relative to the uploads directory, from which to select image files. If not specified, the uploads directory will be used.
<p>Example: use images from the uploads/image directory.</p>
<pre>{content_image block='image1' dir='images'}</pre><br/>
</li>
<li><em>(optional)</em> class - The css class name to use on the img tag in frontend display.</li>
<li><em>(optional)</em> id - The id name to use on the img tag in frontend display.</li>
<li><em>(optional)</em> name - The tag name to use on the img tag in frontend display.</li>
<li><em>(optional)</em> width - The desired width of the image.</li>
<li><em>(optional)</em> height - The desired height of the image.</li>
<li><em>(optional)</em> alt - Alternative text if the image cannot be found.</li>
<li><em>(optional)</em> urlonly - output only the url to the image, ignoring all parameters like id, name, width, height, etc.</li>
</ul>';
$lang['admin']['error_udt_name_chars'] = 'Um nome do UDT válido começa com uma letra ou sublinhado(_), seguido por qualquer número de letras, números ou sublinhados.';
$lang['admin']['errorupdatetemplateallpages'] = 'Template não está activo';
$lang['admin']['hidefrommenu'] = 'Esconder do Menu';
$lang['admin']['settemplate'] = 'Definir Template';
$lang['admin']['text_settemplate'] = 'Definir as Páginas Seleccionadas num Template diferente';
$lang['admin']['cachable'] = 'Em Cache';
$lang['admin']['noncachable'] = 'Sem Cache';
$lang['admin']['copy_from'] = 'Copiar De';
$lang['admin']['copy_to'] = 'Copiar para';
$lang['admin']['copycontent'] = 'Copiar item de Conteúdo';
$lang['admin']['md5_function'] = 'funcão md5';
$lang['admin']['tempnam_function'] = 'função tempnam';
$lang['admin']['register_globals'] = 'PHP register_globals ';
$lang['admin']['output_buffering'] = 'PHP output_buffering ';
$lang['admin']['disable_functions'] = 'disable_functions no PHP ';
$lang['admin']['xml_function'] = 'Basic XML (expat) suporte';
$lang['admin']['magic_quotes_gpc'] = 'Magic quotes para Get/Post/Cookie';
$lang['admin']['magic_quotes_gpc_on'] = 'Aspas simples, aspas duplas e estão barras invertidas escaparam automaticamente. Pode ter problemas em guardar templates';
$lang['admin']['magic_quotes_runtime'] = 'Magic quotes em runtime';
$lang['admin']['magic_quotes_runtime_on'] = 'A maior parte das funções que retornam dados têm aspas na saída com uma barra invertida. Pode ter problemas';
$lang['admin']['file_get_contents'] = 'Teste file_get_contents';
$lang['admin']['check_ini_set'] = 'Teste ini_set';
$lang['admin']['check_ini_set_off'] = 'Pode ter dificuldade em algumas das funcionalidades sem esta capacidade. Este teste pode falhar se safe_mode estiver activo';
$lang['admin']['file_uploads'] = 'Carregamento de Ficheiros';
$lang['admin']['test_remote_url'] = 'Teste para URL remoto';
$lang['admin']['test_remote_url_failed'] = 'Provavelmente não será capaz de abrir um arquivo remoto num servidor web.';
$lang['admin']['test_allow_url_fopen_failed'] = 'Se o url fopen estiver desactivado não será capaz de aceder à URL objecto como ftp ou arquivo usando o protocolo http.';
$lang['admin']['connection_error'] = 'Conecções de saída http não estão a trabalhar! Existe uma firewall ou alguma ACL para conecções externas?. Isso resultará no módulo manager.';
$lang['admin']['remote_connection_timeout'] = 'Conecção excedeu o tempo!';
$lang['admin']['search_string_find'] = 'Conecção ok!';
$lang['admin']['connection_failed'] = 'Conecção falhou!';
$lang['admin']['remote_response_ok'] = 'Resposta Remota: ok!';
$lang['admin']['remote_response_404'] = 'Resposta Remota: não encontrado!';
$lang['admin']['remote_response_error'] = 'Resposta Remota: erro!';
$lang['admin']['notifications_to_handle'] = 'Tem <b>%d</b> notificações no sistema';
$lang['admin']['notification_to_handle'] = 'Tem <b>%d</b> notificação no sistema';
$lang['admin']['notifications'] = 'Notificações';
$lang['admin']['dashboard'] = 'Visualizar Painel';
$lang['admin']['ignorenotificationsfrommodules'] = 'Ignorar notificações para os seguintes módulos ';
$lang['admin']['admin_enablenotifications'] = 'Permitir utilizadores verem notificações<br /><em>(notificações mostradas em todas as páginas da administração)</em>';
$lang['admin']['enablenotifications'] = 'Activar notificações para o utilizador na seção admin';
$lang['admin']['test_check_open_basedir_failed'] = 'As restrições Open basedir estão activas. Pode ter algumas dificuldades em alguns addons com esta restrição';
$lang['admin']['config_writable'] = 'config.php tem permissões de escrita. É mais seguro alterar para permissão de leitura';
$lang['admin']['caution'] = 'Precaução';
$lang['admin']['create_dir_and_file'] = 'Verificar se o processo httpd pode criar um arquivo dentro de um diretório';
$lang['admin']['os_session_save_path'] = 'Não está marcado porque é OS path';
$lang['admin']['unlimited'] = 'Ilimitado';
$lang['admin']['open_basedir'] = 'PHP Open Basedir ';
$lang['admin']['open_basedir_active'] = 'Não está marcado uma vez aberta a basedir e activa';
$lang['admin']['invalid'] = 'Inválido';
$lang['admin']['checksum_passed'] = 'Todos os checksums são compatíveis com o arquivo enviado';
$lang['admin']['error_retrieving_file_list'] = 'Erro ao recuperar a lista de arquivos';
$lang['admin']['files_checksum_failed'] = 'Os arquivos não poderia ser comparados (checksummed)';
$lang['admin']['failure'] = 'Falha';
$lang['admin']['help_function_process_pagedata'] = '<h3>What does this do?</h3>
<p>This plugin will process the data in the &quot;pagedata&quot; block of content pages through smarty. It allows you to specify page specific data to smarty without changing the template for each page.</p>
<h3>How do I use it?</h3>
<ol>
<li>Insert smarty assign variables and other smarty logic into the pagedata field of some of your content pages.</li>
<li>Insert the <code>{process_pagedata}</code> tag into the very top of your page template.</li>
</ol>
<br/>
<h3>What parameters does it take?</h3>
<p>None at this time</p>';
$lang['admin']['page_metadata'] = 'Específicar Metadados';
$lang['admin']['pagedata_codeblock'] = 'Smarty dados ou lógica que é específica para esta página';
$lang['admin']['error_uploadproblem'] = 'Ocorreu um erro no carregamento';
$lang['admin']['error_nofileuploaded'] = 'Nenhum ficheiro foi carregado';
$lang['admin']['files_failed'] = 'Arquivos md5sum falharam a verificação';
$lang['admin']['files_not_found'] = 'Arquivos não encotrados';
$lang['admin']['info_generate_cksum_file'] = 'Esta função permitirá que gerar um arquivo checksum e guardar no seu computador para posterior validação. Isto deve ser feito pouco antes de lançar o site, e/ou após qualquer actualização, ou de alterações importantes.';
$lang['admin']['info_validation'] = 'Esta função irá comparar os checksums encontrados no arquivo enviado com os arquivos de da actual instalação. Ele pode ajudar a encontrar problemas com os carregamentos, ou exactamente quais os arquivos que foram modificados caso o seu sistema tenha sido hacked. Um arquivo checksum é gerado para cada nova versão do CMS a partir de versão 1.4.';
$lang['admin']['download_cksum_file'] = 'Download Ficheiro Checksum';
$lang['admin']['perform_validation'] = 'Realizar Validação';
$lang['admin']['upload_cksum_file'] = 'Carregar Ficheiro Checksum';
$lang['admin']['checksumdescription'] = 'Validar a integridade dos arquivos CMS, comparação contra conhecido checksums';
$lang['admin']['system_verification'] = 'Verificação Sistema';
$lang['admin']['extra1'] = 'Atributo Extra 1';
$lang['admin']['extra2'] = 'Atributo Extra 2';
$lang['admin']['extra3'] = 'Atributo Extra 3';
$lang['admin']['start_upgrade_process'] = 'Inicio do Processo de Actualização';
$lang['admin']['warning_upgrade'] = '<em><strong>Aviso:</strong></em> CMSMS necessita de uma actualização.';
$lang['admin']['warning_upgrade_info1'] = 'Esta a correr a versão schema %s. e necessita de ser actualizado para a versão %s';
$lang['admin']['warning_upgrade_info2'] = 'Por Favor click no seguinte link: %s.';
$lang['admin']['warning_mail_settings'] = 'As configurações de correio electrónico não foram configuradas. Isto pode interferir com a capacidade do seu website de enviar mensagens de E-mail. Deve ir a <b> Extensões>> CMSMail </b> e configurar as definições de correio electrónico com a informação fornecida pelo seu alojamento.';
$lang['admin']['view_page'] = 'Visualizar esta página em uma nova janela';
$lang['admin']['off'] = 'Off ';
$lang['admin']['on'] = 'On ';
$lang['admin']['invalid_test'] = 'Parâmetro valor de teste inválido';
$lang['admin']['copy_paste_forum'] = 'Seleccione este link copy/paste para ajuda no forum';
$lang['admin']['permission_information'] = 'Informações de Permissões';
$lang['admin']['server_os'] = 'Sistema Operacional do Servidor';
$lang['admin']['server_api'] = 'API do Servidor';
$lang['admin']['server_software'] = 'Software do Servidor';
$lang['admin']['server_information'] = 'Informação do Servidor';
$lang['admin']['session_save_path'] = 'Caminho para Gravar Sessões';
$lang['admin']['max_execution_time'] = 'Tempo Máximo de Execução';
$lang['admin']['gd_version'] = 'Versão GD ';
$lang['admin']['upload_max_filesize'] = 'Tamanho Máximo Upload';
$lang['admin']['post_max_size'] = 'Tamanho Máximo Post';
$lang['admin']['memory_limit'] = 'PHP Limite Memoria';
$lang['admin']['server_db_type'] = 'Base de Dados no Servidor';
$lang['admin']['server_db_version'] = 'Versão da Base de Dados no Servidor';
$lang['admin']['phpversion'] = 'Versão PHP';
$lang['admin']['safe_mode'] = 'PHP Safe Mode (Modo Seguro)';
$lang['admin']['php_information'] = 'Informação PHP';
$lang['admin']['cms_install_information'] = 'CMS Informação da Instalação';
$lang['admin']['cms_version'] = 'Versão do CMS';
$lang['admin']['installed_modules'] = 'Módulos Instalados';
$lang['admin']['config_information'] = 'Informação de Configuração (config)';
$lang['admin']['systeminfo_copy_paste'] = 'Por favor, copie e cole o texto selecionado no fórum';
$lang['admin']['help_systeminformation'] = 'As informações indicadas a seguir são recolhidas a partir de uma variedade de locais, estão aqui resumidas, de modo a que possa ser capaz de encontrar convenientemente algumas das informações necessárias para tentar diagnosticar um problema ou pedir ajuda com a sua instalação do CMS Made Simple';
$lang['admin']['systeminfo'] = 'Informação do Sistema';
$lang['admin']['systeminfodescription'] = 'Mostrar várias informações sobre o seu sistema, o que pode ser útil no diagnóstico de problemas';
$lang['admin']['welcome_user'] = 'Bem-Vindo';
$lang['admin']['itsbeensincelogin'] = 'Já passou %s desde o seu último login';
$lang['admin']['days'] = 'dias';
$lang['admin']['day'] = 'dia';
$lang['admin']['hours'] = 'horas';
$lang['admin']['hour'] = 'hora';
$lang['admin']['minutes'] = 'minutos';
$lang['admin']['minute'] = 'minuto';
$lang['admin']['help_css_max_age'] = 'Este parâmetro deve ser configurado relativamente elevados para sites estáticos <br />, e deve ser ajustado para 0, para desenvolvimento local';
$lang['admin']['css_max_age'] = 'Máxima quantidade de tempo (segundos) que os estilos (stylesheets) devem ser armazenados no cache do navegador';
$lang['admin']['error'] = 'Erro';
$lang['admin']['clear_version_check_cache'] = 'Limpar cache da verificação de versão';
$lang['admin']['new_version_available'] = '<em>Alerta:</em> Uma nova versão do CMS Made Simple está disponível. Por Favor contacte o administrador';
$lang['admin']['info_urlcheckversion'] = 'Se a url for a palavra "none" nenhuma verificação ocorrerá.<br/>Se o campo for vazio será utilizada a URL por defeito.';
$lang['admin']['urlcheckversion'] = 'Verificar novas versões do CMS usando o URL';
$lang['admin']['master_admintheme'] = 'Tema de Administração Padrão (para o login e novas contas de utilizador criadas)';
$lang['admin']['contenttype_separator'] = 'Separador';
$lang['admin']['contenttype_sectionheader'] = 'Secção de Cabeçalho';
$lang['admin']['contenttype_content'] = 'Conteúdo';
$lang['admin']['contenttype_pagelink'] = 'Link Página Interna';
$lang['admin']['nogcbwysiwyg'] = 'Disabilitar "WYSIWYG Editor" no Bloco de Conteúdo Global';
$lang['admin']['destination_page'] = 'Página de Destino';
$lang['admin']['additional_params'] = 'Parâmetros Adicionais';
$lang['admin']['help_function_current_date'] = ' <h3 style="color: red;">Deprecated</h3>
<p>use <code>{$smarty.now|cms_date_format}</code></p>
<h3>What does this do?</h3>
<p>Prints the current date and time. If no format is given, it will default to a format similar to 'Jan 01, 2004'.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{current_date format="%A %d-%b-%y %T %Z"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - Date/Time format using parameters from php's strftime function. See <a href="http://php.net/strftime" target="_blank">here</a> for a parameter list and information.</li>
<li><em>(optional)</em>ucword - If true return uppercase the first character of each word.</li>
</ul>';
$lang['admin']['help_function_valid_xhtml'] = '<h3>What does this do?</h3>
<p>Returns a link to the w3c HTML validator.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{valid_xhtml}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> url (string) - The URL used for validation, if none is given http://validator.w3.org/check/referer is used.</li>
<li><em>(optional)</em> class (string) - If set, this will be used as class attribute for the link (a) element</li>
<li><em>(optional)</em> target (string) - If set, this will be used as target attribute for the link (a) element</li>
<li><em>(optional)</em> image (true/false) - If set to false, a text link will be used instead of an image/icon.</li>
<li><em>(optional)</em> text (string) - If set, this will be used for the link text or alternate text for the image. Default is 'valid XHTML 1.0 Transitional'.<br /> When an image is used, the given string will also be used for the image alt attribute (by default, this can be overridden by using the 'alt' parameter).</li>
<li><em>(optional)</em> image_class (string) - Only if 'image' is not set to false. If set, this will be used as class attribute for the image (img) element</li>
<li><em>(optional)</em> src (string) - Only if 'image' is not set to false. The icon to show. Default is http://www.w3.org/Icons/valid-xhtml10</li>
<li><em>(optional)</em> width (string) - Only if 'image' is not set to false. The image width. Default is 88 (width of http://www.w3.org/Icons/valid-xhtml10)</li>
<li><em>(optional)</em> height (string) - Only if 'image' is not set to false. The image height. Default is 31 (height of http://www.w3.org/Icons/valid-xhtml10)</li>
<li><em>(optional)</em> alt (string) - Only if 'image' is not set to false. The alternate text ('alt' attribute) for the image (element). If none is given the link text will be used.</li>
</ul>
</p>';
$lang['admin']['help_function_valid_css'] = '<h3>What does this do?</h3>
<p>Returns a link to the w3c CSS validator.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{valid_css}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> url (string) - The URL used for validation, if none is given http://jigsaw.w3.org/css-validator/check/referer is used.</li>
<li><em>(optional)</em> class (string) - If set, this will be used as class attribute for the link (a) element</li>
<li><em>(optional)</em> target (string) - If set, this will be used as target attribute for the link (a) element</li>
<li><em>(optional)</em> image (true/false) - If set to false, a text link will be used instead of an image/icon.</li>
<li><em>(optional)</em> text (string) - If set, this will be used for the link text or alternate text for the image. Default is 'Valid CSS 2.1'.<br /> When an image is used, the given string will also be used for the image alt attribute (by default, this can be overridden by using the 'alt' parameter).</li>
<li><em>(optional)</em> image_class (string) - Only if 'image' is not set to false. If set, this will be used as class attribute for the image (img) element</li>
<li><em>(optional)</em> src (string) - Only if 'image' is not set to false. The icon to show. Default is http://jigsaw.w3.org/css-validator/images/vcss</li>
<li><em>(optional)</em> width (string) - Only if 'image' is not set to false. The image width. Default is 88 (width of http://jigsaw.w3.org/css-validator/images/vcss)</li>
<li><em>(optional)</em> height (string) - Only if 'image' is not set to false. The image height. Default is 31 (height of http://jigsaw.w3.org/css-validator/images/vcss)</li>
<li><em>(optional)</em> alt (string) - Only if 'image' is not set to false. The alternate text ('alt' attribute) for the image (element). If none is given the link text will be used.</li>
</ul>
</p>';
$lang['admin']['help_function_title'] = ' <h3>What does this do?</h3>
<p>Prints the title of the page.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{title}</code></p>
<h3>What parameters does it take?</h3>
<p><em>(optional)</em> assign (string) - Assign the results to a smarty variable with that name.</p>';
$lang['admin']['help_function_stylesheet'] = ' <h3>What does this do?</h3>
<p>Gets stylesheet information from the system. By default, it grabs all of the stylesheets attached to the current template.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page's head section like: <code>{stylesheet}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>name - Instead of getting all stylesheets for the given page, it will only get one spefically named one, whether it's attached to the current template or not.</li>
<li><em>(optional)</em>media - If name is defined, this allows you set a different media type for that stylesheet.</li>
</ul>
</p>';
$lang['admin']['help_function_stopexpandcollapse'] = ' <h3>What does this do?</h3>
<p>Enables content to be expandable and collapsable. Like the following:<br />
<a href="#expand1" onClick="expandcontent('expand1')" style="cursor:hand; cursor:pointer">Click here for more info</a><span id="expand1" class="expand"><a name="help"></a> - Here is all the info you will ever need...</a></span></p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like:<br />
<br />
<code>{startExpandCollapse id="name" title="Click Here"}<br />
This is all the content the user will see when they click the title "Click Here" above. It will display all the content that is between the {startExpandCollapse} and {stopExpandCollapse} when clicked.<br />
{stopExpandCollapse}
</code>
<br />
<br />
Note: If you intend to use this multiple times on a single page each startExpandCollapse tag must have a unique id.</p>
<h3>What if I want to change the look of the title?</h3>
<p>The look of the title can be changed via css. The title is wrapped in a div with the id you specify.</p>
<h3>What parameters does it take?</h3>
<p>
<i>startExpandCollapse takes the following parameters</i><br />
id - A unique id for the expand/collapse section.<br />
title - The text that will be displayed to expand/collapse the content.<br />
<i>stopExpandCollapse takes no parameters</i><br />
</p>';
$lang['admin']['help_function_startexpandcollapse'] = ' <h3>What does this do?</h3>
<p>Enables content to be expandable and collapsable. Like the following:<br />
<a href="#expand1" onClick="expandcontent('expand1')" style="cursor:hand; cursor:pointer">Click here for more info</a><span id="expand1" class="expand"><a name="help"></a> - Here is all the info you will ever need...</a></span></p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{startExpandCollapse id="name" title="Click Here"}</code>. Also, you must use the {stopExpandCollapse} at the end of the collapseable content. Here is an example:<br />
<br />
<code>{startExpandCollapse id="name" title="Click Here"}<br />
This is all the content the user will see when they click the title "Click Here" above. It will display all the content that is between the {startExpandCollapse} and {stopExpandCollapse} when clicked.<br />
{stopExpandCollapse}
</code>
<br />
<br />
Note: If you intend to use this multiple times on a single page each startExpandCollapse tag must have a unique id.</p>
<h3>What if I want to change the look of the title?</h3>
<p>The look of the title can be changed via css. The title is wrapped in a div with the id you specify.</p>
<h3>What parameters does it take?</h3>
<p>
<i>startExpandCollapse takes the following parameters</i><br />
id - A unique id for the expand/collapse section.<br />
title - The text that will be displayed to expand/collapse the content.<br />
<i>stopExpandCollapse takes no parameters</i><br />
</p>';
$lang['admin']['help_function_adsense'] = ' <h3>What does this do?</h3>
<p>Google adsense is a popular advertising program for websites. This tag will take the basic parameters that would be provided by the adsense program and puts them in a easy to use tag that makes your templates look much cleaner. See <a href="http://www.google.com/adsense" target="_blank">here</a> for more details on adsense.</p>
<h3>How do I use it?</h3>
<p>First, sign up for a google adsense account and get the parameters for your ad. Then just use the tag in your page/template like so: <code>{adsense ad_client="pub-random#" ad_width="120" ad_height="600" ad_format="120x600_as"}</code>
<h3>What parameters does it take?</h3>
<p>All parameters are optional, though skipping one might not necessarily made the ad work right. Options are:
<ul>
<li>ad_client - This would be the pub_random# id that would represent your adsense account number</li>
<li>ad_width - width of the ad</li>
<li>ad_height - height of the ad</li>
<li>ad_format - "format" of the ad <em>e.g. 120x600_as</em></li>
<li>ad_channel - channels are an advanced feature of adsense. Put it here if you use it.</li>
<li>ad_type - possible options are text, image or text_image.</li>
<li>color_border - the color of the border. Use HEX color or type the color name (Ex. Red)</li>
<li>color_link - the color of the linktext. Use HEX color or type the color name (Ex. Red)</li>
<li>color_url - the color of the URL. Use HEX color or type the color name (Ex. Red)</li>
<li>color_text - the color of the text. Use HEX color or type the color name (Ex. Red)</li>
</ul>
</p>';
$lang['admin']['help_function_sitename'] = ' <h3>What does this do?</h3>
<p>Shows the name of the site. This is defined during install and can bbe modified in the Global Settings section of the admin panel.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{sitename}</code></p>
<h3>What parameters does it take?</h3>
<p><em>(optional)</em> assign (string) - Assign the results to a smarty variable with that name.</p>';
$lang['admin']['help_function_search'] = ' <h3>What does this do?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=Search">Search module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='Search'}</code> you can now just use <code>{search}</code> to insert the module in a template.
</p>
<h3>How do I use it?</h3>
<p>Just put <code>{search}</code> in a template where you want the search input box to appear. For help about the Search module, please refer to the <a href="listmodules.php?action=showmodulehelp&module=Search">Search module help</a>.';
$lang['admin']['help_function_root_url'] = ' <h3>What does this do?</h3>
<p>Prints the root url location for the site.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{root_url}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time.</p>';
$lang['admin']['help_function_repeat'] = ' <h3>What does this do?</h3>
<p>Repeats a specified sequence of characters, a specified number of times</p>
<h3>How do I use it?</h3>
<p>Insert a tag similar to the following into your template/page, like this: <code>{repeat string='repeat this ' times='3'}</code>
<h3>What parameters does it take?</h3>
<ul>
<li>string='text' - The string to repeat</li>
<li>times='num' - The number of times to repeat it.</li>
</ul>';
$lang['admin']['help_function_recently_updated'] = ' <h3>What does this do?</h3>
<p>Outputs a list of recently updated pages.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{recently_updated}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><p><em>(optional)</em> number='10' - Number of updated pages to show.</p><p>Example: <pre>{recently_updated number='15'}</pre></p></li>
<li><p><em>(optional)</em> leadin='Last changed' - Text to show left of the modified date.</p><p>Example: <pre>{recently_updated leadin='Last Changed'}</pre></p></li>
<li><p><em>(optional)</em> showtitle='true' - Shows the titleattribute if it exists as well (true|false).</p><p>Example: <pre>{recently_updated showtitle='true'}</pre></p></li>
<li><p><em>(optional)</em> css_class='some_name' - Warp a div tag with this class around the list.</p><p>Example: <pre>{recently_updated css_class='some_name'}</pre></p></li>
<li><p><em>(optional)</em> dateformat='d.m.y h:m' - default is d.m.y h:m , use the format you whish (php -date- format)</p><p>Example: <pre>{recently_updated dateformat='D M j G:i:s T Y'}</pre></p></li>
</ul>
<p>or combined:</p>
<pre>{recently_updated number='15' showtitle='false' leadin='Last Change: ' css_class='my_changes' dateformat='D M j G:i:s T Y'}</pre>';
$lang['admin']['help_function_print'] = ' <h3>What does this do?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=Printing">Printing module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='Printing'}</code> you can now just use <code>{print}</code> to insert the module on pages and templates.
</p>
<h3>How do I use it?</h3>
<p>Just put <code>{print}</code> on a page or in a template. For help about the Printing module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=Printing">Printing module help</a>.';
$lang['admin']['help_function_oldprint'] = ' <h3>What does this do?</h3>
<p>Creates a link to only the content of the page.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{print}</code><br></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em> goback - Set to "true" to show a "Go Back" link on the page to print.</li>
<li><em>(optional)</em> popup - Set to "true" and page for printing will by opened in new window.</li>
<li><em>(optional)</em> script - Set to "true" and in print page will by used java script for run print of page.</li>
<li><em>(optional)</em> showbutton - Set to "true" and will show a printer graphic instead of a text link.</li>
<li><em>(optional)</em> class - class for the link, defaults to "noprint".</li>
<li><em>(optional)</em> text - Text to use instead of "Print This Page" for the print link.
<li><em>(optional)</em> title - Text to show for title attribute. If blank show text parameter.</li>
<li><em>(optional)</em> more - Place additional options inside the <a> link.</li>
<li><em>(optional)</em> src_img - Show this image file. Default images/cms/printbutton.gif.</li>
<li><em>(optional)</em> class_img - Class of <img> tag if showbutton is sets.</li>
<p>Example:</p>
<pre>{print text="Printable Page"}</pre>
</li>
</ul>';
$lang['admin']['login_info_title'] = 'Informação';
$lang['admin']['login_info'] = 'A partir deste ponto deverá ter em consideração os seguintes parâmetros';
$lang['admin']['login_info_params'] = '<ol>
<li>Cookies activados no seu navegador</li>
<li>Javascript activado no seu navegador </li>
<li>Janelas popup activas para o seguinte endereço</li>
</ol>';
$lang['admin']['help_function_news'] = ' <h3>What does this do?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=News">News module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='News'}</code> you can now just use <code>{news}</code> to insert the module on pages and templates.
</p>
<h3>How do I use it?</h3>
<p>Just put <code>{news}</code> on a page or in a template. For help about the News module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=News">News module help</a>.';
$lang['admin']['help_function_modified_date'] = ' <h3>What does this do?</h3>
<p>Prints the date and time the page was last modified. If no format is given, it will default to a format similar to 'Jan 01, 2004'.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{modified_date format="%A %d-%b-%y %T %Z"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - Date/Time format using parameters from php's strftime function. See <a href="http://php.net/strftime" target="_blank">here</a> for a parameter list and information.</li>
</ul>';
$lang['admin']['help_function_metadata'] = ' <h3>What does this do?</h3>
<p>Displays the metadata for this page. Both global metdata from the global settings page and metadata for each page will be shown.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template like: <code>{metadata}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>showbase (true/false) - If set to false, the base tag will not be sent to the browser. Defaults to true if use_hierarchy is set to true in config.php.</li>
</ul>';
$lang['admin']['help_function_menu_text'] = ' <h3>What does this do?</h3>
<p>Prints the menu text of the page.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{menu_text}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time.</p>';
$lang['admin']['help_function_menu'] = ' <h3>What does this do?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module</a> to make the tag syntax easier.
Instead of having to use <code>{cms_module module='MenuManager'}</code> you can now just use <code>{menu}</code> to insert the module on pages and templates.
</p>
<h3>How do I use it?</h3>
<p>Just put <code>{menu}</code> on a page or in a template. For help about the Menu Manager module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module help</a>.';
$lang['admin']['help_function_last_modified_by'] = ' <h3>What does this do?</h3>
<p>Prints last person that edited this page. If no format is given, it will default to a ID number of user .</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{last_modified_by format="fullname"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - id, username, fullname</li>
</ul>';
$lang['admin']['help_function_image'] = ' <h3>What does this do?</h3>
<p>Creates an image tag to an image stored within your images directory</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{image src="something.jpg"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(required)</em> <tt>src</tt> - Image filename within your images directory.</li>
<li><em>(optional)</em> <tt>width</tt> - Width of the image within the page. Defaults to true size.</li>
<li><em>(optional)</em> <tt>height</tt> - Height of the image within the page. Defaults to true size.</li>
<li><em>(optional)</em> <tt>alt</tt> - Alt text for the image -- needed for xhtml compliance. Defaults to filename.</li>
<li><em>(optional)</em> <tt>class</tt> - CSS class for the image.</li>
<li><em>(optional)</em> <tt>title</tt> - Mouse over text for the image. Defaults to Alt text.</li>
<li><em>(optional)</em> <tt>addtext</tt> - Additional text to put into the tag</li>
</ul>';
$lang['admin']['help_function_html_blob'] = ' <h3>What does this do?</h3>
<p>See the help for global_content for a description.</p>';
$lang['admin']['help_function_google_search'] = ' <h3>What does this do?</h3>
<p>Search's your website using Google's search engine.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{google_search}</code><br>
<br>
Note: Google needs to have your website indexed for this to work. You can submit your website to google <a href="http://www.google.com/addurl.html">here</a>.</p>
<h3>What if I want to change the look of the textbox or button?</h3>
<p>The look of the textbox and button can be changed via css. The textbox is given an id of textSearch and the button is given an id of buttonSearch.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em> domain - This tells google the website domain to search. This script tries to determine this automatically.</li>
<li><em>(optional)</em> buttonText - The text you want to display on the search button. The default is "Search Site".</li>
</ul>
</p>';
$lang['admin']['help_function_global_content'] = ' <h3>What does this do?</h3>
<p>Inserts a global content block into your template or page.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{global_content name='myblob'}</code>, where name is the name given to the block when it was created.</p>
<h3>What parameters does it take?</h3>
<ul>
<li>name - The name of the global content block to display.</li>
</ul>';
$lang['admin']['help_function_get_template_vars'] = ' <h3>What does this do?</h3>
<p>Dumps all the known smarty variables into your page</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{get_template_vars}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time</p>';
$lang['admin']['help_function_embed'] = ' <h3>What does this do?</h3>
<p>Enable inclusion (embeding) of any other application into the CMS. The most usual use could be a forum.
This implementation is using IFRAMES so older browsers can have problems. Sorry bu this is the only known way
that works without modifing the embeded application.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{embed url=http://www.google.com/}</code><br></p>
<h4>Example to make the iframe larger</h4>
<p>Add the following to your style sheet:</p>
<pre>#myframe { height: 600px; }</pre>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(required)</em>url - the url to be included
<li><em>(optional)</em>header=true - this will generate the header code for good resizing of the IFRAME.</li>
</ul>
<p>You must include in your page content {embed url=..} and in the "Metadata:" section (advanced tab) you must put {embed header=true}. Also be sure to put this in between the "head" tags of your template: {metadata}</p>';
$lang['admin']['help_function_edit'] = ' <h3>What does this do?</h3>
<p>Creates a link to edit the page</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{edit}</code><br></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>showbutton - Set to "true" and will show a edit graphic instead of a text link.</li>
</ul>';
$lang['admin']['help_function_description'] = ' <h3>What does this do?</h3>
<p>Prints the description (title attribute) of the page.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{description}</code></p>
<h3>What parameters does it take?</h3>
<p>None at this time.</p>';
$lang['admin']['help_function_created_date'] = ' <h3>What does this do?</h3>
<p>Prints the date and time the page was created. If no format is given, it will default to a format similar to 'Jan 01, 2004'.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{created_date format="%A %d-%b-%y %T %Z"}</code></p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>format - Date/Time format using parameters from php's strftime function. See <a href="http://php.net/strftime" target="_blank">here</a> for a parameter list and information.</li>
</ul>';
$lang['admin']['help_function_content'] = ' <h3>Para que serve?</h3>
<p>This is where the content for your page will be displayed. It's inserted into the template and changed based on the current page being displayed.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template like: <code>{content}</code>.</p>
<h3>What parameters does it take?</h3>
<ul>
<li><em>(optional)</em>block - Allows you to have more than one content block per page. When multiple content tags are put on a template, that number of edit boxes will be displayed when the page is edited.
<p>Example:</p>
<pre>{content block="Second Content Block"}</pre>
<p>Now, when you edit a page there will a textarea called "Second Content Block".</li>
<li><em>(optional)</em>wysiwyg (true/false) - If set to false, then a wysiwyg will never be used while editing this block. If true, then it acts as normal. Only works when block parameter is used.</li>
<li><em>(optional)</em>oneline (true/false) - If set to true, then only one edit line will be shown while editing this block. If false, then it acts as normal. Only works when block parameter is used.</li>
<li><em>(optional)</em>assign - Assigns the content to a smarty parameter, which you can then use in other areas of the page, or use to test whether content exists in it or not.
<p>Example of passing page content to a User Defined Tag as a parameter:</p>
<pre>
{content assign=pagecontent}
{table_of_contents thepagecontent="$pagecontent"}
</pre>
</li>
</ul>';
$lang['admin']['help_function_contact_form'] = ' <h2>NOTE: This plugin is deprecated</h2>
<p>This smarty plugin is deprecated, and may not be included with further versions of CMS Made Simple. We recommend you use the formbuilder module and it's included contact form.</p>
<h3>What does this do?</h3>
<p>Display's a contact form. This can be used to allow others to send an email message to the address specified.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{contact_form email="yourname@yourdomain.com"}</code><br>
<br>
If you would like to send an email to multiple adresses, seperate each address with a comma.</p>
<h3>What parameters does it take?</h3>
<ul>
<li>email - The email address that the message will be sent to.</li>
<li><em>(optional)</em>style - true/false, use the predefined styles. Default is true.</li>
<li><em>(optional)</em>subject_get_var - string, allows you to specify which _GET var to use as the default value for subject.
<p>Example:</p>
<pre>{contact_form email="yourname@yourdomain.com" subject_get_var="subject"}</pre>
<p>Then call the page with the form on it like this: /index.php?page=contact&subject=test+subject</p>
<p>And the following will appear in the "Subject" box: "test subject"
</li>
<li><em>(optional)</em>captcha - true/false, use Captcha response test (Captcha module must be installed). Default is false.</li>
</ul>
</p>';
$lang['admin']['help_function_cms_versionname'] = ' <h3>Para que serve?</h3>
<p>This tag is used to insert the current version name of CMS into your template or page. It doesn't display any extra besides the version name.</p>
<h3>How do I use it?</h3>
<p>This is just a basic tag plugin. You would insert it into your template or page like so: <code>{cms_versionname}</code>
<h3>What parameters does it take?</h3>
<p>It takes no parameters.</p>';
$lang['admin']['help_function_cms_version'] = ' <h3>Para que serve?</h3>
<p>This tag is used to insert the current version number of CMS into your template or page. It doesn't display any extra besides the version number.</p>
<h3>How do I use it?</h3>
<p>This is just a basic tag plugin. You would insert it into your template or page like so: <code>{cms_version}</code>
<h3>What parameters does it take?</h3>
<p>It takes no parameters.</p>';
$lang['admin']['about_function_cms_selflink'] = ' <p>Author: Ted Kulp <tedkulp@users.sf.net></p>
<p>Version: 1.1</p>
<p>Modified: Martin B. Vestergaard <mbv@nospam.dk></p>
<p>Version: 1.41</p>
<p>Modified: Russ Baldwin</p>
<p>Version: 1.42</p>
<p>Modified: Marcus Bointon <coolbru@users.sf.net></p>
<p>Version: 1.43</p>
<p>Modified: Tatu Wikman <tsw@backspace.fi></p>
<p>Version: 1.44</p>
<p>Modified: Hans Mogren <http://hans.bymarken.net/></p>
<p>Version: 1.45</p>
<p>
Change History:<br/>
1.46 - Fixes a problem with too many queries when using the dir=start option.<br/>
1.45 - Added a new option for "dir", "up", for links to the parent page e.g. dir="up" (Hans Mogren).<br />
1.44 - Added new parameters "ext" and "ext_info" to allow external links with class="external" and info text after the link, ugly hack but works thinking about rewriting this(Tatu Wikman)<br />
1.43 - Added new parameters "image" and "imageonly" to allow attachment of images to be used for page links, either instead of or in addition to text links. (Marcus Bointon)<br />
1.42 - Added new parameter "anchorlink" and a new option for "dir" namely, "anchor", for internal page links. e.g. dir="anchor" anchorlink="internal_link". (Russ)<br />
1.41 - added new parameter "href" (LeisureLarry)<br />
1.4 - fixed bug next/prev linking to non-content pages. (Thanks Teemu Koistinen for this fix)<br />
1.3 - added option "more"<br />
1.2 - by Martin B. Vestergaard
<ul>
<li>changed default text to Page Name (was Page Alias)</li>
<li>added option dir=next/prev to display next or previous item in the hirachy - thanks to 100rk</li>
<li>added option class to add a class= statement to the a-tag.</li>
<li>added option menu to display menu-text in sted of Page Name</li>
<li>added option lang to display link-labels in different languages</li>
</ul>
1.1 - Changed to new content system<br />
1.0 - Initial release
</p>';
$lang['admin']['help_function_cms_selflink'] = ' <h3>Para que serve?</h3>
<p>Creates a link to another CMSMS content page inside your template or content. Can also be used for external links with the ext parameter.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{cms_selflink page="1"}</code> or <code>{cms_selflink page="alias"}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> <tt>page</tt> - Page ID or alias to link to.</li>
<li><em>(optional)</em> <tt>dir anchor (internal links)</tt> - New option for an internal page link. If this is used then <tt>anchorlink</tt> should be set to your link. </li> <!-- Russ - 25-04-2006 -->
<li><em>(optional)</em> <tt>anchorlink</tt> - New paramater for an internal page link. If this is used then <tt>dir ="anchor"</tt> should also be set. No need to add the #, because it is added automatically.</li> <!-- Russ - 25-04-2006 -->
<li><em>(optional)</em> <tt>urlparam</tt> - Specify additional parameters to the URL. <strong>Do not use this in conjunction with the <em>anchorlink</em> parameter</em></strong>
<li><em>(optional)</em> <tt>tabindex ="a value"</tt> - Set a tabindex for the link.</li> <!-- Russ - 22-06-2005 -->
<li><em>(optional)</em> <tt>dir start/next/prev/up (previous)</tt> - Links to the default start page or the next or previous page, or the parent page (up). If this is used <tt>page</tt> should not be set.</li> <!-- mbv - 21-06-2005 -->
<B>Note!</B> Only one of the above may be used in the same cms_selflink statement!!
<li><em>(optional)</em> <tt>text</tt> - Text to show for the link. If not given, the Page Name is used instead.</li>
<li><em>(optional)</em> <tt>menu 1/0</tt> - If 1 the Menu Text is used for the link text instead of the Page Name</li> <!-- mbv - 21-06-2005 -->
<li><em>(optional)</em> <tt>target</tt> - Optional target for the a link to point to. Useful for frame and javascript situations.</li>
<li><em>(optional)</em> <tt>class</tt> - Class for the <a> link. Useful for styling the link.</li> <!-- mbv - 21-06-2005 -->
<li><em>(optional)</em> <tt>lang</tt> - Display link-labels ("Next Page"/"Previous Page") in different languages (0 for no label.) Danish (dk), English (en) or French (fr), for now.</li> <!-- mbv - 21-06-2005 -->
<li><em>(optional)</em> <tt>id</tt> - Optional css_id for the <a> link.</li> <!-- mbv - 29-06-2005 -->
<li><em>(optional)</em> <tt>more</tt> - place additional options inside the <a> link.</li> <!-- mbv - 29-06-2005 -->
<li><em>(optional)</em> <tt>label</tt> - Label to use in with the link if applicable.</li>
<li><em>(optional)</em> <tt>label_side left/right</tt> - Side of link to place the label (defaults to "left").</li>
<li><em>(optional)</em> <tt>title</tt> - Text to use in the title attribute. If none is given, then the title of the page will be used for the title.</li>
<li><em>(optional)</em> <tt>rellink 1/0</tt> - Make a relational link for accessible navigation. Only works if the dir parameter is set and should only go in the head section of a template.</li>
<li><em>(optional)</em> <tt>href</tt> - If href is used only the href value is generated (no other parameters possible). <strong>Example:</strong> <a href="{cms_selflink href="alias"}"><img src=""></a></li>
<li><em>(optional)</em> <tt>image</tt> - A url of an image to use in the link. <strong>Example:</strong> {cms_selflink dir="next" image="next.png" text="Next"}</li>
<li><em>(optional)</em> <tt>alt</tt> - Alternative text to be used with image (alt="" will be used if no alt parameter is given).</li>
<li><em>(optional)</em> <tt>imageonly</tt> - If using an image, whether to suppress display of text links. If you want no text in the link at all, also set lang=0 to suppress the label. <B>Example:</B> {cms_selflink dir="next" image="next.png" text="Next" imageonly=1}</li>
<li><em>(optional)</em> <tt>ext</tt> - For external links, will add class="external and info text. <strong>warning:</strong> only text, target and title parameters are compatible with this parameter</li>
<li><em>(optional)</em> <tt>ext_info</tt> - Used together with "ext" defaults to (external link)</li>
</ul>
</p>';
$lang['admin']['about_function_cms_module'] = ' <p>Author: Ted Kulp<tedkulp@users.sf.net></p>
<p>Version: 1.0</p>
<p>
Change History:<br/>
None
</p>';
$lang['admin']['help_function_cms_module'] = ' <h3>Para que serve?</h3>
<p>This tag is used to insert modules into your templates and pages. If a module is created to be used as a tag plugin (check it's help for details), then you should be able to insert it with this tag.</p>
<h3>How do I use it?</h3>
<p>It's just a basic tag plugin. You would insert it into your template or page like so: <code>{cms_module module="somemodulename"}</code>
<h3>What parameters does it take?</h3>
<p>There is only one required parameter. All other parameters are passed on to the module.
<ul>
<li>module - Name of the module to insert. This is not case sensitive.</li>
</ul>
</p>';
$lang['admin']['about_function_breadcrumbs'] = '<p>Author: Marcus Deglos <<a href="mailto:md@zioncore.com">md@zioncore.com</a>></p>
<p>Version: 1.7</p>
<p>
Change History:<br/>
1.1 - Modified to use new content rewrite (wishy)<br />
1.2 - Added parameters: delimiter, initial, and root (arl)<br />
1.3 - Added parameter: classid (tdh / perl4ever)<br />
1.4 - Added parameter currentclassid and fixed some bugs (arl)<br />
1.5 - Modified to use new hierarchy manager<br />
1.6 - Modified to skip any parents that are marked to be "not shown in menu" except for root<br />
1.7 - Added root_url parameter (elijahlofgren)<br />
</p>';
$lang['admin']['help_function_breadcrumbs'] = '<h3>Para que serve?</h3>
<p>Prints a breadcrumb trail .</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{breadcrumbs}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><em>(optional)</em> <tt>delimiter</tt> - Text to seperate entries in the list (default ">>").</li>
<li><em>(optional)</em> <tt>initial</tt> - 1/0 If set to 1 start the breadcrumbs with a delimiter (default 0).</li>
<li><em>(optional)</em> <tt>root</tt> - Page alias of a page you want to always appear as the first page in
the list. Can be used to make a page (e.g. the front page) appear to be the root of everything even though it is not.</li>
<li><em>(optional)</em> <tt>root_url</tt> - Override the URL of the root page. Useful for making link be to '/' instead of '/home/'. This requires that the root page be set as the default page.</li>
<li><em>(optional)</em> <tt>classid</tt> - The CSS class for the non current page names, i.e. the first n-1 pages in the list. If the name is a link it is added to the <a href> tags, otherwise it is added to the <span> tags.</li>
<li><em>(optional)</em> <tt>currentclassid</tt> - The CSS class for the <span> tag surrounding the current page name.</li>
<li><em>(optional)</em> <tt>starttext</tt> - Text to append to the front of the breadcrumbs list, something like "You are here".</li>
</ul>
</p>';
$lang['admin']['about_function_anchor'] = ' <p>Author: Ted Kulp<tedkulp@users.sf.net></p>
<p>Version: 1.1</p>
<p>
Change History:<br/>
<strong>Update to version 1.1 from 1.0</strong> <em>2006/07/19</em><br/>
Russ added the means to insert a title, a tabindex and a class for the anchor link. Westis added accesskey and changed parameter names to not include 'anchorlink'.<br/>
</hr>
</p>';
$lang['admin']['help_function_anchor'] = ' <h3>Para que serve?</h3>
<p>Makes a proper anchor link.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{anchor anchor='here' text='Scroll Down'}</code></p>
<h3>What parameters does it take?</h3>
<p>
<ul>
<li><tt>anchor</tt> - Where we are linking to. The part after the #.</li>
<li><tt>text</tt> - The text to display in the link.</li>
<li><tt>class</tt> - The class for the link, if any</li>
<li><tt>title</tt> - The title to display for the link, if any.</li>
<li><tt>tabindex</tt> - The numeric tabindex for the link, if any.</li>
<li><tt>accesskey</tt> - The accesskey for the link, if any.</li>
<li><em>(optional)</em> <tt>onlyhref</tt> - Only display the href and not the entire link. No other options will work</li>
</ul>
</p>';
$lang['admin']['help_function_site_mapper'] = '<h3>Para que serve?</h3>
<p>This is actually just a wrapper tag for the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module</a> to make the tag syntax easier, and to simplify creating a sitemap.</p>
<h3>How do I use it?</h3>
<p>Just put <code>{site_mapper}</code> on a page or in a template. For help about the Menu Manager module, what parameters it takes etc., please refer to the <a href="listmodules.php?action=showmodulehelp&module=MenuManager">Menu Manager module help</a>.</p>
<p>By default, if no template option is specified the minimal_menu.tpl file will be used.</p>
<p>Any parameters used in the tag are available in the menumanager template as <code>{$menuparams.paramname}</code></p>';
$lang['admin']['help_function_redirect_url'] = '<h3>Para que serve?</h3>
<p>This plugin allows you to easily redirect to a specified url. It is handy inside of smarty conditional logic (for example, redirect to a splash page if the site is not live yet).</p>
<h3>How do I use it?</h3>
<p>Simply insert this tage into your page or template: <code>{redirect_url urle='www.cmsmadesimple.org'}</code></p>';
$lang['admin']['help_function_redirect_page'] = '<h3>Para que serve?</h3>
<p>This plugin allows you to easily redirect to another page. It is handy inside of smarty conditional logic (for example, redirect to a login page if the user is not logged in.)</p>
<h3>How do I use it?</h3>
<p>Simply insert this tage into your page or template: <code>{redirect_page page='some-page-alias'}</code></p>';
$lang['admin']['of'] = 'de';
$lang['admin']['first'] = 'Primeiro';
$lang['admin']['last'] = 'Último';
$lang['admin']['adminspecialgroup'] = 'Aviso: Os membros deste grupo têm por defeito todas as permissões';
$lang['admin']['disablesafemodewarning'] = 'Desactivar aviso admin em modo seguro';
$lang['admin']['allowparamcheckwarnings'] = 'Durante a verificação de parâmetros, autorizar a criação de mensagens de aviso';
$lang['admin']['date_format_string'] = 'String Formato de Data ';
$lang['admin']['date_format_string_help'] = '<em>strftime</em> formato da data em string. Tente pesquisar por 'strftime'';
$lang['admin']['last_modified_at'] = 'Última actualização';
$lang['admin']['last_modified_by'] = 'Última alteração por';
$lang['admin']['read'] = 'Ler';
$lang['admin']['write'] = 'Escrever';
$lang['admin']['execute'] = 'Executar';
$lang['admin']['group'] = 'Grupo';
$lang['admin']['other'] = 'Outro';
$lang['admin']['event_desc_moduleupgraded'] = 'Enviado após a actualização de um módulo';
$lang['admin']['event_help_moduleupgraded'] = '<p>Sent after a module is upgraded.</p>';
$lang['admin']['event_desc_moduleinstalled'] = 'Enviado após a instalação de um módulo';
$lang['admin']['event_help_moduleinstalled'] = '<p>Sent after a module is installed.</p>';
$lang['admin']['event_desc_moduleuninstalled'] = 'Enviado após a remoção de um módulo';
$lang['admin']['event_help_moduleuninstalled'] = '<p>Sent after a module is uninstalled.</p>';
$lang['admin']['event_desc_edituserdefinedtagpost'] = 'Enviado após a actualização de um "user defined tag"';
$lang['admin']['event_help_edituserdefinedtagpost'] = '<p>Sent after a user defined tag is updated.</p>';
$lang['admin']['event_desc_edituserdefinedtagpre'] = 'Enviado antes de uma actualização a um "user defined tag"';
$lang['admin']['event_help_edituserdefinedtagpre'] = '<p>Sent prior to a user defined tag update.</p>';
$lang['admin']['event_desc_deleteuserdefinedtagpre'] = 'Enviado antes de a remoção de um "user defined tag"';
$lang['admin']['event_help_deleteuserdefinedtagpre'] = '<p>Sent prior to deleting a user defined tag.</p>';
$lang['admin']['event_desc_deleteuserdefinedtagpost'] = 'Enviado após a remoção de um "user defined tag"';
$lang['admin']['event_help_deleteuserdefinedtagpost'] = '<p>Sent after a user defined tag is deleted.</p>';
$lang['admin']['event_desc_adduserdefinedtagpost'] = 'Enviado após a inserção de um "user defined tag"';
$lang['admin']['event_help_adduserdefinedtagpre'] = '<p>Sent after a user defined tag is inserted.</p>';
$lang['admin']['event_desc_adduserdefinedtagpre'] = 'Enviado antes da inserção de um "user defined tag"';
$lang['admin']['event_help_adduserdefinedtagpost'] = '<p>Sent prior to a user defined tag insert.</p>';
$lang['admin']['global_umask'] = 'Mascara de Criação de Ficheiros (umask)';
$lang['admin']['errorcantcreatefile'] = 'Não foi possível criar um ficheiro (problema de permissões?)';
$lang['admin']['errormoduleversionincompatible'] = 'Módulo incompatível com esta versão do CMS';
$lang['admin']['errormodulenotloaded'] = 'Erro interno, o módulo não foi instanciado';
$lang['admin']['errormodulenotfound'] = 'Erro interno, não foi possível encontrar a instância do módulo';
$lang['admin']['errorinstallfailed'] = 'A instalação do módulo falhou';
$lang['admin']['errormodulewontload'] = 'Problema instanciando um módulo disponível';
$lang['admin']['frontendlang'] = 'Língua Padrão no "site"';
$lang['admin']['info_edituser_password'] = 'Altere este campo para alterar a password do utilizador';
$lang['admin']['info_edituser_passwordagain'] = 'Altere este campo para alterar a password do utilizador';
$lang['admin']['originator'] = 'Originador';
$lang['admin']['module_name'] = 'Nome do Módulo';
$lang['admin']['event_name'] = 'Nome do Evento';
$lang['admin']['event_description'] = 'Descrição do Evento';
$lang['admin']['error_delete_default_parent'] = 'Não pode apagar a página PARENTE de uma página padrão.';
$lang['admin']['jsdisabled'] = 'Desculpe, esta função requer que tenha o Javascript activado';
$lang['admin']['order'] = 'Ordem';
$lang['admin']['reorderpages'] = 'Reordenar páginas';
$lang['admin']['reorder'] = 'Reordenar';
$lang['admin']['page_reordered'] = 'Página reordenada com sucesso.';
$lang['admin']['pages_reordered'] = 'Páginas reordenadas com sucesso';
$lang['admin']['sibling_duplicate_order'] = 'Duas páginas filhas do mesmo PARENTE não podem ter a mesma ordem. As páginas não foram reordenadas.';
$lang['admin']['no_orders_changed'] = 'Escolheu reordenar as páginas, mas não escolheu a ordem delas. As páginas não foram reordenadas.';
$lang['admin']['order_too_small'] = 'Uma página não pode ser zero. As páginas não foram reordenadas.';
$lang['admin']['order_too_large'] = 'Uma ordem de páginas não pode ser superior ao número de página nesse nível. As páginas não foram reordenadas.';
$lang['admin']['user_tag'] = 'Tag do Utilizador';
$lang['admin']['add'] = 'Adicionar';
$lang['admin']['CSS'] = 'CSS - Folha de Estilos';
$lang['admin']['about'] = 'Acerca';
$lang['admin']['action'] = 'Acção';
$lang['admin']['actionstatus'] = 'Acção/Estado';
$lang['admin']['active'] = 'Activo';
$lang['admin']['addcontent'] = 'Adicionar Conteúdo';
$lang['admin']['cantremove'] = 'Não pode remover';
$lang['admin']['changepermissions'] = 'Alterar Permissões';
$lang['admin']['changepermissionsconfirm'] = 'ATENÇÃO\n\nEsta acção irá tentar assegurar que todos os ficheiros que constituem o módulo tenham permissões de escrita pelo servidor web.\nTem a certeza que quer continuar?';
$lang['admin']['contentadded'] = 'O conteúdo foi adicionado à base de dados.';
$lang['admin']['contentupdated'] = 'O conteúdo foi actualizado.';
$lang['admin']['contentdeleted'] = 'O conteúdo foi removido da base de dados.';
$lang['admin']['success'] = 'Sucesso';
$lang['admin']['addcss'] = 'Adicionar Folha de Estilo';
$lang['admin']['addgroup'] = 'Adicionar Novo Grupo';
$lang['admin']['additionaleditors'] = 'Editores Adicionais';
$lang['admin']['addtemplate'] = 'Adicionar Novo Template';
$lang['admin']['adduser'] = 'Adicionar Novo Utilizador';
$lang['admin']['addusertag'] = 'Adicionar "User Defined Tag"';
$lang['admin']['adminaccess'] = 'Acesso de "login" para admin';
$lang['admin']['adminlog'] = 'Log Admin';
$lang['admin']['adminlogcleared'] = 'O Log Admin foi limpo';
$lang['admin']['adminlogempty'] = 'O Log Admin está vazio';
$lang['admin']['adminsystemtitle'] = 'Sistema CMS Admin';
$lang['admin']['adminpaneltitle'] = 'Painel Admin CMS';
$lang['admin']['advanced'] = 'Avançado';
$lang['admin']['aliasalreadyused'] = 'Este Atalho de Página está a ser utilizada por outra página. Altere o "Atalho de Página" nas "Opções" para algo diferente.';
$lang['admin']['aliasmustbelettersandnumbers'] = 'Atalho de página deve ser apenas números e/ou letras';
$lang['admin']['aliasnotaninteger'] = 'Atalho de página não pode ser apenas um número';
$lang['admin']['allpagesmodified'] = 'Todas as páginas foram alteradas!';
$lang['admin']['assignments'] = 'Designar Utilizadores';
$lang['admin']['associationexists'] = 'Esta associação já existe';
$lang['admin']['autoinstallupgrade'] = 'Automaticamente instalar ou actualizar';
$lang['admin']['back'] = 'Voltar ao Menu';
$lang['admin']['backtoplugins'] = 'Voltar à Lista de "Plugins"';
$lang['admin']['cancel'] = 'Cancelar';
$lang['admin']['cantchmodfiles'] = 'Não foi possível alterar as permissões em alguns ficheiros';
$lang['admin']['cantremovefiles'] = 'Problema Removendo Ficheiros (permissões?)';
$lang['admin']['confirmcancel'] = 'Tem a certeza que deseja desistir de todas as suas alterações? Clique em Ok para continuar ou Cancelar para voltar.';
$lang['admin']['canceldescription'] = 'Desistir das Alterações';
$lang['admin']['clearadminlog'] = 'Limpar Log Admin';
$lang['admin']['code'] = 'Código';
$lang['admin']['confirmdefault'] = 'Tem a certeza que quer alterar a página padrão do site?';
$lang['admin']['confirmdeletedir'] = 'Tem a certeza que quer remover esta directória e todo o seu conteúdo?';
$lang['admin']['content'] = 'Conteúdo';
$lang['admin']['contentmanagement'] = 'Gestor de Conteúdo';
$lang['admin']['contenttype'] = 'Tipo de Conteúdo';
$lang['admin']['copy'] = 'Copiar';
$lang['admin']['copytemplate'] = 'Copiar Template';
$lang['admin']['create'] = 'Criar';
$lang['admin']['createnewfolder'] = 'Criar Nova Pasta';
$lang['admin']['cssalreadyused'] = 'Nome de CSS em utilização';
$lang['admin']['cssmanagement'] = 'Gestor de CSS';
$lang['admin']['currentassociations'] = 'Associações Actuais ';
$lang['admin']['currentdirectory'] = 'Directoria Actual';
$lang['admin']['currentgroups'] = 'Grupos Actuais';
$lang['admin']['currentpages'] = 'Páginas Actuais';
$lang['admin']['currenttemplates'] = 'Templates Actuais';
$lang['admin']['currentusers'] = 'Utilizadores Actuais';
$lang['admin']['custom404'] = 'Mensagem 404 de Erro Personalizada';
$lang['admin']['database'] = 'Base de Dados';
$lang['admin']['databaseprefix'] = 'Prefixo de Base de Dados';
$lang['admin']['databasetype'] = 'Tipo de Base de Dados';
$lang['admin']['date'] = 'Data';
$lang['admin']['default'] = 'Defeito';
$lang['admin']['delete'] = 'Remover';
$lang['admin']['deleteconfirm'] = 'Tem a certeza que quer remover?';
$lang['admin']['deleteassociationconfirm'] = 'Tem certeza de que deseja apagar a associação para - %s - ?';
$lang['admin']['deletecss'] = 'Remover CSS';
$lang['admin']['dependencies'] = 'Dependências';
$lang['admin']['description'] = 'Descrição';
$lang['admin']['directoryexists'] = 'Esta directoria já existe';
$lang['admin']['down'] = 'Off';
$lang['admin']['edit'] = 'Editar';
$lang['admin']['editconfiguration'] = 'Editar Configuração';
$lang['admin']['editcontent'] = 'Editar Conteúdo';
$lang['admin']['editcss'] = 'Editar Folha de Estilo';
$lang['admin']['editcsssuccess'] = 'A folha de estilo foi actualizada';
$lang['admin']['editgroup'] = 'Editar Grupo';
$lang['admin']['editpage'] = 'Editar Página';
$lang['admin']['edittemplate'] = 'Editar Template';
$lang['admin']['edittemplatesuccess'] = 'Template Actualizado';
$lang['admin']['edituser'] = 'Editar Utilizador';
$lang['admin']['editusertag'] = 'Editar "User Defined Tag"';
$lang['admin']['usertagadded'] = 'O "User Defined Tag" foi adicionado.';
$lang['admin']['usertagupdated'] = 'O "User Defined Tag" foi actualizado.';
$lang['admin']['usertagdeleted'] = 'O "User Defined Tag" foi removido.';
$lang['admin']['email'] = 'Endereço Email';
$lang['admin']['errorattempteddowngrade'] = 'A instalação deste módulo resultaria num "downgrade". Operação abortada';
$lang['admin']['errorchildcontent'] = 'O Conteúdo ainda contem páginas filhas. Por favor remova-as primeiro.';
$lang['admin']['errorcopyingtemplate'] = 'Erro ao Copiar Template';
$lang['admin']['errorcouldnotparsexml'] = 'Erro no ficheiro XML. Por favor certifique-se que está a "carregar" um ficheiro .xml e não um .tar.gz ou zip.';
$lang['admin']['errorcreatingassociation'] = 'Erro Criando Associação';
$lang['admin']['errorcssinuse'] = 'Esta Folha de Estilo ainda está a ser utilizada por templates ou páginas. Por favor remova estas associações primeiro.';
$lang['admin']['errordefaultpage'] = 'Não é possível remover a actual página defeito. Por favor seleccione uma diferente primeiro.';
$lang['admin']['errordeletingassociation'] = 'Erro removendo associação';
$lang['admin']['errordeletingcss'] = 'Erro removendo css';
$lang['admin']['errordeletingdirectory'] = 'Não foi possível remover a directoria. Problema de permissões?';
$lang['admin']['errordeletingfile'] = 'Não foi possível remover o ficheiros. Problema de permissões?';
$lang['admin']['errordirectorynotwritable'] = 'Não tem permissões para escrever na directoria. Isto pode também ter sido causado devido as permissões do ficheiro. Também é possível o modo seguro estar activado.';
$lang['admin']['errordtdmismatch'] = 'Versão DTD inexistente ou incompatível no ficheiro XML.';
$lang['admin']['errorgettingcssname'] = 'Erro lendo nome da Folha de Estilo';
$lang['admin']['errorgettingtemplatename'] = 'Erro lendo nome do template';
$lang['admin']['errorincompletexml'] = 'Ficheiro XML está incompleto ou inválido';
$lang['admin']['uploadxmlfile'] = 'Instalar módulo via ficheiro XML';
$lang['admin']['cachenotwritable'] = 'Não tem permissões de escrita na directoria Cache. Sendo que não conseguirá limpar a cache. Por favor dê permissões read/write/execute à directoria tmp/cache (chmod 777). Poderá também ter de desactivar o modo seguro.';
$lang['admin']['modulesnotwritable'] = 'Não tem permissões de escrita na directoria dos módulos. Se deseja instalar módulos ao "carregar" ficheiros XML terá que dar permissões de read/write/execute à directoria (chmod 777). Poderá também ser possível que o modo seguro esteja activado.';
$lang['admin']['noxmlfileuploaded'] = 'Não foi enviado nenhum ficheiro. Para instalar um modulo via XML terá que primeiro escolher o módulo (ficheiro .xml) no seu computador.';
$lang['admin']['errorinsertingcss'] = 'Erro a inserir Folha de Estilo';
$lang['admin']['errorinsertinggroup'] = 'Erro a inserir grupo';
$lang['admin']['errorinsertingtag'] = 'Erro a inserir "user tag"';
$lang['admin']['errorinsertingtemplate'] = 'Erro a inserir template';
$lang['admin']['errorinsertinguser'] = 'Erro a inserir utilizador';
$lang['admin']['errornofilesexported'] = 'Erro a exportar para ficheiro xml';
$lang['admin']['errorretrievingcss'] = 'Erro na busca da Folha de Estilo';
$lang['admin']['errorretrievingtemplate'] = 'Erro na busca do template';
$lang['admin']['errortemplateinuse'] = 'Este template ainda está a ser utilizado numa outra página. Por favor remova-o primeiro.';
$lang['admin']['errorupdatingcss'] = 'Erro na actualização da Folha de Estilo';
$lang['admin']['errorupdatinggroup'] = 'Erro na actualização do grupo';
$lang['admin']['errorupdatingpages'] = 'Erro na actualização das páginas';
$lang['admin']['errorupdatingtemplate'] = 'Erro na actualização do template';
$lang['admin']['errorupdatinguser'] = 'Erro na actualização do utilizador';
$lang['admin']['errorupdatingusertag'] = 'Erro na actualização do "user tag"';
$lang['admin']['erroruserinuse'] = 'Ainda pertencem páginas de conteúdo a este utilizador. Por favor altere o proprietário antes de as remover.';
$lang['admin']['eventhandlers'] = 'Eventos';
$lang['admin']['editeventhandler'] = 'Editar "Event Handler"';
$lang['admin']['eventhandlerdescription'] = 'Associacar "user tags" com eventos';
$lang['admin']['export'] = 'Exportar';
$lang['admin']['event'] = 'Evento';
$lang['admin']['false'] = 'Falso';
$lang['admin']['settrue'] = 'Definir como Verdadeiro';
$lang['admin']['filecreatedirnodoubledot'] = 'Directoria não pode conter '..'.';
$lang['admin']['filecreatedirnoname'] = 'Não é possível criar uma directoria sem nome.';
$lang['admin']['filecreatedirnoslash'] = 'Directoria não pode conter '/' or '\'.';
$lang['admin']['filemanagement'] = 'Gestor de Ficheiros';
$lang['admin']['filename'] = 'Nome de Ficheiro';
$lang['admin']['filenotuploaded'] = 'Não foi possível "upload" o ficheiro. Isto poderá ser um problema de permissões ou o modo seguro poderá estar activado.';
$lang['admin']['filesize'] = 'Tamanho de Ficheiro';
$lang['admin']['firstname'] = 'Primeiro Nome';
$lang['admin']['groupmanagement'] = 'Gestor de Grupos';
$lang['admin']['grouppermissions'] = 'Permissões de Grupos';
$lang['admin']['handler'] = 'Manipular (user defined tag)';
$lang['admin']['headtags'] = 'Tags de Cabeçalho';
$lang['admin']['help'] = 'Ajuda';
$lang['admin']['new_window'] = 'nova janela';
$lang['admin']['helpwithsection'] = '%s Ajuda';
$lang['admin']['helpaddtemplate'] = '<p>Um template é o que controla o aspecto e layout do seu site.</p><p>Crie o layout aqui e adicione os seus CSSs na secção Stylesheet para controlar o aspecto dos vários elementos.</p>';
$lang['admin']['helplisttemplate'] = '<p>Esta página permite-lhe editar, apagar e criar templates.</p><p>Para criar um novo template clique no botão <u>Adicionar Novo Template</u>.</p><p>Se deseja que este template seja utilizado em todas as páginas de conteúdo clique no link<u>Fixar Todo o Conteúdo</u>.</p><p>Se deseja duplicar um template clique no ícone <u>Copiar</u> de seguida introduza o nome do novo template.</p>';
$lang['admin']['home'] = 'Início';
$lang['admin']['homepage'] = 'Página principal';
$lang['admin']['hostname'] = 'Host-Name';
$lang['admin']['idnotvalid'] = 'O ID fornecido não é válido';
$lang['admin']['imagemanagement'] = 'Gestor de Imagens';
$lang['admin']['informationmissing'] = 'Tem informação em falta';
$lang['admin']['install'] = 'Instalar';
$lang['admin']['invalidcode'] = 'Código fornecido inválido.';
$lang['admin']['illegalcharacters'] = 'Caracteres Inválidos nos Campos %s.';
$lang['admin']['invalidcode_brace_missing'] = 'Número impar de "braces {}"';
$lang['admin']['invalidtemplate'] = 'O template não é válido';
$lang['admin']['itemid'] = 'ID Item';
$lang['admin']['itemname'] = 'Nome Item';
$lang['admin']['language'] = 'Língua';
$lang['admin']['lastname'] = 'Apelido';
$lang['admin']['logout'] = 'Sair';
$lang['admin']['loginprompt'] = 'Introduza credenciais de um utilizador válido para aceder ao painel administrativo.';
$lang['admin']['logintitle'] = 'Login Administrativo do CMS';
$lang['admin']['menutext'] = 'Menu Texto';
$lang['admin']['missingparams'] = 'Faltam alguns parâmetro ou estão inválidos';
$lang['admin']['modifygroupassignments'] = 'Alterar Atribuições do Grupo';
$lang['admin']['moduleabout'] = 'Acerca do módulo %s';
$lang['admin']['modulehelp'] = 'Ajuda do módulo %s';
$lang['admin']['msg_defaultcontent'] = 'O código aqui adicionado irá aparecer como padrão no conteúdo de todas as novas páginas geradas';
$lang['admin']['msg_defaultmetadata'] = 'O código aqui adicionado irá aparecer na secção MetaData do conteúdo de todas as novas páginas geradas';
$lang['admin']['wikihelp'] = 'Ajuda Comunitária';
$lang['admin']['moduleinstalled'] = 'Módulo já instalado';
$lang['admin']['moduleinterface'] = 'Interface %s';
$lang['admin']['modules'] = 'Módulos';
$lang['admin']['move'] = 'Mover';
$lang['admin']['name'] = 'Nome';
$lang['admin']['needpermissionto'] = 'Necessita da permissão '%s' para executar essa função';
$lang['admin']['needupgrade'] = 'Necessitar Actualização';
$lang['admin']['newtemplatename'] = 'Nome de Template Novo';
$lang['admin']['next'] = 'Seguinte';
$lang['admin']['noaccessto'] = 'Sem Acesso a %s';
$lang['admin']['nocss'] = 'Sem Folha de Estilo';
$lang['admin']['noentries'] = 'Sem Entradas';
$lang['admin']['nofieldgiven'] = 'Não foi dado %s !';
$lang['admin']['nofiles'] = 'Nenhuns Ficheiros';
$lang['admin']['nopasswordmatch'] = 'As Palavras Chave não condizem';
$lang['admin']['norealdirectory'] = 'Nenhuma directoria real foi dada';
$lang['admin']['norealfile'] = 'Nenhum ficheiro real foi fornecido';
$lang['admin']['notinstalled'] = 'Não Instalado';
$lang['admin']['overwritemodule'] = 'Repor módulos existentes';
$lang['admin']['owner'] = 'Proprietário';
$lang['admin']['pagealias'] = 'Atalho da Página';
$lang['admin']['pagedefaults'] = 'Página Padrão';
$lang['admin']['pagedefaultsdescription'] = 'Definir os valores padrão para novas páginas';
$lang['admin']['parent'] = 'Parente';
$lang['admin']['password'] = 'Palavra Passe';
$lang['admin']['passwordagain'] = 'Palavra Passe (de novo)';
$lang['admin']['permission'] = 'Permissão';
$lang['admin']['permissions'] = 'Permissões';
$lang['admin']['permissionschanged'] = 'As Permissões foram actualizadas.';
$lang['admin']['pluginabout'] = 'Acerca do tag %s';
$lang['admin']['pluginhelp'] = 'Ajuda para o tag %s';
$lang['admin']['pluginmanagement'] = 'Gestor de "plugins"';
$lang['admin']['prefsupdated'] = 'Preferências foram actualizadas.';
$lang['admin']['preview'] = 'Pre-visualizar';
$lang['admin']['previewdescription'] = 'Pre-visualizar alterações';
$lang['admin']['previous'] = 'Anterior';
$lang['admin']['remove'] = 'Remover';
$lang['admin']['removeconfirm'] = 'Esta acções irá permanentemente remover todos os ficheiro que constituem este módulo.\nTem a certeza que deseja continuar?';
$lang['admin']['removecssassociation'] = 'Remover Associação Folha de Estilo';
$lang['admin']['saveconfig'] = 'Guardar Configuração';
$lang['admin']['send'] = 'Enviar';
$lang['admin']['setallcontent'] = 'Fixar Todas as Páginas';
$lang['admin']['setallcontentconfirm'] = 'Tem a certeza que deseja fixar todas as páginas para utilizar este template?';
$lang['admin']['showinmenu'] = 'Exibir no Menu';
$lang['admin']['showsite'] = 'Visualizar Site';
$lang['admin']['sitedownmessage'] = 'Mensagem Site em Baixo';
$lang['admin']['siteprefs'] = 'Definições Globais';
$lang['admin']['status'] = 'Estado';
$lang['admin']['stylesheet'] = 'Folha de Estilo';
$lang['admin']['submit'] = 'Submeter';
$lang['admin']['submitdescription'] = 'Guardar Alterações';
$lang['admin']['tags'] = 'Tag's';
$lang['admin']['template'] = 'Template ';
$lang['admin']['templateexists'] = 'Nome de Template já existe';
$lang['admin']['templatemanagement'] = 'Gestor de Templates';
$lang['admin']['title'] = 'Título';
$lang['admin']['tools'] = 'Ferramentas';
$lang['admin']['true'] = 'Verdadeiro';
$lang['admin']['setfalse'] = 'Definir como Falso';
$lang['admin']['type'] = 'Tipo';
$lang['admin']['typenotvalid'] = 'Tipo não é válido';
$lang['admin']['uninstall'] = 'Desinstalar';
$lang['admin']['uninstallconfirm'] = 'Tem a certeza que deseja desinstalar este módulo? Nome:';
$lang['admin']['up'] = 'Subir';
$lang['admin']['upgrade'] = 'Actualizar';
$lang['admin']['upgradeconfirm'] = 'Tem a certeza que pretende actualizar?';
$lang['admin']['uploadfile'] = 'Upload Ficheiro';
$lang['admin']['url'] = 'URL ';
$lang['admin']['useadvancedcss'] = 'Utilizar Gestor de Folhas de Estilo Avançado';
$lang['admin']['user'] = 'Utilizador';
$lang['admin']['userdefinedtags'] = 'Tags Personalizadas';
$lang['admin']['usermanagement'] = 'Gestor de Utilizadores';
$lang['admin']['username'] = 'Nome de utilizador';
$lang['admin']['usernameincorrect'] = 'Nome de utilizador ou palavra passe incorrectas';
$lang['admin']['userprefs'] = 'Preferências de Utilizador';
$lang['admin']['usersassignedtogroup'] = 'Utiliadores Atribuidos ao Grupo %s';
$lang['admin']['usertagexists'] = 'Um "tag" com este nome já existe. Por favor escolha outro.';
$lang['admin']['usewysiwyg'] = 'Utilizar editor WYSIWYG para conteúdo';
$lang['admin']['version'] = 'Versão';
$lang['admin']['view'] = 'Vista';
$lang['admin']['welcomemsg'] = 'Bem vindo %s';
$lang['admin']['directoryabove'] = 'directoria acima de nível actual';
$lang['admin']['nodefault'] = 'Nenhum Padrão Selecionado';
$lang['admin']['blobexists'] = 'Nome de Bloco de Conteúdo Global já existe';
$lang['admin']['blobmanagement'] = 'Gestor de Bloco de Conteúdo Global';
$lang['admin']['errorinsertingblob'] = 'Houve um erro introduzindo um Bolco de Conteúdo Global';
$lang['admin']['addhtmlblob'] = 'Adicionar Bloco de Conteúdo Global';
$lang['admin']['edithtmlblob'] = 'Editar Bolco de Conteúdo Global';
$lang['admin']['edithtmlblobsuccess'] = 'Bolco de Conteúdo Global foi Actualizado';
$lang['admin']['tagtousegcb'] = 'Tag para usar neste Bloco';
$lang['admin']['gcb_wysiwyg'] = 'Activar BCG WYSIWYG';
$lang['admin']['gcb_wysiwyg_help'] = 'Activar editor WYSIWYG para edição de Blocos de Conteúdo Global';
$lang['admin']['filemanager'] = 'Gestor de Ficheiros';
$lang['admin']['imagemanager'] = 'Gestor de Imagens';
$lang['admin']['encoding'] = 'Codificação';
$lang['admin']['clearcache'] = 'Limpar Cache';
$lang['admin']['clear'] = 'Limpa';
$lang['admin']['cachecleared'] = 'Cache Limpa';
$lang['admin']['apply'] = 'Aplicar';
$lang['admin']['applydescription'] = 'Guardar alterações e continuar a editar';
$lang['admin']['none'] = 'nenhum';
$lang['admin']['wysiwygtouse'] = 'Selecionar WYSIWYG a utilizar';
$lang['admin']['syntaxhighlightertouse'] = 'Seleccionar syntax highlighter para usar';
$lang['admin']['hasdependents'] = 'Tem Dependentes';
$lang['admin']['missingdependency'] = 'Faltam Dependências';
$lang['admin']['minimumversion'] = 'Versão Mínima';
$lang['admin']['minimumversionrequired'] = 'Versão Mínima do CMSMS Requerida';
$lang['admin']['maximumversion'] = 'Versão Máxima';
$lang['admin']['maximumversionsupported'] = 'Versão Máxima do CMSMS Suportada';
$lang['admin']['depsformodule'] = 'Dependência do módulo %s';
$lang['admin']['installed'] = 'Instalado';
$lang['admin']['author'] = 'Autor';
$lang['admin']['changehistory'] = 'Alterar Historia';
$lang['admin']['moduleerrormessage'] = 'Mensagem de Erro do Módulo %s';
$lang['admin']['moduleupgradeerror'] = 'Houve um erro ao actualizar o módulo.';
$lang['admin']['moduleinstallmessage'] = 'Mensagem de instalação do módulo %s';
$lang['admin']['moduleuninstallmessage'] = 'Mensagem de desinstalação do módulo %s';
$lang['admin']['admintheme'] = 'Tema de Administração';
$lang['admin']['addstylesheet'] = 'Adicionar Folha de Estilo';
$lang['admin']['editstylesheet'] = 'Editar Folha de Estilo';
$lang['admin']['addcssassociation'] = 'Adicionar Associção Folha de Estilo';
$lang['admin']['attachstylesheet'] = 'Anexar Esta Folha de Estilo';
$lang['admin']['attachtemplate'] = 'Anexar a este Template';
$lang['admin']['main'] = 'Principal';
$lang['admin']['pages'] = 'Páginas';
$lang['admin']['page'] = 'Página';
$lang['admin']['files'] = 'Ficheiros';
$lang['admin']['layout'] = 'Disposição';
$lang['admin']['usersgroups'] = 'Utilizadores & Grupos';
$lang['admin']['extensions'] = 'Extensões';
$lang['admin']['preferences'] = 'Preferência';
$lang['admin']['admin'] = 'Admin Site';
$lang['admin']['viewsite'] = 'Visualizar Site';
$lang['admin']['templatecss'] = 'Atribuir Templates ao Stylesheet';
$lang['admin']['plugins'] = 'Plugins - Adons';
$lang['admin']['movecontent'] = 'Mover Páginas';
$lang['admin']['module'] = 'Módulo';
$lang['admin']['usertags'] = 'Tags Personalizadas';
$lang['admin']['htmlblobs'] = 'Bloco de Conteúdo Global';
$lang['admin']['adminhome'] = 'Página Principal Administração';
$lang['admin']['liststylesheets'] = 'Folhas de Estilo';
$lang['admin']['preferencesdescription'] = 'Aqui é onde configura várias preferências globais.';
$lang['admin']['adminlogdescription'] = 'Mostra um log de quem fez o que na administração';
$lang['admin']['mainmenu'] = 'Menu Principal';
$lang['admin']['users'] = 'Utilizadores';
$lang['admin']['usersdescription'] = 'Aqui é onde pode gerir os utilizadores';
$lang['admin']['groups'] = 'Grupos';
$lang['admin']['groupsdescription'] = 'Aqui é onde pode gerir os grupos.';
$lang['admin']['groupassignments'] = 'Associações de Grupo';
$lang['admin']['groupassignmentdescription'] = 'Aqui é onde pode associar utilizadores aos grupos';
$lang['admin']['groupperms'] = 'Permissões de Grupo';
$lang['admin']['grouppermsdescription'] = 'Definir permissões e níveis de acesso dos grupos';
$lang['admin']['pagesdescription'] = 'Nesta secção, as páginas e outros conteúdos são geridos.';
$lang['admin']['htmlblobdescription'] = 'Blocos de Conteúdo Global são bocado de conteúdos que poderá adicionar na páginas ou templates.';
$lang['admin']['templates'] = 'Templates ';
$lang['admin']['templatesdescription'] = 'Isto é onde os templates são adicionados ou editados. Os Templates definem o aspecto do site.';
$lang['admin']['stylesheets'] = 'Folhas de Estilo';
$lang['admin']['stylesheetsdescription'] = 'O gestor de Folhas de Estilo é um modo avançado de gestão de cascading Stylesheets (CSS) separadamente dos templates.';
$lang['admin']['filemanagerdescription'] = 'Upload e gerir ficheiros.';
$lang['admin']['imagemanagerdescription'] = 'Upload/editar e remover imagens.';
$lang['admin']['moduledescription'] = 'Os módulos complementam o CMS Made Simple de forma a disponibilizar funcionalidades personalizadas.';
$lang['admin']['tagdescription'] = 'Tags são pequenas funcionalidades que podem ser adicionadas ao seu conteúdo e/ou templates.';
$lang['admin']['usertagdescription'] = 'Tags que poderá criar ao alterar para executar tarefas especificas directamente do seu navegador.';
$lang['admin']['installdirwarning'] = '<strong>Aviso: </strong> A directoria de instalação ainda existe. Por favor remova-a por completo.';
$lang['admin']['subitems'] = 'Subitens';
$lang['admin']['extensionsdescription'] = 'Módulos, tags e outros.';
$lang['admin']['usersgroupsdescription'] = 'Itens relacionados com Utilizadores e Grupos.';
$lang['admin']['layoutdescription'] = 'Opções de layout do site.';
$lang['admin']['admindescription'] = 'Funções do Site Administrativo.';
$lang['admin']['contentdescription'] = 'Nesta secção adicionam-se e editam-se conteúdo. ';
$lang['admin']['enablecustom404'] = 'Activar Mensagens 404 Personalizadas';
$lang['admin']['enablesitedown'] = 'Activar Mensagem Site Off';
$lang['admin']['bookmarks'] = 'Atalhos';
$lang['admin']['user_created'] = 'Atalhos Personalizados';
$lang['admin']['forums'] = 'Fóruns';
$lang['admin']['wiki'] = 'Wiki ';
$lang['admin']['irc'] = 'IRC ';
$lang['admin']['module_help'] = 'Ajuda Módulo';
$lang['admin']['managebookmarks'] = 'Gerir Atalhos';
$lang['admin']['editbookmark'] = 'Editar Atalhos';
$lang['admin']['addbookmark'] = 'Adicionar Atalho';
$lang['admin']['recentpages'] = 'Páginas Recentes';
$lang['admin']['groupname'] = 'Nome do Grupo';
$lang['admin']['selectgroup'] = 'Selecionar Grupo';
$lang['admin']['updateperm'] = 'Actualizar Permissões';
$lang['admin']['admincallout'] = 'Atalhos Administração';
$lang['admin']['showbookmarks'] = 'Mostrar Atalhos Admin';
$lang['admin']['hide_help_links'] = 'Esconder link de ajuda';
$lang['admin']['hide_help_links_help'] = 'Selecione para desactivar o wiki e links de ajuda dos módulos.';
$lang['admin']['showrecent'] = 'Mostrar Página Recentemente Utilizadas';
$lang['admin']['attachtotemplate'] = 'Anexar Folha de Estilo ao Template';
$lang['admin']['attachstylesheets'] = 'Anexar Folha de Estilo';
$lang['admin']['indent'] = 'Indentar a listagem de páginas para dar relevo à hierarquia';
$lang['admin']['adminindent'] = 'Visualização de Conteúdo';
$lang['admin']['contract'] = 'Fechar Secção';
$lang['admin']['expand'] = 'Abrir Secção';
$lang['admin']['expandall'] = 'Abrir Todas as Secções';
$lang['admin']['contractall'] = 'Fechar Todas as Secções';
$lang['admin']['menu_bookmarks'] = '[+] ';
$lang['admin']['globalconfig'] = 'Definições Globais';
$lang['admin']['adminpaging'] = 'Número de Itens de Conteúdo a mostrar por página na Listagem de Páginas';
$lang['admin']['nopaging'] = 'Mostrar Todos os Itens';
$lang['admin']['myprefs'] = 'Minhas Preferências';
$lang['admin']['myprefsdescription'] = 'Aqui é onde pode customizar a área administrativa para funcionar da forma que quer';
$lang['admin']['myaccount'] = 'Minha Conta';
$lang['admin']['myaccountdescription'] = 'Aqui é onde pode actualizar os detalhes da sua conta pessoal.';
$lang['admin']['adminprefs'] = 'Preferências de Utilizador';
$lang['admin']['adminprefsdescription'] = 'Aqui é onde pode definir preferências especificas para a administração do site.';
$lang['admin']['managebookmarksdescription'] = 'Aqui é onde pode gerir os atalhos da administração.';
$lang['admin']['options'] = 'Opções';
$lang['admin']['langparam'] = 'Parâmetro utilizado para especificar que língua utilizar no site. Nem todos os módulos suportam ou necessitam.';
$lang['admin']['parameters'] = 'Parâmetros';
$lang['admin']['mediatype'] = 'Tipo de Media';
$lang['admin']['mediatype_'] = 'Nenhum foi definido : irá afectar tudo';
$lang['admin']['mediatype_all'] = 'todos : Ajustável para todos os dispositivos.';
$lang['admin']['mediatype_aural'] = 'oral : Intencionado para sintetizadores de fala.';
$lang['admin']['mediatype_braille'] = 'braille : Intencionado para dispositivos de toque.';
$lang['admin']['mediatype_embossed'] = 'embutido : Intencionado para impressoras de braille.';
$lang['admin']['mediatype_handheld'] = 'handheld : Intencionado para dispositivos de mão';
$lang['admin']['mediatype_print'] = 'impressão: Intencionado para paginação, material opaco e documento visualizados em modo de pré-visualização.';
$lang['admin']['mediatype_projection'] = 'projecção: Intencionado para apresentações projectadas, por exemplo a utilização de projectos ou para impressão em acetatos.';
$lang['admin']['mediatype_screen'] = 'écran: Intencionado primariamente para écrans de computadores com cores.';
$lang['admin']['mediatype_tty'] = 'tty: Intencionado para media utilizando uma grid "fixed-pitch" de caracteres, tais como teletypes e terminais.';
$lang['admin']['mediatype_tv'] = 'tv: Intencionado para dispositivos televisos.';
$lang['admin']['assignmentchanged'] = 'Atribuições de Grupo foram Actualizadas.';
$lang['admin']['stylesheetexists'] = 'A Folha de Estilo Existe';
$lang['admin']['errorcopyingstylesheet'] = 'Error ao Copiar Folha de Estilo';
$lang['admin']['copystylesheet'] = 'Copiar Folha de Estilo';
$lang['admin']['newstylesheetname'] = 'Novo Nome de Folha de Estilo';
$lang['admin']['target'] = 'Alvo';
$lang['admin']['xml'] = 'XML ';
$lang['admin']['xmlmodulerepository'] = 'URL de Repositor de Módulos servidor soap';
$lang['admin']['metadata'] = 'MetaDados';
$lang['admin']['globalmetadata'] = 'MetaDados Global ';
$lang['admin']['titleattribute'] = 'Descrição (atributo título)';
$lang['admin']['tabindex'] = 'Tab Índice';
$lang['admin']['accesskey'] = 'Chave de Acesso';
$lang['admin']['sitedownwarning'] = '<strong>Aviso:</strong> O seu site está a mostrar a mensagem "site em manutenção" . Retire o %s ficheiro para resolver.';
$lang['admin']['deletecontent'] = 'Apagar Conteúdo';
$lang['admin']['deletepages'] = 'Apagar estas páginas?';
$lang['admin']['selectall'] = 'Selecionar Tudo';
$lang['admin']['selecteditems'] = 'Selecionados';
$lang['admin']['inactive'] = 'Inactivo';
$lang['admin']['deletetemplates'] = 'Apagar Templates';
$lang['admin']['templatestodelete'] = 'Este templates serão apagados';
$lang['admin']['wontdeletetemplateinuse'] = 'Este templates estão em uso e não serão apagados';
$lang['admin']['deletetemplate'] = 'Apagar Stylesheets';
$lang['admin']['stylesheetstodelete'] = 'Estas folhas de estilos serão apagadas';
$lang['admin']['sitename'] = 'Nome Site';
$lang['admin']['siteadmin'] = 'Admin Site';
$lang['admin']['images'] = 'Gestor de Imagens';
$lang['admin']['blobs'] = 'Blocos de Conteúdo Global';
$lang['admin']['groupmembers'] = 'Atribuições de Grupo';
$lang['admin']['troubleshooting'] = '(Problemas)';
$lang['admin']['event_desc_loginpost'] = 'Enviado após um login no painel administrativo';
$lang['admin']['event_desc_logoutpost'] = 'Enviado após um logout do painel administrativo';
$lang['admin']['event_desc_adduserpre'] = 'Enviado antes de um novo utilizardor ser criado';
$lang['admin']['event_desc_adduserpost'] = 'Enviado após a criação de um novo utilizador';
$lang['admin']['event_desc_edituserpre'] = 'Enviado antes de as edições ao utilizador terem sido guardadas';
$lang['admin']['event_desc_edituserpost'] = 'Enviado após edições a um utilizador terem sido salvas';
$lang['admin']['event_desc_deleteuserpre'] = 'Enviado antes de um utilizador ser removido do sistema';
$lang['admin']['event_desc_deleteuserpost'] = 'Enviado após a um utilizador ter sido removido do sistema';
$lang['admin']['event_desc_addgrouppre'] = 'Enviado antes de um novo grupo ser criado';
$lang['admin']['event_desc_addgrouppost'] = 'Enviado após um novo grupo ter sido criado';
$lang['admin']['event_desc_changegroupassignpre'] = 'Enviado antes das atribuições de grupo terem sido salvas';
$lang['admin']['event_desc_changegroupassignpost'] = 'Enviado após as atribuições de grupo terem sido salvas';
$lang['admin']['event_desc_editgrouppre'] = 'Enviado antes das edições ao grupo terem sido salvas';
$lang['admin']['event_desc_editgrouppost'] = 'Enviaso após as edições ao grupo terem sido salvas';
$lang['admin']['event_desc_deletegrouppre'] = 'Enviado antes de um grupo ser removido';
$lang['admin']['event_desc_deletegrouppost'] = 'Enviado após um grupo ter sido removido';
$lang['admin']['event_desc_addstylesheetpre'] = 'Enviado antes de uma nova folha de estilo ter sido criada';
$lang['admin']['event_desc_addstylesheetpost'] = 'Enviado após uma nova folha de estilo ter sido criada';
$lang['admin']['event_desc_editstylesheetpre'] = 'Enviado antes das edições a uma folha de estilo terem sido salvas';
$lang['admin']['event_desc_editstylesheetpost'] = 'Enviado após as edições a uma folha de estilo terem sido salvas';
$lang['admin']['event_desc_deletestylesheetpre'] = 'Enviado antes de um folha de estilo ter sido removido';
$lang['admin']['event_desc_deletestylesheetpost'] = 'Enviado após uma folha de estilo ter sido removido';
$lang['admin']['event_desc_addtemplatepre'] = 'Enviado antes de um novo template ser criado';
$lang['admin']['event_desc_addtemplatepost'] = 'Enviado após um novo template ter sido criado';
$lang['admin']['event_desc_edittemplatepre'] = 'Enviado antes das edições ao template terem sido salvas';
$lang['admin']['event_desc_edittemplatepost'] = 'Enviado após as edições ao template terem sido salvas';
$lang['admin']['event_desc_deletetemplatepre'] = 'Enviado antes de um template ser removido';
$lang['admin']['event_desc_deletetemplatepost'] = 'Enviado após um template ter sido removido';
$lang['admin']['event_desc_templateprecompile'] = 'Enviado antes de um template ser enviado para "smarty" para processamento';
$lang['admin']['event_desc_templatepostcompile'] = 'Enviado após um template ter sido processado por "smarty"';
$lang['admin']['event_desc_addglobalcontentpre'] = 'Enviado antes de um novo bloco de conteúdo global ser criado';
$lang['admin']['event_desc_addglobalcontentpost'] = 'Enviado após um novo bloco de conteúdo global ter sido criado';
$lang['admin']['event_desc_editglobalcontentpre'] = 'Enviado antes de as edições a um bloco de conteúdo global ter sido salvo';
$lang['admin']['event_desc_editglobalcontentpost'] = 'Enviado após as edições a um bloco de conteúdo global ter sido salvo';
$lang['admin']['event_desc_deleteglobalcontentpre'] = 'Enviado antes de um bloco de conteúdo global ter sido removido do sistema';
$lang['admin']['event_desc_deleteglobalcontentpost'] = 'Enviado após um bloco de conteúdo global ter sido removido do sistema';
$lang['admin']['event_desc_globalcontentprecompile'] = 'Enviado antes de um bloco de conteúdo global ter sido enviado para processamento pelo smarty';
$lang['admin']['event_desc_globalcontentpostcompile'] = 'Enviado após um bloco de conteúdo global ter sido processado pelo smart';
$lang['admin']['event_desc_contenteditpre'] = 'Enviado antes de edição ao conteúdo ter sido salvas';
$lang['admin']['event_desc_contenteditpost'] = 'Enviado após edições ao conteúdo ter sido salvas';
$lang['admin']['event_desc_contentdeletepre'] = 'Enviado antes de conteúdo ser removido do sistema';
$lang['admin']['event_desc_contentdeletepost'] = 'Enviado após o conteúdo ser removido do sistema';
$lang['admin']['event_desc_contentstylesheet'] = 'Enviado antes de uma folha de estilo ser enviada para o "Navegador"';
$lang['admin']['event_desc_contentprecompile'] = 'Enviado antes de o conteúdo ter sido enviado para processamento pelo smarty';
$lang['admin']['event_desc_contentpostcompile'] = 'Enviado após o conteúdo ter sido processado pelo smarty';
$lang['admin']['event_desc_contentpostrender'] = 'Enviado antes do conjunto de html ser enviado para o "browser"';
$lang['admin']['event_desc_smartyprecompile'] = 'Enviado antes de qualquer conteúdo destinado para o smarty ser enviado';
$lang['admin']['event_desc_smartypostcompile'] = 'Enviado após qualquer conteúdo destinado ao smarty ter sido processado';
$lang['admin']['event_help_loginpost'] = '<p>Enviado após um utilizador fazer login no painel admin.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_logoutpost'] = '<p>Enviado após um utilizador fazer logout do painel admin.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_adduserpre'] = '<p>Enviado antes de um novo utilizador ser criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_adduserpost'] = '<p>Enviado após um novo utilizador ser criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_edituserpre'] = '<p>Enviado antes das edições ao utilizador serem salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_edituserpost'] = '<p>Enviado após as edições ao utilizador serem salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_deleteuserpre'] = '<p>Enviado antes de um utilizador ser removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_deleteuserpost'] = '<p>Enviado após um utilizador ser removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'user' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_addgrouppre'] = '<p>Enviado antes de um novo grupo ser criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'group' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_addgrouppost'] = '<p>Enviado após um novo grupo ser criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'group' - Referência ao objecto de utilizador afectado.</li>
</ul>
';
$lang['admin']['event_help_changegroupassignpre'] = '<p>Enviado antes das atribuições de grupo serem salvas.</p>
<h4>Parâmetros></h4>
<ul>
<li>'group' - Referência to the group object.</li>
<li>'users' - Conjunto de referências do objecto de utilizador pertencendo ao grupo.</li>
';
$lang['admin']['event_help_changegroupassignpost'] = '<p>Enviado após as atribuições de grupo terem sido salvas.</p>
<h4>Parâmetros></h4>
<ul>
<li>'group' - Referência ao objecto de grupo afectado.</li>
<li>'users' - Conjunto de referências do objecto de utilizador pertencendo ao grupo.</li>
';
$lang['admin']['event_help_editgrouppre'] = '<p>Enviado antes das edições ao grupo serem salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'group' - Referência ao objecto de grupo afectado.</li>
</ul>
';
$lang['admin']['event_help_editgrouppost'] = '<p>Enviado após as edições ao grupo serem salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'group' - Referência ao objecto de grupo afectado.</li>
</ul>
';
$lang['admin']['event_help_deletegrouppre'] = '<p>Enviado antes de um grupo ser removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'group' - Referência ao objecto de grupo afectado.</li>
</ul>
';
$lang['admin']['event_help_deletegrouppost'] = '<p>Enviado após um grupo ter sido removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'group' - Referência ao objecto de grupo afectado.</li>
</ul>
';
$lang['admin']['event_help_addstylesheetpre'] = '<p>Enviado antes de uma folha de estilo ser criada.</p>
<h4>Parâmetros</h4>
<ul>
<li>'stylesheet' - Referência ao objecto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_addstylesheetpost'] = '<p>Enviado após uma folha de estilo ter sido criada.</p>
<h4>Parâmetros</h4>
<ul>
<li>'stylesheet' - Referência ao objecto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_editstylesheetpre'] = '<p>Enviado antes das edições a uma folha de estilo serem salvas</p>
<h4>Parâmetros</h4>
<ul>
<li>'stylesheet' - Referência ao objecto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_editstylesheetpost'] = '<p>Enviado após as edições a uma folha de estilo terem sido salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'stylesheet' - Referência ao objecto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_deletestylesheetpre'] = '<p>Enviado antes de uma folha de estilo ser removida do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'stylesheet' - Referência ao objecto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_deletestylesheetpost'] = '<p>Enviado após uma folha de estilo ser removida do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'stylesheet' - Referência ao objecto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_addtemplatepre'] = '<p>Enviado antes de um novo template ser criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_addtemplatepost'] = '<p>Enviado após um novo template ser criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_edittemplatepre'] = '<p>Enviado antes das edições a um template serem salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_edittemplatepost'] = '<p>Enviado após as edições a um template terem sido salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_deletetemplatepre'] = '<p>Enviado antes de um template ser removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_deletetemplatepost'] = '<p>Enviado após um template ter sido removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_templateprecompile'] = '<p>Enviado antes de um template ser enviado para processamento pelo smarty.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_templatepostcompile'] = '<p>Enviado após um template ter sido processado pelo smarty.</p>
<h4>Parâmetros</h4>
<ul>
<li>'template' - Referência ao objecto de template afectado.</li>
</ul>
';
$lang['admin']['event_help_addglobalcontentpre'] = '<p>Enviado antes de um novo bloco de conteúdo global ser cirado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_addglobalcontentpost'] = '<p>Enviado após um novo bloco de conteúdo global ter sido criado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_editglobalcontentpre'] = '<p>Enviado antes de edições a um bloco de conteúdo global ser saldo.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_editglobalcontentpost'] = '<p>Enviado após edições a um bloco de conteúdo global terem sido salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_deleteglobalcontentpre'] = '<p>Enviado antes de um bloco de conteúdo global ser removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_deleteglobalcontentpost'] = '<p>Enviado após um bloco de conteúdo global ter sido removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_globalcontentprecompile'] = '<p>Enviado antes de um bloco de conteúdo global ser enviado para o smarty para processamento.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_globalcontentpostcompile'] = '<p>Enviado após um bloco de conteúdo global ter sido processado pelo smarty.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto do bloco de conteúdo global afectado.</li>
</ul>
';
$lang['admin']['event_help_contenteditpre'] = '<p>Enviado antes de edições ao conteúdo terem sido salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'global_content' - Referência ao objecto de conteúdo afectado.</li>
</ul>
';
$lang['admin']['event_help_contenteditpost'] = '<p>Enviado após edições ao conteúdos serem salvas.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao objecto de conteúdo afectado.</li>
</ul>
';
$lang['admin']['event_help_contentdeletepre'] = '<p>Enviado antes de conteúdo ser removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao objecto de conteúdo afectado.</li>
</ul>
';
$lang['admin']['event_help_contentdeletepost'] = '<p>Enviado após conteúdo ter sido removido do sistema.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao objecto de conteúdo afectado.</li>
</ul>
';
$lang['admin']['event_help_contentstylesheet'] = '<p>Enviado após a folha de estilo ter sido enviada para o browser.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao texto da folha de estilo afectada.</li>
</ul>
';
$lang['admin']['event_help_contentprecompile'] = '<p>Enviado antes do conteúdo ser enviado para o smarty para processamento.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao texto do conteúdo afectado.</li>
</ul>
';
$lang['admin']['event_help_contentpostcompile'] = '<p>Enviado após o conteúdo ter sido processado pelo smarty.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao texto do conteúdo afectado.</li>
</ul>
';
$lang['admin']['event_help_contentpostrender'] = '<p>Enviado antes do conjunto de html ser enviado para o browser.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao texto html.</li>
</ul>
';
$lang['admin']['event_help_smartyprecompile'] = '<p>Enviado antes de qualquer conteúdo destinado ao smarty ter sido processado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao texto afectado.</li>
</ul>
';
$lang['admin']['event_help_smartypostcompile'] = '<p>Enviado após de qualquer conteúdo destinado ao smarty ter sido processado.</p>
<h4>Parâmetros</h4>
<ul>
<li>'content' - Referência ao texto afectado.</li>
</ul>
';
$lang['admin']['filterbymodule'] = 'Filtrar por Módulo';
$lang['admin']['showall'] = 'Mostrar Todos';
$lang['admin']['core'] = 'Núcleo';
$lang['admin']['defaultpagecontent'] = 'Conteúdo de Página Defeito';
$lang['admin']['file_url'] = 'Link para ficheiro (em vez do URL)';
$lang['admin']['no_file_url'] = 'Nenhum (Utilize URL Acima)';
$lang['admin']['defaultparentpage'] = 'Página Parente por Defeito';
$lang['admin']['error_udt_name_whitespace'] = 'Erro: As Tags Personalizadas não podem ter espaços no seu nome.';
$lang['admin']['warning_safe_mode'] = '<strong><em>AVISO:</em></strong> O modo seguro do PHP está activado. Isto irá causar dificuldades com ficheiros enviados através do navegador, incluindo imagens, temas e módulos. É aconselhado a contactar o administrador do site de forma a desactivar o modo seguro. ';
$lang['admin']['test'] = 'Teste';
$lang['admin']['results'] = 'Resultados';
$lang['admin']['untested'] = 'Não Testado';
$lang['admin']['unknown'] = 'Desconhecido';
$lang['admin']['download'] = 'Download ';
$lang['admin']['frontendwysiwygtouse'] = 'Editor no site (Frontend)';
$lang['admin']['all_groups'] = 'Todos os Grupos';
$lang['admin']['error_type'] = 'Erro Typo';
$lang['admin']['contenttype_errorpage'] = 'Erro Página';
$lang['admin']['errorpagealreadyinuse'] = 'Erro Código Re-útilizado';
$lang['admin']['404description'] = 'Página Não Encontrada';
$lang['admin']['usernotfound'] = 'Utilizador Não Encontradado';
$lang['admin']['passwordchange'] = 'Por favor, forneça a nova password.';
$lang['admin']['recoveryemailsent'] = 'E-mail enviado para o seu Correio Electrónico. Por favor, verifique a sua caixa de correio para mais instruções.';
$lang['admin']['errorsendingemail'] = 'Ocorreu um erro ao enviar o e-mail. Contacte o seu administrador.';
$lang['admin']['passwordchangedlogin'] = 'Palavra Passe foi alterda. Por favor, faça o login usando as novas credenciais.';
$lang['admin']['nopasswordforrecovery'] = 'Não foi definido nenhum endereço de E-mail para este utilizador. A recuperação da Palavra Passe não foi possível. Por Favor entre em contacto com o administrador.';
$lang['admin']['lostpw'] = 'Esqueceu-se da Palavra Passe?';
$lang['admin']['lostpwemailsubject'] = '[%s] Recuperar Palavra Passe';
$lang['admin']['lostpwemail'] = 'Está a receber este E-mail porque um pedido foi foi solicitado relativamente ao site (%s) com a senha associada a esta conta de utilizador (%s). Se quiser redefinir a senha para esta conta bastará clicar no link abaixo ou cole-o no campo URL no seu navegador preferido:
%s
Se achar que está incorrecto ou solicitado por engano, simplesmente ignore este E-mail e nada mudará.';
$lang['admin']['utma'] = '156861353.1692242678.1290270051.1292088396.1292091587.21';
$lang['admin']['utmz'] = '156861353.1291342180.16.12.utmcsr=forum.cmsmadesimple.org|utmccn=(referral)|utmcmd=referral|utmcct=/index.php/topic,19099.0.html';
$lang['admin']['qca'] = 'P0-739742218-1290270051152';
$lang['admin']['utmc'] = '156861353';
$lang['admin']['utmb'] = '156861353.1.10.1292091587';
?>