Gracefully recover from over quota error while sending a mail (#1145144):
[squirrelmail.git] / class / l10n.class.php
... / ...
CommitLineData
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 */
18if (! defined('SM_PATH')) define('SM_PATH','../');
19
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?>