| 
<?php
# Auther: Tariq Al-Saleem.
 # Created 11/08/2004.
 # email: [email protected]
 # This is some changes on the faq_viewer class to display links and messages in
 # multi languages systems.
 # Arabic and english language is included.
 # For arabic usage go to: www.tsbs.net/news.htm?id=2 .
 
 # The original class is class.faqmanager.inc. must be available.
 # there is no guarantee that this file will be updated if the original class changes.
 # you can find the original class and copyright information
 # on [email protected], http://php.amnuts.com/
 
 
 define(FQ_MSG1,
 "Search the FAQ");
 define(FQ_MSG2,
 "search");
 define(FQ_MSG3,
 "contents");
 define(FQ_MSG4,
 "Forward to");
 define(FQ_MSG5,
 "Backward to");
 define(FQ_MSG6,
 "top");
 
 define(FQ_MSG7,
 "Show all");
 
 define(FQ_MSG8,
 "No matches were found in this category");
 
 define(FQ_MSG9,
 "There are no questions curently in this category.");
 
 define(FQ_MSG10,
 "There are currently no categories in the FAQ.");
 
 ?>
 |