prevent errors when files are opened directly
[squirrelmail.git] / class / l10n.class.php
CommitLineData
0309ed16 1<?php
2/**
3 * l10n.class
4 *
6c84ba1e 5 * Copyright (c) 2003-2005 The SquirrelMail Project Team
0309ed16 6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
598294a7 8 * This contains internal SquirrelMail functions needed to handle
0309ed16 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
763469ef 17/** @ignore */
18if (! defined('SM_PATH')) define('SM_PATH','../');
19
0309ed16 20/** Load all php-gettext classes */
21include_once(SM_PATH . 'class/l10n/streams.class.php');
22include_once(SM_PATH . 'class/l10n/gettext.class.php');
23?>