38 lines
946 B
PHP
38 lines
946 B
PHP
<?php
|
|
/**
|
|
* Copyright 2013-2015 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file LICENSE for license information (BSD). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/bsd.
|
|
*
|
|
* @author Jan Schneider <jan@horde.org>
|
|
* @category Horde
|
|
* @license http://www.horde.org/licenses/bsd BSD
|
|
* @package Dav
|
|
*/
|
|
|
|
/**
|
|
* Horde_Dav_Translation is the translation wrapper class for Horde_Dav.
|
|
*
|
|
* @author Jan Schneider <jan@horde.org>
|
|
* @category Horde
|
|
* @license http://www.horde.org/licenses/bsd BSD
|
|
* @package Dav
|
|
*/
|
|
class Horde_Dav_Translation extends Horde_Translation_Autodetect
|
|
{
|
|
/**
|
|
* The translation domain
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $_domain = 'Horde_Dav';
|
|
|
|
/**
|
|
* The absolute PEAR path to the translations for the default gettext handler.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $_pearDirectory = '/usr/share/psa-pear/pear/data';
|
|
}
|