File Manager
<?php
$lang['help_action'] = 'Specify the behavior of the module. There are two possiblities for this parameter:
<ul>
<li>default <em>(default)</em> - Used for building a navigation menu.</li>
<li>breadcrumbs - Used to build a breadcrumb trail to the currently displayed page. <strong>Note: {cms_breadcrumbs}</strong> is a short way of calling this action.</li>
</ul>';
$lang['help_root'] = 'Applicable only to the breadcrumbs action, allows specifying a start level that is not the default page.';
$lang['youarehere'] = 'Você está aqui';
$lang['set_cachable'] = 'Set this template as cachable';
$lang['help_nocache'] = 'Disable any caching of this call to the menu. This parameter, if set to any positive value will override any settings in the content object and the menu template.';
$lang['cachable'] = 'Cachable';
$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['import'] = 'Import';
$lang['edit'] = 'Edit';
$lang['delete'] = 'Delete';
$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['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'] = 'Esta opção fará com que o menu mostre todos os 'nodes' (nós), mesmo que não estejam definidos para serem vistos no menu. No entanto não exibirá páginas inactivas.';
$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'] = 'Começa a exibir o menú num determinado elemento start_element e mostrando só elementos filhos. Aceita uma posição na hierarquia (ex. 5.1.2).';
$lang['help_start_page'] = 'Começa a exibir o menú num determinado elemento start_page e mostrando só elementos filhos. Aceita o aliás de página.';
$lang['help_template'] = 'O template a utilizar para exibir o menu. Os templates serão provenientes da base de dados, a menos que o nome termine em ".tpl", vindo nesse caso a partir de um ficheiro no diretório templates do MenuManager (por defeito "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'] = 'Conteúdo do Template';
$lang['templatenameexists'] = 'Um Template com esse nome já existe';
$lang['utmz'] = '156861353.1374162751.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)';
$lang['utma'] = '156861353.2136809862.1374162751.1374162751.1374165542.2';
$lang['utmc'] = '156861353';
$lang['utmb'] = '156861353';
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com