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
|
<?php
namespace Gettext;
use Gettext\Generators\PhpArray;
class Translator extends BaseTranslator implements TranslatorInterface { private $domain; private $dictionary = []; private $plurals = [];
/** * Loads translation from a Translations instance, a file on an array. * * @param Translations|string|array $translations * * @return self */ public function loadTranslations($translations) { if (is_object($translations) && $translations instanceof Translations) { $translations = PhpArray::generate($translations); } elseif (is_string($translations) && is_file($translations)) { $translations = include $translations; } elseif (!is_array($translations)) { throw new \InvalidArgumentException( 'Invalid Translator: only arrays, files or instance of Translations are allowed' ); }
$this->addTranslations($translations);
return $this; }
/** * Set the default domain. * * @param string $domain * * @return self */ public function defaultDomain($domain) { $this->domain = $domain;
return $this; }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function gettext($original) { return $this->dpgettext($this->domain, null, $original); }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function ngettext($original, $plural, $value) { return $this->dnpgettext($this->domain, null, $original, $plural, $value); }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function dngettext($domain, $original, $plural, $value) { return $this->dnpgettext($domain, null, $original, $plural, $value); }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function npgettext($context, $original, $plural, $value) { return $this->dnpgettext($this->domain, $context, $original, $plural, $value); }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function pgettext($context, $original) { return $this->dpgettext($this->domain, $context, $original); }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function dgettext($domain, $original) { return $this->dpgettext($domain, null, $original); }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function dpgettext($domain, $context, $original) { $translation = $this->getTranslation($domain, $context, $original);
if (isset($translation[0]) && $translation[0] !== '') { return $translation[0]; }
return $original; }
/** * @see TranslatorInterface * * {@inheritdoc} */ public function dnpgettext($domain, $context, $original, $plural, $value) { $translation = $this->getTranslation($domain, $context, $original); $key = $this->getPluralIndex($domain, $value, $translation === false);
if (isset($translation[$key]) && $translation[$key] !== '') { return $translation[$key]; }
return ($key === 0) ? $original : $plural; }
/** * Set new translations to the dictionary. * * @param array $translations */ protected function addTranslations(array $translations) { $domain = isset($translations['domain']) ? $translations['domain'] : '';
//Set the first domain loaded as default domain if ($this->domain === null) { $this->domain = $domain; }
if (isset($this->dictionary[$domain])) { $this->dictionary[$domain] = array_replace_recursive($this->dictionary[$domain], $translations['messages']);
return; }
if (!empty($translations['plural-forms'])) { list($count, $code) = array_map('trim', explode(';', $translations['plural-forms'], 2));
// extract just the expression turn 'n' into a php variable '$n'. // Slap on a return keyword and semicolon at the end. $this->plurals[$domain] = [ 'count' => (int) str_replace('nplurals=', '', $count), 'code' => str_replace('plural=', 'return ', str_replace('n', '$n', $code)).';', ]; }
$this->dictionary[$domain] = $translations['messages']; }
/** * Search and returns a translation. * * @param string $domain * @param string $context * @param string $original * * @return string|false */ protected function getTranslation($domain, $context, $original) { return isset($this->dictionary[$domain][$context][$original]) ? $this->dictionary[$domain][$context][$original] : false; }
/** * Executes the plural decision code given the number to decide which * plural version to take. * * @param string $domain * @param string $n * @param bool $fallback set to true to get fallback plural index * * @return int */ protected function getPluralIndex($domain, $n, $fallback) { //Not loaded domain or translation, use a fallback if (!isset($this->plurals[$domain]) || $fallback === true) { return $n == 1 ? 0 : 1; }
if (!isset($this->plurals[$domain]['function'])) { $code = self::fixTerseIfs($this->plurals[$domain]['code']); $this->plurals[$domain]['function'] = eval("return function (\$n) { $code };"); }
if ($this->plurals[$domain]['count'] <= 2) { return call_user_func($this->plurals[$domain]['function'], $n) ? 1 : 0; }
return call_user_func($this->plurals[$domain]['function'], $n); }
/** * This function will recursively wrap failure states in brackets if they contain a nested terse if. * * This because PHP can not handle nested terse if's unless they are wrapped in brackets. * * This code probably only works for the gettext plural decision codes. * * return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2); * becomes * return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2)); * * @param string $code the terse if string * @param bool $inner If inner is true we wrap it in brackets * * @return string A formatted terse If that PHP can work with. */ private static function fixTerseIfs($code, $inner = false) { /* * (?P<expression>[^?]+) Capture everything up to ? as 'expression' * \? ? * (?P<success>[^:]+) Capture everything up to : as 'success' * : : * (?P<failure>[^;]+) Capture everything up to ; as 'failure' */ preg_match('/(?P<expression>[^?]+)\?(?P<success>[^:]+):(?P<failure>[^;]+)/', $code, $matches);
// If no match was found then no terse if was present if (!isset($matches[0])) { return $code; }
$expression = $matches['expression']; $success = $matches['success']; $failure = $matches['failure'];
// Go look for another terse if in the failure state. $failure = self::fixTerseIfs($failure, true); $code = $expression.' ? '.$success.' : '.$failure;
if ($inner) { return "($code)"; }
// note the semicolon. We need that for executing the code. return "$code;"; } }
|