File Manager
<?php
$lang['help_action'] = 'Określa zachowanie modułu. Są dwie możliwości dla tego parametru:
<ul>
<li>default <em>(default)</em> - Użyty do zbudowania menu nawigacji.</li>
<li>breadcrumbs - Użyty do zbudowania łańcucha breadcrumb do aktualnie wyświetlonej storny. <strong>Uwaga: {cms_breadcrumbs}</strong> jest krótszą drogą do tej akcji.</li>
</ul>';
$lang['help_root'] = 'Ma zastosowanie tylko dla akcji breadcrumbs, umożliwie określenie początkowego poziomu, jeśli nie jest domyślną.';
$lang['youarehere'] = 'Jesteś tutaj';
$lang['set_cachable'] = 'Ustaw ten szablon jako cachable';
$lang['help_nocache'] = 'Całkowicie wyłącz cache'owanie tego odwołania do menu. Ustawienie tego parametru nadpisze wszelkie ustawienia w obiekcie treści oraz w szablonie menu.';
$lang['cachable'] = 'Cache'owalny';
$lang['help_childrenof'] = 'This option will have the menu only display items that are descendants of the selected page id or alias. i.e: <code>{menu childrenof=$page_alias}</code> will only display the children of the current page.';
$lang['usage'] = 'Użycie';
$lang['import'] = 'Importuj';
$lang['edit'] = 'Edytuj';
$lang['delete'] = 'Usuń';
$lang['help_loadprops'] = 'Użyj tego parametru, gdy używasz zaawansowanych właściwości twojego szablonu Menadżera Menu. Ta opcja załadowanie wszystkich właściwości treści (np. extra1, image, thumbnail itd) dla każdego elemntu menu. Uwaga: ta opcja zwiększa bardzo drastycznie ilość zapytań wysyłanych do bazy oraz użycie pamięci serwera.';
$lang['readonly'] = 'tylko do odczytu';
$lang['error_templatename'] = 'Nie możesz używać ciągu .tpl na koncu nazwy szablonu';
$lang['this_is_default'] = 'Domyślny szablon menu';
$lang['set_as_default'] = 'Ustaw jako domyślny szablon menu';
$lang['default'] = 'Domyślny';
$lang['templates'] = 'Szablony';
$lang['addtemplate'] = 'Dodaj szablon';
$lang['areyousure'] = 'Czy na pewno chcesz to usunąć?';
$lang['dbtemplates'] = 'Szablony w bazie danych';
$lang['description'] = 'Zarządzaj szablonami menu by wyświetlać nawigację serwisu jak sobie wymarzysz';
$lang['deletetemplate'] = 'Skasuj szablon';
$lang['edittemplate'] = 'Edytuj szablon';
$lang['filename'] = 'Nazwa pliku';
$lang['filetemplates'] = 'Szablony plikowe';
$lang['help_includeprefix'] = 'Include only those items who's page alias matches one of the specified (comma separated) prefixes. This parameter cannot be combined with the excludeprefix parameter.';
$lang['help_excludeprefix'] = 'Exclude all items (and their children) who's page alias matches one of the specified (comma separated) prefixes. This parameter must not be used in conjunction with the includeprefix parameter.';
$lang['help_collapse'] = 'Włącz (ustaw na 1), aby schować elementy menu niezwiązane z aktualnie wybraną stroną.';
$lang['help_items'] = 'Użyj tego elementu, aby wybrać listę stron, które powinno wyświetlać menu. Wartością powinna byc lista aliasów stron rozdzielona przecinkami.';
$lang['help_number_of_levels'] = 'ta opcja pozwala wyświetlać tylko określoną liczbe poziomów menu.';
$lang['help_show_all'] = 'Ta opcja powoduje, że w menu pojawiają się wszystkie strony, nawet te, które mają wyłączony atrybut 'Pokaż w menu'. Strony nieaktywne nie są pokazywane.';
$lang['help_show_root_siblings'] = 'Ta opcja jest przydatna tylko jeśli parametr start_element lub start_page jest użyty. Włączenie tej opcji spowoduje, że wyświetlony zostanie elemnt określony przez start_element lub start_page oraz wszystkie jego podrzędne elementy.';
$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'] = 'The template to use for displaying the menu. Templates will come from the database templates unless the template name ends with .tpl, in which case it will come from a file in the MenuManager templates directory';
$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 Import Template to Database button next to for example 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->children_exist -- Returns true if this node has child nodes available in the database that can be displayed in the menu</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>
<li>$node->current -- True if this node is the currently selected page</li>
<li>$node->first -- exists, and set to 1 if is the first item in a level.</li>
<li>$node->last -- exists, and set to 1 if is the last item in a level.</li>
</ul>
</p>
<h3>Caching</h3>
<p>This module has the capability to cache its output into static files to reduce memory requirements and sql queries, and to improve frontend performance. This provides all the advantages of static menus without the inconvenience involved when creating or editing pages.</p>
<p>Each menu template can be marked as &quot;Cachable&quot;. When a cachable menu template is used on a content page that is cachable, any cached menu output that is available for thsi page will be used. The nocache parameter on the menu tag can be used to completely disable caching.</p>
<p>All cached menu files are erased when a content item is added, edited, or deleted... and also when a menu template is added/edited or deleted.</p>
<h3>Alternate Tags:</h3>
<p>The <strong>{cms_breadcrumbs}</strong> tag (short for {menu action='breadcrumbs}) can be used to create a breadcrumb trail to the currently displayed page.</p>';
$lang['importtemplate'] = 'Importuj szablon do bazy danych';
$lang['menumanager'] = 'Menadżer Menu';
$lang['newtemplate'] = 'Nazwa dla nowego szablonu';
$lang['nocontent'] = 'Nie podano treści';
$lang['notemplatefiles'] = 'Brak plików szablonów w %s';
$lang['notemplatename'] = 'Nie podano nazwy szablonu';
$lang['templatecontent'] = 'Treść szablonu';
$lang['templatenameexists'] = 'Szablon o tej nazwie już istnieje';
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com