default.inc.php 1.5 KB

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Czech Default Topic for SimpleSearch
  4. * translated by Jiri Pavlicek jiri@pavlicek.cz
  5. *
  6. * @package simplesearch
  7. * @subpackage lexicon
  8. * @language cz
  9. */
  10. $_lang['simplesearch.no_results'] = 'Pro hledaný text "[[+query]]" nebyl nalezen žádný výsledek. Použijte, prosím, obecnější text pro hledání.';
  11. $_lang['simplesearch.search'] = 'Hledat';
  12. $_lang['simplesearch.results_found'] = '[[+count]] výskytů nalezeno pro "[[+text]]"';
  13. $_lang['simplesearch.result_pages'] = 'Stránky výsledků hledání: ';
  14. $_lang['simplesearch.index_finished'] = 'Dokončeno indexování [[+total]] dokumentů.';
  15. /* Settings */
  16. $_lang['setting_simplesearch.driver_class'] = 'Search Driver Class';
  17. $_lang['setting_simplesearch.driver_class_desc'] = 'Change this to use a different search driver. SimpleSearch provides you with SimpleSearchDriverBasic and SimpleSearchDriverSolr (assuming you have a working Solr server).';
  18. $_lang['setting_simplesearch.driver_class_path'] = 'Search Driver Class Path';
  19. $_lang['setting_simplesearch.driver_class_path_desc'] = 'Optional. Set this to point to the absolute path where the search driver_class can be found. Leave blank to use the default driver directory.';
  20. $_lang['setting_simplesearch.driver_db_specific'] = 'Search Driver Database Specificity';
  21. $_lang['setting_simplesearch.driver_db_specific_desc'] = 'Set this to Yes if the search driver you are using uses derivative classes for different SQL drivers. (SQL searches will be Yes, Solr and other index-based searches will be No.)';