l10n.class.php 612 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * l10n.class
  4. *
  5. * This contains internal SquirrelMail functions needed to handle
  6. * translations when php gettext extension is missing or some functions
  7. * are not available.
  8. *
  9. * @copyright &copy; 2003-2007 The SquirrelMail Project Team
  10. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  11. * @version $Id$
  12. * @package squirrelmail
  13. * @subpackage i18n
  14. */
  15. /** @ignore */
  16. if (! defined('SM_PATH')) define('SM_PATH','../');
  17. /** Load all php-gettext classes */
  18. include_once(SM_PATH . 'class/l10n/streams.class.php');
  19. include_once(SM_PATH . 'class/l10n/gettext.class.php');