forked from cakephp/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
I18n.php
287 lines (258 loc) · 8.85 KB
/
I18n.php
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 1.2.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\I18n;
use Aura\Intl\FormatterLocator;
use Aura\Intl\PackageLocator;
use Cake\Cache\Cache;
use Cake\I18n\Formatter\IcuFormatter;
use Cake\I18n\Formatter\SprintfFormatter;
use Cake\I18n\TranslatorFactory;
use Locale;
/**
* I18n handles translation of Text and time format strings.
*/
class I18n
{
/**
* Default locale
*
* @var string
*/
const DEFAULT_LOCALE = 'en_US';
/**
* The translators collection
*
* @var \Cake\I18n\TranslatorRegistry|null
*/
protected static $_collection = null;
/**
* The environment default locale
*
* @var string
*/
protected static $_defaultLocale;
/**
* Returns the translators collection instance. It can be used
* for getting specific translators based of their name and locale
* or to configure some aspect of future translations that are not yet constructed.
*
* @return \Cake\I18n\TranslatorRegistry The translators collection.
*/
public static function translators()
{
if (static::$_collection !== null) {
return static::$_collection;
}
static::$_collection = new TranslatorRegistry(
new PackageLocator,
new FormatterLocator([
'sprintf' => function () {
return new SprintfFormatter();
},
'default' => function () {
return new IcuFormatter();
},
]),
new TranslatorFactory,
static::locale()
);
if (class_exists('Cake\Cache\Cache')) {
static::$_collection->setCacher(Cache::engine('_cake_core_'));
}
return static::$_collection;
}
/**
* Returns an instance of a translator that was configured for the name and passed
* locale. If no locale is passed then it takes the value returned by the `locale()` method.
*
* This method can be used to configure future translators, this is achieved by passing a callable
* as the last argument of this function.
*
* ### Example:
*
* ```
* I18n::translator('default', 'fr_FR', function () {
* $package = new \Aura\Intl\Package();
* $package->setMessages([
* 'Cake' => 'Gâteau'
* ]);
* return $package;
* });
*
* $translator = I18n::translator('default', 'fr_FR');
* echo $translator->translate('Cake');
* ```
*
* You can also use the `Cake\I18n\MessagesFileLoader` class to load a specific
* file from a folder. For example for loading a `my_translations.po` file from
* the `src/Locale/custom` folder, you would do:
*
* ```
* I18n::translator(
* 'default',
* 'fr_FR',
* new MessagesFileLoader('my_translations', 'custom', 'po');
* );
* ```
*
* @param string $name The domain of the translation messages.
* @param string|null $locale The locale for the translator.
* @param callable|null $loader A callback function or callable class responsible for
* constructing a translations package instance.
* @return \Aura\Intl\TranslatorInterface|null The configured translator.
*/
public static function translator($name = 'default', $locale = null, callable $loader = null)
{
if ($loader !== null) {
$locale = $locale ?: static::locale();
$loader = static::translators()->setLoaderFallback($name, $loader);
$packages = static::translators()->getPackages();
$packages->set($name, $locale, $loader);
return null;
}
$translators = static::translators();
if ($locale) {
$currentLocale = $translators->getLocale();
static::translators()->setLocale($locale);
}
$translator = $translators->get($name);
if (isset($currentLocale)) {
$translators->setLocale($currentLocale);
}
return $translator;
}
/**
* Registers a callable object that can be used for creating new translator
* instances for the same translations domain. Loaders will be invoked whenever
* a translator object is requested for a domain that has not been configured or
* loaded already.
*
* Registering loaders is useful when you need to lazily use translations in multiple
* different locales for the same domain, and don't want to use the built-in
* translation service based of `gettext` files.
*
* Loader objects will receive two arguments: The domain name that needs to be
* built, and the locale that is requested. These objects can assemble the messages
* from any source, but must return an `Aura\Intl\Package` object.
*
* ### Example:
*
* ```
* use Cake\I18n\MessagesFileLoader;
* I18n::config('my_domain', function ($name, $locale) {
* // Load src/Locale/$locale/filename.po
* $fileLoader = new MessagesFileLoader('filename', $locale, 'po');
* return $fileLoader();
* });
* ```
*
* You can also assemble the package object yourself:
*
* ```
* use Aura\Intl\Package;
* I18n::config('my_domain', function ($name, $locale) {
* $package = new Package('default');
* $messages = (...); // Fetch messages for locale from external service.
* $package->setMessages($message);
* $package->setFallback('default');
* return $package;
* });
* ```
*
* @param string $name The name of the translator to create a loader for
* @param callable $loader A callable object that should return a Package
* instance to be used for assembling a new translator.
* @return void
*/
public static function config($name, callable $loader)
{
static::translators()->registerLoader($name, $loader);
}
/**
* Sets the default locale to use for future translator instances.
* This also affects the `intl.default_locale` PHP setting.
*
* When called with no arguments it will return the currently configure
* locale as stored in the `intl.default_locale` PHP setting.
*
* @param string|null $locale The name of the locale to set as default.
* @return string|null The name of the default locale.
*/
public static function locale($locale = null)
{
static::defaultLocale();
if (!empty($locale)) {
Locale::setDefault($locale);
if (isset(static::$_collection)) {
static::translators()->setLocale($locale);
}
return null;
}
$current = Locale::getDefault();
if ($current === '') {
$current = static::DEFAULT_LOCALE;
Locale::setDefault($current);
}
return $current;
}
/**
* This returns the default locale before any modifications, i.e.
* the value as stored in the `intl.default_locale` PHP setting before
* any manipulation by this class.
*
* @return string
*/
public static function defaultLocale()
{
if (static::$_defaultLocale === null) {
static::$_defaultLocale = Locale::getDefault() ?: static::DEFAULT_LOCALE;
}
return static::$_defaultLocale;
}
/**
* Sets the name of the default messages formatter to use for future
* translator instances. By default the `default` and `sprintf` formatters
* are available.
*
* If called with no arguments, it will return the currently configured value.
*
* @param string|null $name The name of the formatter to use.
* @return string The name of the formatter.
*/
public static function defaultFormatter($name = null)
{
return static::translators()->defaultFormatter($name);
}
/**
* Set if the domain fallback is used.
*
* @param bool $enable flag to enable or disable fallback
* @return void
*/
public static function useFallback($enable = true)
{
static::translators()->useFallback($enable);
}
/**
* Destroys all translator instances and creates a new empty translations
* collection.
*
* @return void
*/
public static function clear()
{
static::$_collection = null;
}
}