Replacing tabs with spaces
[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 /** 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');
20 ?>