CRM-16808 paypal express follow up fixes
[civicrm-core.git] / CRM / Core / I18n.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Core_I18n {
36
37 /**
2ba175b6
DL
38 * A PHP-gettext instance for string translation;
39 * should stay null if the strings are not to be translated (en_US).
6a488035
TO
40 */
41 private $_phpgettext = NULL;
42
43 /**
44 * Whether we are using native gettext or not.
45 */
46 private $_nativegettext = FALSE;
47
74eb462f
ML
48 /**
49 * Gettext cache for extension domains/streamers, depending on if native or phpgettext.
50 * - native gettext: we cache the value for textdomain()
51 * - phpgettext: we cache the file streamer.
52 */
53 private $_extensioncache = array();
54
6a488035
TO
55 /**
56 * A locale-based constructor that shouldn't be called from outside of this class (use singleton() instead).
57 *
5a4f6742
CW
58 * @param string $locale
59 * the base of this certain object's existence.
6a488035 60 *
77b97be7 61 * @return \CRM_Core_I18n
6a488035 62 */
00be9182 63 public function __construct($locale) {
6a488035
TO
64 if ($locale != '' and $locale != 'en_US') {
65 $config = CRM_Core_Config::singleton();
66
67 if (defined('CIVICRM_GETTEXT_NATIVE') && CIVICRM_GETTEXT_NATIVE && function_exists('gettext')) {
68 // Note: the file hierarchy for .po must be, for example: l10n/fr_FR/LC_MESSAGES/civicrm.mo
69
70 $this->_nativegettext = TRUE;
71
72 $locale .= '.utf8';
73 putenv("LANG=$locale");
74
75 // CRM-11833 Avoid LC_ALL because of LC_NUMERIC and potential DB error.
76 setlocale(LC_TIME, $locale);
77 setlocale(LC_MESSAGES, $locale);
78 setlocale(LC_CTYPE, $locale);
79
4d8ce7f0 80 bindtextdomain('civicrm', CRM_Core_I18n::getResourceDir());
6a488035
TO
81 bind_textdomain_codeset('civicrm', 'UTF-8');
82 textdomain('civicrm');
83
84 $this->_phpgettext = new CRM_Core_I18n_NativeGettext();
74eb462f 85 $this->_extensioncache['civicrm'] = 'civicrm';
6a488035
TO
86 return;
87 }
88
89 // Otherwise, use PHP-gettext
b395e3c0
ML
90 // we support both the old file hierarchy format and the new:
91 // pre-4.5: civicrm/l10n/xx_XX/civicrm.mo
92 // post-4.5: civicrm/l10n/xx_XX/LC_MESSAGES/civicrm.mo
6a488035
TO
93 require_once 'PHPgettext/streams.php';
94 require_once 'PHPgettext/gettext.php';
95
4d8ce7f0 96 $mo_file = CRM_Core_I18n::getResourceDir() . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . 'civicrm.mo';
b395e3c0 97
353ffa53 98 if (!file_exists($mo_file)) {
b395e3c0 99 // fallback to pre-4.5 mode
4d8ce7f0 100 $mo_file = CRM_Core_I18n::getResourceDir() . $locale . DIRECTORY_SEPARATOR . 'civicrm.mo';
b395e3c0
ML
101 }
102
103 $streamer = new FileReader($mo_file);
6a488035 104 $this->_phpgettext = new gettext_reader($streamer);
74eb462f 105 $this->_extensioncache['civicrm'] = $this->_phpgettext;
6a488035
TO
106 }
107 }
108
109 /**
110 * Returns whether gettext is running natively or using PHP-Gettext.
111 *
a6c01b45
CW
112 * @return bool
113 * True if gettext is native
6a488035 114 */
00be9182 115 public function isNative() {
6a488035
TO
116 return $this->_nativegettext;
117 }
118
119 /**
120 * Return languages available in this instance of CiviCRM.
121 *
5a4f6742
CW
122 * @param bool $justEnabled
123 * whether to return all languages or just the enabled ones.
6a488035 124 *
a6c01b45 125 * @return array
16b10e64 126 * Array of code/language name mappings
6a488035 127 */
00be9182 128 public static function languages($justEnabled = FALSE) {
6a488035
TO
129 static $all = NULL;
130 static $enabled = NULL;
131
132 if (!$all) {
c0c9cd82 133 $all = CRM_Contact_BAO_Contact::buildOptions('preferred_language');
6a488035
TO
134
135 // check which ones are available; add them to $all if not there already
136 $config = CRM_Core_Config::singleton();
137 $codes = array();
4d8ce7f0 138 if (is_dir(CRM_Core_I18n::getResourceDir()) && $dir = opendir(CRM_Core_I18n::getResourceDir())) {
6a488035
TO
139 while ($filename = readdir($dir)) {
140 if (preg_match('/^[a-z][a-z]_[A-Z][A-Z]$/', $filename)) {
141 $codes[] = $filename;
142 if (!isset($all[$filename])) {
143 $all[$filename] = $filename;
144 }
145 }
146 }
147 closedir($dir);
148 }
149
150 // drop the unavailable languages (except en_US)
151 foreach (array_keys($all) as $code) {
152 if ($code == 'en_US') {
153 continue;
154 }
408b79bf 155 if (!in_array($code, $codes)) {
156 unset($all[$code]);
157 }
6a488035
TO
158 }
159 }
160
161 if ($enabled === NULL) {
162 $config = CRM_Core_Config::singleton();
163 $enabled = array();
164 if (isset($config->languageLimit) and $config->languageLimit) {
165 foreach ($all as $code => $name) {
166 if (in_array($code, array_keys($config->languageLimit))) {
167 $enabled[$code] = $name;
168 }
169 }
170 }
171 }
172
173 return $justEnabled ? $enabled : $all;
174 }
175
176 /**
177 * Replace arguments in a string with their values. Arguments are represented by % followed by their number.
178 *
5a4f6742
CW
179 * @param string $str
180 * source string.
6a488035 181 *
a6c01b45
CW
182 * @return string
183 * modified string
6a488035 184 */
00be9182 185 public function strarg($str) {
6a488035
TO
186 $tr = array();
187 $p = 0;
188 for ($i = 1; $i < func_num_args(); $i++) {
189 $arg = func_get_arg($i);
190 if (is_array($arg)) {
191 foreach ($arg as $aarg) {
192 $tr['%' . ++$p] = $aarg;
193 }
194 }
195 else {
196 $tr['%' . ++$p] = $arg;
197 }
198 }
199 return strtr($str, $tr);
200 }
201
4d8ce7f0
TO
202 public static function getResourceDir() {
203 static $dir = NULL;
204 if ($dir === NULL) {
205 $dir = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR;
206 }
207 return $dir;
208 }
209
6a488035
TO
210 /**
211 * Smarty block function, provides gettext support for smarty.
212 *
213 * The block content is the text that should be translated.
214 *
215 * Any parameter that is sent to the function will be represented as %n in the translation text,
216 * where n is 1 for the first parameter. The following parameters are reserved:
217 * - escape - sets escape mode:
218 * - 'html' for HTML escaping, this is the default.
219 * - 'js' for javascript escaping.
220 * - 'no'/'off'/0 - turns off escaping
221 * - plural - The plural version of the text (2nd parameter of ngettext())
222 * - count - The item count for plural mode (3rd parameter of ngettext())
223 * - context - gettext context of that string (for homonym handling)
224 *
5a4f6742
CW
225 * @param string $text
226 * the original string.
227 * @param array $params
3f3bba82
TO
228 * The params of the translation (if any).
229 * - domain: string|array a list of translation domains to search (in order)
230 * - context: string
a6c01b45
CW
231 * @return string
232 * the translated string
6a488035 233 */
00be9182 234 public function crm_translate($text, $params = array()) {
6a488035
TO
235 if (isset($params['escape'])) {
236 $escape = $params['escape'];
237 unset($params['escape']);
238 }
239
240 // sometimes we need to {ts}-tag a string, but don’t want to
241 // translate it in the template (like civicrm_navigation.tpl),
242 // because we handle the translation in a different way (CRM-6998)
243 // in such cases we return early, only doing SQL/JS escaping
244 if (isset($params['skip']) and $params['skip']) {
245 if (isset($escape) and ($escape == 'sql')) {
74032946 246 $text = CRM_Core_DAO::escapeString($text);
6a488035
TO
247 }
248 if (isset($escape) and ($escape == 'js')) {
249 $text = addcslashes($text, "'");
250 }
251 return $text;
252 }
253
3f3bba82 254 $plural = $count = NULL;
6a488035
TO
255 if (isset($params['plural'])) {
256 $plural = $params['plural'];
257 unset($params['plural']);
258 if (isset($params['count'])) {
259 $count = $params['count'];
260 }
261 }
262
263 if (isset($params['context'])) {
264 $context = $params['context'];
265 unset($params['context']);
266 }
267 else {
268 $context = NULL;
269 }
270
3f3bba82
TO
271 if (isset($params['domain'])) {
272 $domain = $params['domain'];
273 unset($params['domain']);
274 }
275 else {
276 $domain = NULL;
277 }
278
1b4710da
TO
279 $raw = !empty($params['raw']);
280 unset($params['raw']);
281
3f3bba82
TO
282 if (!empty($domain)) {
283 // It might be prettier to cast to an array, but this is high-traffic stuff.
284 if (is_array($domain)) {
285 foreach ($domain as $d) {
286 $candidate = $this->crm_translate_raw($text, $d, $count, $plural, $context);
287 if ($candidate != $text) {
288 $text = $candidate;
289 break;
290 }
291 }
292 }
293 else {
294 $text = $this->crm_translate_raw($text, $domain, $count, $plural, $context);
295 }
296 }
297 else {
298 $text = $this->crm_translate_raw($text, NULL, $count, $plural, $context);
299 }
300
301 // replace the numbered %1, %2, etc. params if present
1b4710da 302 if (count($params) && !$raw) {
3f3bba82
TO
303 $text = $this->strarg($text, $params);
304 }
305
306 // escape SQL if we were asked for it
307 if (isset($escape) and ($escape == 'sql')) {
308 $text = CRM_Core_DAO::escapeString($text);
309 }
310
311 // escape for JavaScript (if requested)
312 if (isset($escape) and ($escape == 'js')) {
313 $text = addcslashes($text, "'");
314 }
315
316 return $text;
317 }
318
319 /**
320 * Lookup the raw translation of a string (without any extra escaping or interpolation).
321 *
322 * @param string $text
323 * @param string|NULL $domain
324 * @param int|NULL $count
325 * @param string $plural
326 * @param string $context
327 * @return mixed|string|translated
328 */
329 protected function crm_translate_raw($text, $domain, $count, $plural, $context) {
1a3cba0e
ML
330 // gettext domain for extensions
331 $domain_changed = FALSE;
3f3bba82
TO
332 if (!empty($domain) && $this->_phpgettext) {
333 if ($this->setGettextDomain($domain)) {
1a3cba0e
ML
334 $domain_changed = TRUE;
335 }
336 }
337
6a488035
TO
338 // do all wildcard translations first
339 $config = CRM_Core_Config::singleton();
6cf5bb6f
DL
340 $stringTable = CRM_Utils_Array::value(
341 $config->lcMessages,
6a488035
TO
342 $config->localeCustomStrings
343 );
344
345 $exactMatch = FALSE;
346 if (isset($stringTable['enabled']['exactMatch'])) {
347 foreach ($stringTable['enabled']['exactMatch'] as $search => $replace) {
348 if ($search === $text) {
349 $exactMatch = TRUE;
350 $text = $replace;
351 break;
352 }
353 }
354 }
355
6cf5bb6f
DL
356 if (
357 !$exactMatch &&
6a488035
TO
358 isset($stringTable['enabled']['wildcardMatch'])
359 ) {
353ffa53 360 $search = array_keys($stringTable['enabled']['wildcardMatch']);
6a488035 361 $replace = array_values($stringTable['enabled']['wildcardMatch']);
353ffa53 362 $text = str_replace($search, $replace, $text);
6a488035
TO
363 }
364
365 // dont translate if we've done exactMatch already
366 if (!$exactMatch) {
367 // use plural if required parameters are set
368 if (isset($count) && isset($plural)) {
369
370 if ($this->_phpgettext) {
371 $text = $this->_phpgettext->ngettext($text, $plural, $count);
372 }
373 else {
374 // if the locale's not set, we do ngettext work by hand
375 // if $count == 1 then $text = $text, else $text = $plural
376 if ($count != 1) {
377 $text = $plural;
378 }
379 }
380
381 // expand %count in translated string to $count
382 $text = strtr($text, array('%count' => $count));
383
384 // if not plural, but the locale's set, translate
385 }
386 elseif ($this->_phpgettext) {
387 if ($context) {
388 $text = $this->_phpgettext->pgettext($context, $text);
389 }
390 else {
391 $text = $this->_phpgettext->translate($text);
392 }
393 }
394 }
395
1a3cba0e
ML
396 if ($domain_changed) {
397 $this->setGettextDomain('civicrm');
398 }
399
6a488035
TO
400 return $text;
401 }
402
403 /**
404 * Translate a string to the current locale.
405 *
5a4f6742
CW
406 * @param string $string
407 * this string should be translated.
6a488035 408 *
a6c01b45
CW
409 * @return string
410 * the translated string
6a488035 411 */
00be9182 412 public function translate($string) {
6a488035
TO
413 return ($this->_phpgettext) ? $this->_phpgettext->translate($string) : $string;
414 }
415
416 /**
417 * Localize (destructively) array values.
418 *
5a4f6742
CW
419 * @param array $array
420 * the array for localization (in place).
421 * @param array $params
422 * an array of additional parameters.
6a488035 423 *
2b37475d 424 * @return void
6a488035 425 */
408b79bf 426 public function localizeArray(
6a488035
TO
427 &$array,
428 $params = array()
429 ) {
430 global $tsLocale;
431
432 if ($tsLocale == 'en_US') {
433 return;
434 }
435
436 foreach ($array as & $value) {
437 if ($value) {
438 $value = ts($value, $params);
439 }
440 }
441 }
442
443 /**
444 * Localize (destructively) array elements with keys of 'title'.
445 *
5a4f6742
CW
446 * @param array $array
447 * the array for localization (in place).
6a488035 448 *
2b37475d 449 * @return void
6a488035 450 */
00be9182 451 public function localizeTitles(&$array) {
6a488035
TO
452 foreach ($array as $key => $value) {
453 if (is_array($value)) {
454 $this->localizeTitles($value);
455 $array[$key] = $value;
456 }
457 elseif ((string ) $key == 'title') {
eb7d6f39 458 $array[$key] = ts($value, array('context' => 'menu'));
6a488035
TO
459 }
460 }
461 }
462
1a3cba0e
ML
463 /**
464 * Binds a gettext domain, wrapper over bindtextdomain().
465 *
6a0b768e
TO
466 * @param $key
467 * Key of the extension (can be 'civicrm', or 'org.example.foo').
1a3cba0e 468 *
408b79bf 469 * @return Bool
a6c01b45 470 * True if the domain was changed for an extension.
1a3cba0e 471 */
00be9182 472 public function setGettextDomain($key) {
82bcff63 473 /* No domain changes for en_US */
353ffa53 474 if (!$this->_phpgettext) {
82bcff63
ML
475 return FALSE;
476 }
1a3cba0e 477
74eb462f 478 // It's only necessary to find/bind once
353ffa53 479 if (!isset($this->_extensioncache[$key])) {
1a3cba0e
ML
480 $config = CRM_Core_Config::singleton();
481
482 try {
483 $mapper = CRM_Extension_System::singleton()->getMapper();
484 $path = $mapper->keyToBasePath($key);
485 $info = $mapper->keyToInfo($key);
486 $domain = $info->file;
487
74eb462f
ML
488 if ($this->_nativegettext) {
489 bindtextdomain($domain, $path . DIRECTORY_SEPARATOR . 'l10n');
490 bind_textdomain_codeset($domain, 'UTF-8');
491 $this->_extensioncache[$key] = $domain;
492 }
493 else {
494 // phpgettext
495 $mo_file = $path . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR . $config->lcMessages . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . $domain . '.mo';
496 $streamer = new FileReader($mo_file);
497 $this->_extensioncache[$key] = new gettext_reader($streamer);
498 }
1a3cba0e
ML
499 }
500 catch (CRM_Extension_Exception $e) {
b44e3f84 501 // Intentionally not translating this string to avoid possible infinite loops
74eb462f
ML
502 // Only developers should see this string, if they made a mistake in their ts() usage.
503 CRM_Core_Session::setStatus('Unknown extension key in a translation string: ' . $key, '', 'error');
504 $this->_extensioncache[$key] = FALSE;
1a3cba0e
ML
505 }
506 }
507
74eb462f
ML
508 if (isset($this->_extensioncache[$key]) && $this->_extensioncache[$key]) {
509 if ($this->_nativegettext) {
510 textdomain($this->_extensioncache[$key]);
511 }
512 else {
513 $this->_phpgettext = $this->_extensioncache[$key];
514 }
515
516 return TRUE;
1a3cba0e 517 }
74eb462f
ML
518
519 return FALSE;
1a3cba0e
ML
520 }
521
6a488035
TO
522 /**
523 * Static instance provider - return the instance for the current locale.
c4c311c1
CW
524 *
525 * @return CRM_Core_I18n
6a488035 526 */
00be9182 527 public static function &singleton() {
6a488035
TO
528 static $singleton = array();
529
530 global $tsLocale;
531 if (!isset($singleton[$tsLocale])) {
532 $singleton[$tsLocale] = new CRM_Core_I18n($tsLocale);
533 }
534
535 return $singleton[$tsLocale];
536 }
537
538 /**
539 * Set the LC_TIME locale if it's not set already (for a given language choice).
540 *
a6c01b45
CW
541 * @return string
542 * the final LC_TIME that got set
6a488035 543 */
00be9182 544 public static function setLcTime() {
6a488035
TO
545 static $locales = array();
546
547 global $tsLocale;
548 if (!isset($locales[$tsLocale])) {
549 // with the config being set to pl_PL: try pl_PL.UTF-8,
550 // then pl_PL, if neither present fall back to C
551 $locales[$tsLocale] = setlocale(LC_TIME, $tsLocale . '.UTF-8', $tsLocale, 'C');
552 }
553
554 return $locales[$tsLocale];
555 }
96025800 556
6a488035
TO
557}
558
559/**
560 * Short-named function for string translation, defined in global scope so it's available everywhere.
561 *
6a0b768e
TO
562 * @param $text
563 * String string for translating.
16b10e64 564 * @param array $params
6a0b768e 565 * Array an array of additional parameters.
6a488035 566 *
a6c01b45 567 * @return string
353ffa53 568 * the translated string
6a488035
TO
569 */
570function ts($text, $params = array()) {
571 static $config = NULL;
572 static $locale = NULL;
573 static $i18n = NULL;
574 static $function = NULL;
575
576 if ($text == '') {
577 return '';
578 }
579
580 if (!$config) {
581 $config = CRM_Core_Config::singleton();
582 }
583
584 global $tsLocale;
585 if (!$i18n or $locale != $tsLocale) {
586 $i18n = CRM_Core_I18n::singleton();
587 $locale = $tsLocale;
588 if (isset($config->customTranslateFunction) and function_exists($config->customTranslateFunction)) {
589 $function = $config->customTranslateFunction;
590 }
591 }
592
593 if ($function) {
594 return $function($text, $params);
595 }
596 else {
597 return $i18n->crm_translate($text, $params);
598 }
599}