This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/thirdparty/ZendFramework/library/Zend/Translate/Adapter.php

263 lines
7.4 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Translate
* @copyright Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
* @version $Id: Date.php 2498 2006-12-23 22:13:38Z thomas $
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
/** Zend_Locale */
require_once 'Zend/Locale.php';
/** Zend_Translate_Exception */
require_once 'Zend/Translate/Exception.php';
/**
* @category Zend
* @package Zend_Translate
* @copyright Copyright (c) 2005-2007 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class Zend_Translate_Adapter {
/**
* Current locale/language
*
* @var string|null
*/
protected $_locale;
/**
* Table of all supported languages
*
* @var array
*/
protected $_languages = array();
/**
* Array with all options, each adapter can have own additional options
*
* @var array
*/
protected $_options = array();
/**
* Translation table
*
* @var array
*/
protected $_translate = array();
/**
* Generates the adapter
*
* @param string|array $options Options for this adapter
* @param string|Zend_Locale $locale OPTIONAL Locale/Language to set, identical with Locale identifiers
* see Zend_Locale for more information
* @throws Zend_Translate_Exception
*/
public function __construct($options, $locale = null)
{
if ($locale === null) {
$locale = new Zend_Locale();
}
$this->addTranslation($options, $locale, false);
$this->setLocale($locale);
}
/**
* Sets new adapter options
*
* @param array $options Adapter options
* @throws Zend_Translate_Exception
*/
public function setOptions($options)
{
if (is_array($options)) {
foreach ($options as $key => $option) {
$this->_options[strtolower($key)] = $option;
}
}
}
/**
* Returns the adapters name and it's options
*
* @param string|null $optionKey String returns this option
* null returns all options
* @return integer|string|array
*/
public function getOptions($optionKey = null)
{
if ($optionKey === null) {
return $this->_options;
}
if (array_key_exists(strtolower($optionKey), $this->_options)) {
return $this->_options[strtolower($optionKey)];
}
return null;
}
/**
* Gets locale
*
* @return Zend_Locale|null
*/
public function getLocale()
{
return $this->_locale;
}
/**
* Sets locale
*
* @param string|Zend_Locale $locale Locale to set
* @throws Zend_Translate_Exception
*/
public function setLocale($locale)
{
if ($locale instanceof Zend_Locale) {
$locale = $locale->toString();
} else if (!$locale = Zend_Locale::isLocale($locale)) {
throw new Zend_Translate_Exception("The given Language ({$locale}) does not exist");
}
if (!in_array($locale, $this->_languages)) {
throw new Zend_Translate_Exception("Language ({$locale}) has to be added before it can be used.");
}
$this->_locale = $locale;
}
/**
* Returns the avaiable languages from this adapter
*
* @return array
*/
public function getList()
{
return $this->_languages;
}
/**
* Is the wished language avaiable ?
*
* @param string|Zend_Locale $locale Language to search for, identical with locale identifier,
* see Zend_Locale for more information
* @return boolean
*/
public function isAvailable($locale)
{
if ($locale instanceof Zend_Locale) {
$locale = $locale->toString();
}
return in_array($locale, $this->_languages);
}
/**
* Load translation data
*
* @param mixed $data
* @param string|Zend_Locale $locale
* @param mixed $option
*/
abstract protected function _loadTranslationData($data, $locale, $option = null);
/**
* Add translation data
*
* It may be a new language or additional data for existing language
* If $clear parameter is true, then translation data for specified
* language is replaced and added otherwise
*
* @param array|string $data Translation data
* @param string|Zend_Locale $locale Locale/Language to add data for, identical with locale identifier,
* see Zend_Locale for more information
* @param boolean|string|array $clear OPTIONAL Option for this Adapter
* @throws Zend_Translate_Exception
*/
public function addTranslation($data, $locale, $option = null)
{
if (!$locale = Zend_Locale::isLocale($locale)) {
throw new Zend_Translate_Exception("The given Language ({$locale}) does not exist");
}
if (!in_array($locale, $this->_languages)) {
$this->_languages[$locale] = $locale;
}
$this->_loadTranslationData($data, $locale, $option);
}
/**
* Translates the given string
* returns the translation
*
* @param string $messageId Translation string
* @param string|Zend_Locale $locale OPTIONAL Locale/Language to use, identical with locale identifier,
* see Zend_Locale for more information
* @return string
*/
public function translate($messageId, $locale = null)
{
if ($locale === null) {
$locale = $this->_locale;
} else {
if (!$locale = Zend_Locale::isLocale($locale)) {
// language does not exist, return original string
return $messageId;
}
}
if (array_key_exists($locale, $this->_translate)) {
if (array_key_exists($messageId, $this->_translate[$locale])) {
// return original translation
return $this->_translate[$locale][$messageId];
}
} else if (strlen($locale) != 2) {
// faster than creating a new locale and separate the leading part
$locale = substr($locale, 0, -strlen(strrchr($locale, '_')));
if (array_key_exists($locale, $this->_translate)) {
if (array_key_exists($messageId, $this->_translate[$locale])) {
// return regionless translation (en_US -> en)
return $this->_translate[$locale][$messageId];
}
}
}
// no translation found, return original
return $messageId;
}
/**
* Returns the adapter name
*
* @return string
*/
abstract public function toString();
}