File Manager
<?php
$lang['help_loadprops'] = 'Utilitza aquest paràmetre quan usis les propietats avançades en la teva plantilla de gestor de menús. Aquest paràmetre forçarà la càrrega de totes les propietats de contingut per cada node (com ara l'extra1, image, thumbnail, etc.) and incrementarà dramàticament el nombre de consultes necessàries per construir el menú, i incrementarà les necessitats de memòria, però permetrà menús molt més avançats.';
$lang['readonly'] = 'només lectura';
$lang['error_templatename'] = 'You cannot specify a template name ending with .tpl';
$lang['this_is_default'] = 'plantilla de menú per defecte';
$lang['set_as_default'] = 'Fixa com a plantilla de menú per defecte';
$lang['default'] = 'Defecte';
$lang['templates'] = 'Plantilles';
$lang['addtemplate'] = 'Afegeix plantilla';
$lang['areyousure'] = 'N'estàs segur d'esborrar això?';
$lang['changelog'] = ' <ul>
<li>1.1 -- Afegida la gestió del paràmetre objectiu, bàsicament pel tipus de contingut d'Enllaç</li>
<li>1.0 -- Versió inicial</li>
</ul> ';
$lang['dbtemplates'] = 'Plantilla de base de dades';
$lang['description'] = 'Gestiona plantilles de menú per mostrar els menús de la manera que imaginis';
$lang['deletetemplate'] = 'Esborra plantilla';
$lang['edittemplate'] = 'Edita plantilla';
$lang['filename'] = 'Nom d'arxiu';
$lang['filetemplates'] = 'Plantilles d'arxiu';
$lang['help_includeprefix'] = 'Inclou només aquells elements pels quals l'àlies de pàgina encaixa amb un dels prefixos indicats (separats per comes). Aquest parèmetre no es pot combinar amb el paràmetre excludeprefix.';
$lang['help_excludeprefix'] = 'Exclou tots els elements (i els seus fills) els àlies dels quals encaixen amb un dels prefixos indicats (separats per comes). Aquest paràmetre no s'ha d'utilitzar a la vegada que el paràmetre includeprefix.';
$lang['help_collapse'] = 'Activa-ho (posa a 1) per tal que el menú oculti els elements no relacionats amb la pàgina selcccionada ';
$lang['help_items'] = 'Utilitza aquest element per triar una llista de pàgines que aquest menú hauria d'ensenyar. El valor hauria de ser una llista d'àlies de pàgina separats per comes.';
$lang['help_number_of_levels'] = 'Aquest valor de configuració limitarà els nivells de profunditat del menú';
$lang['help_show_all'] = 'Aquesta opció provocarà que el menú mostri tots els nodes fins i tot si s'han marcat com a no mostrables. Malgrat això, no es mostraran les pàgines inactives.';
$lang['help_show_root_siblings'] = 'Aquesta opció només és útil si s'utilitzen start_element o start_page. Bàsicament, mostrarà els fills del start_page/element triat.';
$lang['help_start_level'] = 'This option will have the menu only display items starting a the given level. An easy example would be if you had one menu on the page with number_of_levels='1'. Then as a second menu, you have start_level='2'. Now, your second menu will show items based on what is selected in the first menu.';
$lang['help_start_element'] = 'Starts the menu displaying at the given start_element and showing that element and it's children only. Takes a hierarchy position (e.g. 5.1.2).';
$lang['help_start_page'] = 'Starts the menu displaying at the given start_page and showing that element and it's children only. Takes a page alias.';
$lang['help_template'] = 'La plantilla a utilitzar per mostrar el menú. Les plantilles provenen de plantilles a la base de dades a menys que el seu nom acabi en .tpl, cas en el qual provindrà d'un arxiu en el directori de plantilles del ManuManager ';
$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->alias -- Page alias</li>
<li>$node->target -- Target for the link. Will be empty if content doesn't set it.</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'] = 'Importa Plantilla a la base de ades';
$lang['menumanager'] = 'Gestor de menus';
$lang['newtemplate'] = 'Nou nom de plantilla';
$lang['nocontent'] = 'No s'ha proporcionat contingut';
$lang['notemplatefiles'] = 'No hi ha plantilles a %s';
$lang['notemplatename'] = 'No s'ha donat un nom de plantilla.';
$lang['templatecontent'] = 'Contingut de plantilla';
$lang['templatenameexists'] = 'Ja existeix una plantilla amb aquest nom';
$lang['utma'] = '156861353.3109145977533247500.1225311312.1259216857.1259266070.48';
$lang['utmz'] = '156861353.1254088757.35.2.utmccn=(referral)|utmcsr=66.147.244.155|utmcct=/~clubcocc/cmsmadesimple/install/index.php|utmcmd=referral';
$lang['qca'] = 'P0-894451108-1250455823820';
$lang['utmc'] = '156861353';
$lang['utmb'] = '156861353';
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com