1<?php
2/**
3 * Copyright 2013-2017 Horde LLC (http://www.horde.org/)
4 *
5 * See the enclosed file COPYING for license information (LGPL). If you
6 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
7 *
8 * @category  Horde
9 * @copyright 2013-2017 Horde LLC
10 * @license   http://www.horde.org/licenses/lgpl21 LGPL
11 * @package   Smtp
12 */
13
14/**
15 * Translation wrapper class for Horde_Smtp.
16 *
17 * @author    Michael Slusarz <slusarz@horde.org>
18 * @category  Horde
19 * @copyright 2013-2017 Horde LLC
20 * @license   http://www.horde.org/licenses/lgpl21 LGPL
21 * @package   Smtp
22 */
23class Horde_Smtp_Translation extends Horde_Translation_Autodetect
24{
25    /**
26     * The translation domain
27     *
28     * @var string
29     */
30    protected static $_domain = 'Horde_Smtp';
31
32    /**
33     * The absolute PEAR path to the translations for the default gettext handler.
34     *
35     * @var string
36     */
37    protected static $_pearDirectory = '@data_dir@';
38}
39