File Manager
<?php
$lang['search_method'] = 'Pretty Url kompatibilitás POST metóduson keresztül. Az alapértelmezett metódus mindig a GET, ahhoz hogy POST-tal menjünk, így használd: {search search_method="post"} ';
$lang['export_to_csv'] = 'Exportálás CSV formátumba';
$lang['prompt_savephrases'] = 'Kereső szavak helyett kereső kifejezések követése';
$lang['word'] = 'Szó';
$lang['count'] = 'Előfordulások száma';
$lang['confirm_clearstats'] = 'Biztos törölsz minden keresési statisztikát?';
$lang['clear'] = 'Törlés';
$lang['statistics'] = 'Statisztika';
$lang['param_action'] = 'Add meg a modul működési módját. A használható értékek a 'default', és a 'keywords'. A 'keywords' használható arra, hogy generáljunk egy vesszővel tagolt listát, amit a meta tag-ben lehet használni.';
$lang['param_count'] = 'A 'keywords'-szel használva ez a paraméter korlátozza a kimenetre generált szavak számát';
$lang['param_pageid'] = 'A 'keywords'-szel használva ez a paraméter adja meg azt az oldal azonosítót, ahol a találatok fognak megjelenni';
$lang['param_inline'] = 'Ha az érték 'igaz', akkor a kereső form kimenete felülírja az eredeti tartalom 'search' taggal jelölt részét az eredeti tartalom blokkban. Ezt a paramétert akkor érdemes használni, ha több tartalmi blokkod van és nem akarod, hogy az alapértelmezett blokk íródjon felül.';
$lang['param_passthru'] = 'Névvel ellátott paraméterek átadása a megadott moduloknak. Az egyes paraméterek formátuma: "passtru_MODULENAME_PARAMNAME='value'" i.e.: passthru_News_detailpage='newsdetails'"';
$lang['param_modules'] = 'A keresési eredmények szűkítése a megadott modulokra (veszőkkel elválasztva a kérdéses modul nevek).';
$lang['searchsubmit'] = 'Elküld';
$lang['search'] = 'Keresés';
$lang['param_submit'] = 'A kereső gombra írandó szöveg';
$lang['param_searchtext'] = 'A kereső mezőbe illesztendő szöveg';
$lang['prompt_searchtext'] = 'Alapértelmezett kereső kifejezés';
$lang['param_resultpage'] = 'Az oldal, ahol megjelenítjük a találatokat. Lehet oldal alias vagy azonosító is. Arra használatos, hogy másik sablonban jelenhessenek meg a találatok, mint a kereső űrlap.';
$lang['prompt_alpharesults'] = 'Eredmények alfabetikus rendezése (a súlyozott rendezés helyett)';
$lang['description'] = 'Más modulok tartalmában kereső modul.';
$lang['reindexallcontent'] = 'Teljes tartalom újraindexelése';
$lang['reindexcomplete'] = 'A teljes újraindexelés elkészült!';
$lang['stopwords'] = 'Stop Szavak';
$lang['searchresultsfor'] = 'Találatok erre:';
$lang['noresultsfound'] = 'Nincs találat.';
$lang['timetaken'] = 'Felhasznált idő';
$lang['usestemming'] = 'Szótövezés használata (csak angol)';
$lang['searchtemplate'] = 'Kereső sablon';
$lang['resulttemplate'] = 'Eredmény sablon';
$lang['submit'] = 'Elküld';
$lang['sysdefaults'] = 'Alapértelmezett értékek visszaállítása';
$lang['searchtemplateupdated'] = 'A kereső sablont frissítettük';
$lang['resulttemplateupdated'] = 'A találati sablont frissítettük';
$lang['restoretodefaultsmsg'] = 'Ez a művelete visszaállítja a sablon tartalmát az kiindulási alapértékre. Egyetértesz ezzel?';
$lang['options'] = 'Opciók';
$lang['eventdesc-SearchInitiated'] = 'Akkor küldjük, amikor a keresés indul.';
$lang['eventdesc-SearchCompleted'] = 'Akkor küldjük, amikor a keresés befejeződött.';
$lang['eventdesc-SearchItemAdded'] = 'Akkor küldjük, amikor egy új elem indexelése megtörténik.';
$lang['eventdesc-SearchItemDeleted'] = 'Akkor küldjük, amikor egy elemet törlünk az indexből.';
$lang['eventdesc-SearchAllItemsDeleted'] = 'Akkor küldjük, amikor minden elemet törlünk az indexből.';
$lang['eventhelp-SearchInitiated'] = '<p>Sent when a search is started.</p>
<h4>Parameters</h4>
<ol>
<li>Text that was searched for.</li>
</ol>
';
$lang['eventhelp-SearchCompleted'] = '<p>Sent when a search is completed.</p>
<h4>Parameters</h4>
<ol>
<li>Text that was searched for.</li>
<li>Array of the completed results.</li>
</ol>
';
$lang['eventhelp-SearchItemAdded'] = '<p>Sent when a new item is indexed.</p>
<h4>Parameters</h4>
<ol>
<li>Module name.</li>
<li>Id of the item.</li>
<li>Additional Attribute.</li>
<li>Content to index and add.</li>
</ol>
';
$lang['eventhelp-SearchItemDeleted'] = '<p>Sent when an item is deleted from the index.</p>
<h4>Parameters</h4>
<ol>
<li>Module name.</li>
<li>Id of the item.</li>
<li>Additional Attribute.</li>
</ol>
';
$lang['eventhelp-SearchAllItemsDeleted'] = '<p>Sent when all items are deleted from the index.</p>
<h4>Parameters</h4>
<ul>
<li>None</li>
</ul>
';
$lang['help'] = '<h3>What does this do?</h3>
<p>Search is a module for searching "core" content along with certain registered modules. You put in a word or two and it gives you back matching, relevent results.</p>
<h3>How do I use it?</h3>
<p>The easiest way to use it is with the {search} wrapper tag (wraps the module in a tag, to simplify the syntax). This will insert the module into your template or page anywhere you wish, and display the search form. The code would look something like: <code>{search}</code></p>
<h4>How do i prevent certain content from being indexed</h4>
<p>The search module will not search any "inactive" pages. However on occasion, when you are using the CustomContent module, or other smarty logic to show different content to different groups of users, it may be advisiable to prevent the entire page from being indexed even when it is live. To do this include the following tag anywhere on the page <em><!-- pageAttribute: NotSearchable --></em> When the search module sees this tag in the page it will not index any content for that page.</p>
<p>The <em><!-- pageAttribute: NotSearchable --></em> tag can be placed in the template as well. if this is done, none of the pages attached to that template will be indexed. Those pages will be re-indexed if the tag is removed</p>
';
$lang['utma'] = '156861353.1533605959.1224742544.1241159145.1241169959.16';
$lang['utmz'] = '156861353.1239430985.12.4.utmcsr=themes.cmsmadesimple.org|utmccn=(referral)|utmcmd=referral|utmcct=/index.php';
$lang['utmc'] = '156861353';
$lang['utmb'] = '156861353';
?>
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com