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