one more identity action to process
[squirrelmail.git] / class / l10n.class.php
1 <?php
2 /**
3 * l10n.class
4 *
5 * Copyright (c) 2003-2005 The SquirrelMail Project Team
6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
8 * This contains internal SquirrelMail functions needed to handle
9 * translations when php gettext extension is missing or some functions
10 * are not available.
11 *
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage i18n
15 */
16
17 /** @ignore */
18 if (! defined('SM_PATH')) define('SM_PATH','../');
19
20 /** Load all php-gettext classes */
21 include_once(SM_PATH . 'class/l10n/streams.class.php');
22 include_once(SM_PATH . 'class/l10n/gettext.class.php');
23 ?>