Translate.php
6.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?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_Translate_Exception */
require_once 'Zend/Translate/Exception.php';
/** Zend_Locale */
require_once 'Zend/Locale.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
*/
class Zend_Translate {
/**
* Adapter names constants
*/
const AN_GETTEXT = 'gettext';
const AN_ARRAY = 'array';
const AN_CSV = 'csv';
const AN_TMX = 'tmx';
const AN_XLIFF = 'xliff';
/**
* Adapter
*
* @var Zend_Translate_Adapter
*/
private $_adapter;
/**
* Generates the standard translation object
*
* @param string $adapter Adapter to use
* @param array $options Options for this adapter to set
* Depends on the Adapter
* @param string|Zend_Locale $locale OPTIONAL locale to use
* @throws Zend_Translate_Exception
*/
public function __construct($adapter, $options, $locale = null)
{
$this->setAdapter($adapter, $options, $locale);
}
/**
* Sets a new adapter
*
* @param string $adapter Adapter to use
* @param array $options Options for the adapter to set
* @param string|Zend_Locale $locale OPTIONAL locale to use
* @throws Zend_Translate_Exception
*/
public function setAdapter($adapter, $options, $locale = null)
{
switch (strtolower($adapter)) {
case 'array':
/** Zend_Translate_Adapter_Array */
require_once('Zend/Translate/Adapter/Array.php');
$this->_adapter = new Zend_Translate_Adapter_Array($options, $locale);
break;
case 'gettext':
/** Zend_Translate_Adapter_Gettext */
require_once('Zend/Translate/Adapter/Gettext.php');
$this->_adapter = new Zend_Translate_Adapter_Gettext($options, $locale);
break;
case 'tmx':
/** Zend_Translate_Adapter_Tmx */
require_once('Zend/Translate/Adapter/Tmx.php');
$this->_adapter = new Zend_Translate_Adapter_Tmx($options, $locale);
break;
case 'csv':
/** Zend_Translate_Adapter_Csv */
require_once('Zend/Translate/Adapter/Csv.php');
$this->_adapter = new Zend_Translate_Adapter_Csv($options, $locale);
break;
case 'xliff':
/** Zend_Translate_Adapter_Xliff */
require_once('Zend/Translate/Adapter/Xliff.php');
$this->_adapter = new Zend_Translate_Adapter_Xliff($options, $locale);
break;
case 'qt':
case 'sql':
case 'tbx':
case 'xmltm':
throw new Zend_Translate_Exception("adapter '$adapter' is not supported for now");
break;
default:
throw new Zend_Translate_Exception('no adapter selected');
break;
}
}
/**
* Returns the adapters name and it's options
*
* @return Zend_Translate_Adapter
*/
public function getAdapter()
{
return $this->_adapter;
}
/**
* 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 string|array $options Option for this adapter, depends on the adapter
* @param string|Zend_Locale $locale Locale/Language to add to this adapter
* @param boolean $clear If true the new translation is added to the existing one
*/
public function addTranslation($options, $locale, $clear = false)
{
$this->_adapter->addTranslation($options, $locale, $clear);
}
/**
* Sets a new locale/language
*
* @param string|Zend_Locale $locale Locale/Language to set for translations
*/
public function setLocale($locale)
{
$this->_adapter->setLocale($locale);
}
/**
* Returns the actual set locale/language
*
* @return Zend_Locale|null
*/
public function getLocale()
{
return $this->_adapter->getLocale();
}
/**
* Returns all avaiable locales/anguages from this adapter
*
* @return array
*/
public function getList()
{
return $this->_adapter->getList();
}
/**
* is the wished language avaiable ?
*
* @param string|Zend_Locale $locale Is the locale/language avaiable
* @return boolean
*/
public function isAvailable($locale)
{
return $this->_adapter->isAvailable($locale);
}
/**
* Translate the given string
*
* @param string $messageId Original to translate
* @param string|Zend_Locale $locale OPTIONAL locale/language to translate to
* @return string
*/
public function _($messageId, $locale = null)
{
return $this->_adapter->translate($messageId, $locale);
}
/**
* Translate the given string
*
* @param string $messageId Original to translate
* @param string|Zend_Locale $locale OPTIONAL locale/language to translate to
* @return string
*/
public function translate($messageId, $locale = null)
{
return $this->_adapter->translate($messageId, $locale);
}
}