1<?php
2/**
3 * Copyright 2011-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 * @author   Jan Schneider <jan@horde.org>
9 * @category Horde
10 * @license  http://www.horde.org/licenses/lgpl21 LGPL
11 * @package  Browser
12 */
13
14/**
15 * Horde_Browser_Translation is the translation wrapper class for
16 * Horde_Browser.
17 *
18 * @author    Jan Schneider <jan@horde.org>
19 * @category  Horde
20 * @copyright 2011-2017 Horde LLC
21 * @license   http://www.horde.org/licenses/lgpl21 LGPL
22 * @package   Browser
23 */
24class Horde_Browser_Translation extends Horde_Translation_Autodetect
25{
26    /**
27     * The translation domain
28     *
29     * @var string
30     */
31    protected static $_domain = 'Horde_Browser';
32
33    /**
34     * The absolute PEAR path to the translations for the default gettext handler.
35     *
36     * @var string
37     */
38    protected static $_pearDirectory = '@data_dir@';
39}
40