File: D:/web/itpartnership.net (cms)/modules/MenuManager/lang/ext/pt_PT.php
<?php
$lang['help_childrenof'] = 'Esta opção tem o menu a exibir apenas os itens que são descendentes dos id da página selecionada ou alias. ou seja: <code>{menu childrenof=$page_alias}</code> irá exibir somente as sub items da página actual.';
$lang['usage'] = 'Uso';
$lang['help_loadprops'] = 'Use este parâmetro quando utilizar propriedades avançadas no Template do Gestor de Menus. Este parâmetro irá forçar o carregamento de todos os conteúdos propriedades de cada nó (como extra1, imagem, miniatura, etc.) e irá aumentar dramaticamente o número de consultas necessárias para construir um menu, e aumenta os requisitos de memória, mas vai permitir menus mais avançados';
$lang['readonly'] = 'somente de leitura';
$lang['error_templatename'] = 'Não pode especificar um template com um nome terminado .tpl';
$lang['this_is_default'] = 'Menu template padrão';
$lang['set_as_default'] = 'Definir Menu template padrão';
$lang['default'] = 'Padrão';
$lang['templates'] = 'Templates ';
$lang['addtemplate'] = 'Adicionar Template';
$lang['areyousure'] = 'Tem a Certeza que pertende eliminar?';
$lang['changelog'] = ' <ul>
<li>1.6.3 - Adds usage column.</li>
<li>1.6.2 - Can no longer delete default template, fix problem with default database templates.</li>
<li>1.6.1 - Add created and modified entries on each node.</li>
<li>1.6 - Re-design admin interface, allow setting the default menu manager template.</li>
<li>1.5.4 - Minor bugfix, now require CMS 1.5.3.</li>
<li>1.5.3 - Support for syntax hilighter.</li>
<li>1.5.2 - Added more fields available in each node in the template.</li>
<li>1.5 - Bump version to be compatible with 1.1 only, and add the SetParameterTypes calls</li>
<li>1.4.1 -- Fix a problem where menus would not show if includeprefix was not specified.
<li>1.4 -- Accept a comma separated list of includeprefixes or excludeprefixes</li>
<li>1.3 -- Added includeprefix and excludeprefix params</li>
<li>1.1 -- Added handling of target parameter, mainly for the Link content type</li>
<li>1.0 -- Initial Release</li>
</ul> ';
$lang['dbtemplates'] = 'Base de Dados Templates';
$lang['description'] = 'Gerir os templates do menu para exibir menus de qualquer forma imaginável.';
$lang['deletetemplate'] = 'Eliminar Template';
$lang['edittemplate'] = 'Editar Template';
$lang['filename'] = 'Nome do Ficheiro';
$lang['filetemplates'] = 'Arquivo Templates';
$lang['help_includeprefix'] = 'Incluir apenas os itens que a página 'alias' coincidir com um dos especificados (separados por vírgula) prefixos. Este parâmetro não pode ser combinada com o 'excludeprefix' parâmetro.';
$lang['help_excludeprefix'] = 'Excluir todos os itens (e seus filhos), que o 'alias' da página coincidir com um dos especificados (separados por vírgula) prefixos. Esse parâmetro não deve ser utilizado em conjunto com o 'includeprefix' parâmetro.';
$lang['help_collapse'] = 'Ligue (definir a 1) para ter o menu de itens escondidos, que não estão relacionadas com a actual página seleccionada.';
$lang['help_items'] = 'Use este item para seleccionar uma lista de páginas que este menu deve exibir. O valor deve ser uma lista de página apelidos separados por vírgulas.';
$lang['help_number_of_levels'] = 'Esta definição só irá permitir o menu a exibir apenas um determinado número de níveis profundos.';
$lang['help_show_all'] = 'Essa opção fará com que o menu mostre todos os 'nodes', mesmo que não estejam definidas para mostrar no menu. Ela ainda não irá exibir páginas inactivas no entanto.';
$lang['help_show_root_siblings'] = 'Esta opção só se torna útil se start_element ou start_page forem utilizados. É basicamente exibirá os irmãos ao lado dos seleccionados start_page/elemento.';
$lang['help_start_level'] = 'Esta opção terá o menu a exibir apenas os itens ao iniciar um determinado nível. Um exemplo seria fácil se tivesse um menu na página com number_of_levels ='1 '. Então, como um segundo menu, terá start_level ='2 '. Agora, o sue segundo menu irá mostrar itens com base naquilo que for seleccionado no primeiro menu.';
$lang['help_start_element'] = 'Inicia o menu a exibir um determinado elemento start_page e mostrando as filhas só. Retorna uma hierarquia de posição (ex. 5.1.2).';
$lang['help_start_page'] = 'Inicia o menu a exibir um determinado elemento start_page e mostrando as filhas só. Retorna uma página alias.';
$lang['help_template'] = 'O template a utilizar para exibir o menu. Template serão provenientes da base de dados, a menos que o nome do modelo termine .tpl, nesse caso em virão a partir de um arquivo no diretório templates do MenuManager (padrão para simple_navigation.tpl)';
$lang['help'] = '<h3>What does this do?</h3>
<p>Menu Manager is a module for abstracting menus into a system that's easily usable and customizable. It abstracts the display portion of menus into smarty templates that can be easily modified to suit the user's needs. That is, the menu manager itself is just an engine that feeds the template. By customizing templates, or make your own ones, you can create virtually any menu you can think of.</p>
<h3>How do I use it?</h3>
<p>Just insert the tag into your template/page like: <code>{menu}</code>. The parameters that it can accept are listed below.</p>
<h3>Why do I care about templates?</h3>
<p>Menu Manager uses templates for display logic. It comes with three default templates called cssmenu.tpl, minimal_menu.tpl and simple_navigation.tpl. They all basically create a simple unordered list of pages, using different classes and ID's for styling with CSS.</p>
<p>Note that you style the look of the menus with CSS. Stylesheets are not included with Menu Manager, but must be attached to the page template separately. For the cssmenu.tpl template to work in IE you must also insert a link to the JavaScript in the head section of the page template, which is necessary for the hover effect to work in IE.</p>
<p>If you would like to make a specialized version of a template, you can easily import into the database and then edit it directly inside the CMSMS admin. To do this:
<ol>
<li>Click on the Menu Manager admin.</li>
<li>Click on the File Templates tab, and click the Import Template to Database button next to i.e. simple_navigation.tpl.</li>
<li>Give the template copy a name. We'll call it "Test Template".</li>
<li>You should now see the "Test Template" in your list of Database Templates.</li>
</ol>
</p>
<p>Now you can easily modify the template to your needs for this site. Put in classes, id's and other tags so that the formatting is exactly what you want. Now, you can insert it into your site with {menu template='Test Template'}. Note that the .tpl extension must be included if a file template is used.</p>
<p>The parameters for the $node object used in the template are as follows:
<ul>
<li>$node->id -- Content ID</li>
<li>$node->url -- URL of the Content</li>
<li>$node->accesskey -- Access Key, if defined</li>
<li>$node->tabindex -- Tab Index, if defined</li>
<li>$node->titleattribute -- Description or Title Attribute (title), if defined</li>
<li>$node->hierarchy -- Hierarchy position, (e.g. 1.3.3)</li>
<li>$node->depth -- Depth (level) of this node in the current menu</li>
<li>$node->prevdepth -- Depth (level) of the node that was right before this one</li>
<li>$node->haschildren -- Returns true if this node has child nodes to be displayed</li>
<li>$node->menutext -- Menu Text</li>
<li>$node->raw_menutext -- Menu Text without having html entities converted</li>
<li>$node->alias -- Page alias</li>
<li>$node->extra1 -- This field contains the value of the extra1 page property, unless the loadprops-parameter is set to NOT load the properties.</li>
<li>$node->extra2 -- This field contains the value of the extra2 page property, unless the loadprops-parameter is set to NOT load the properties.</li>
<li>$node->extra3 -- This field contains the value of the extra3 page property, unless the loadprops-parameter is set to NOT load the properties.</li>
<li>$node->image -- This field contains the value of the image page property (if non empty), unless the loadprops-parameter is set to NOT load the properties.</li>
<li>$node->thumbnail -- This field contains the value of the thumbnail page property (if non empty), unless the loadprops-parameter is set to NOT load the properties.</li>
<li>$node->target -- This field contains Target for the link (if non empty), unless the loadprops-parameter is set to NOT load the properties.</li>
<li>$node->created -- Item creation date</li>
<li>$node->modified -- Item modified date</li>
<li>$node->index -- Count of this node in the whole menu</li>
<li>$node->parent -- True if this node is a parent of the currently selected page</li>
</ul>
</p>';
$lang['importtemplate'] = 'Importar Modelo da Base de dados';
$lang['menumanager'] = 'Gestor de Menu';
$lang['newtemplate'] = 'Novo nome do template';
$lang['nocontent'] = 'Nenhum conteúdo dado ';
$lang['notemplatefiles'] = 'Nenhum arquivo de templates em %s';
$lang['notemplatename'] = 'Nenhum nome do template dado.';
$lang['templatecontent'] = 'Template Conteúdo';
$lang['templatenameexists'] = 'Um Template com esse nome já existe';
$lang['qca'] = 'P0-1236842016-1276975567163';
$lang['utma'] = '156861353.1127963369.1277311597.1278072220.1278188876.23';
$lang['utmz'] = '156861353.1277858169.17.5.utmcsr=feedburner|utmccn=Feed: cmsmadesimple/blog (CMS Made Simple)|utmcmd=feed';
$lang['utmb'] = '156861353.1.10.1278188876';
$lang['utmc'] = '156861353';
?>