CRM-16808 follow up - paypal express being validated as paypal pro
[civicrm-core.git] / CRM / Core / I18n.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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
80 bindtextdomain('civicrm', $config->gettextResourceDir);
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
b395e3c0
ML
96 $mo_file = $config->gettextResourceDir . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . 'civicrm.mo';
97
353ffa53 98 if (!file_exists($mo_file)) {
b395e3c0
ML
99 // fallback to pre-4.5 mode
100 $mo_file = $config->gettextResourceDir . $locale . DIRECTORY_SEPARATOR . 'civicrm.mo';
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();
948d11bf 138 if (is_dir($config->gettextResourceDir) && $dir = opendir($config->gettextResourceDir)) {
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
202 /**
203 * Smarty block function, provides gettext support for smarty.
204 *
205 * The block content is the text that should be translated.
206 *
207 * Any parameter that is sent to the function will be represented as %n in the translation text,
208 * where n is 1 for the first parameter. The following parameters are reserved:
209 * - escape - sets escape mode:
210 * - 'html' for HTML escaping, this is the default.
211 * - 'js' for javascript escaping.
212 * - 'no'/'off'/0 - turns off escaping
213 * - plural - The plural version of the text (2nd parameter of ngettext())
214 * - count - The item count for plural mode (3rd parameter of ngettext())
215 * - context - gettext context of that string (for homonym handling)
216 *
5a4f6742
CW
217 * @param string $text
218 * the original string.
219 * @param array $params
3f3bba82
TO
220 * The params of the translation (if any).
221 * - domain: string|array a list of translation domains to search (in order)
222 * - context: string
a6c01b45
CW
223 * @return string
224 * the translated string
6a488035 225 */
00be9182 226 public function crm_translate($text, $params = array()) {
6a488035
TO
227 if (isset($params['escape'])) {
228 $escape = $params['escape'];
229 unset($params['escape']);
230 }
231
232 // sometimes we need to {ts}-tag a string, but don’t want to
233 // translate it in the template (like civicrm_navigation.tpl),
234 // because we handle the translation in a different way (CRM-6998)
235 // in such cases we return early, only doing SQL/JS escaping
236 if (isset($params['skip']) and $params['skip']) {
237 if (isset($escape) and ($escape == 'sql')) {
74032946 238 $text = CRM_Core_DAO::escapeString($text);
6a488035
TO
239 }
240 if (isset($escape) and ($escape == 'js')) {
241 $text = addcslashes($text, "'");
242 }
243 return $text;
244 }
245
3f3bba82 246 $plural = $count = NULL;
6a488035
TO
247 if (isset($params['plural'])) {
248 $plural = $params['plural'];
249 unset($params['plural']);
250 if (isset($params['count'])) {
251 $count = $params['count'];
252 }
253 }
254
255 if (isset($params['context'])) {
256 $context = $params['context'];
257 unset($params['context']);
258 }
259 else {
260 $context = NULL;
261 }
262
3f3bba82
TO
263 if (isset($params['domain'])) {
264 $domain = $params['domain'];
265 unset($params['domain']);
266 }
267 else {
268 $domain = NULL;
269 }
270
1b4710da
TO
271 $raw = !empty($params['raw']);
272 unset($params['raw']);
273
3f3bba82
TO
274 if (!empty($domain)) {
275 // It might be prettier to cast to an array, but this is high-traffic stuff.
276 if (is_array($domain)) {
277 foreach ($domain as $d) {
278 $candidate = $this->crm_translate_raw($text, $d, $count, $plural, $context);
279 if ($candidate != $text) {
280 $text = $candidate;
281 break;
282 }
283 }
284 }
285 else {
286 $text = $this->crm_translate_raw($text, $domain, $count, $plural, $context);
287 }
288 }
289 else {
290 $text = $this->crm_translate_raw($text, NULL, $count, $plural, $context);
291 }
292
293 // replace the numbered %1, %2, etc. params if present
1b4710da 294 if (count($params) && !$raw) {
3f3bba82
TO
295 $text = $this->strarg($text, $params);
296 }
297
298 // escape SQL if we were asked for it
299 if (isset($escape) and ($escape == 'sql')) {
300 $text = CRM_Core_DAO::escapeString($text);
301 }
302
303 // escape for JavaScript (if requested)
304 if (isset($escape) and ($escape == 'js')) {
305 $text = addcslashes($text, "'");
306 }
307
308 return $text;
309 }
310
311 /**
312 * Lookup the raw translation of a string (without any extra escaping or interpolation).
313 *
314 * @param string $text
315 * @param string|NULL $domain
316 * @param int|NULL $count
317 * @param string $plural
318 * @param string $context
319 * @return mixed|string|translated
320 */
321 protected function crm_translate_raw($text, $domain, $count, $plural, $context) {
1a3cba0e
ML
322 // gettext domain for extensions
323 $domain_changed = FALSE;
3f3bba82
TO
324 if (!empty($domain) && $this->_phpgettext) {
325 if ($this->setGettextDomain($domain)) {
1a3cba0e
ML
326 $domain_changed = TRUE;
327 }
328 }
329
6a488035
TO
330 // do all wildcard translations first
331 $config = CRM_Core_Config::singleton();
6cf5bb6f
DL
332 $stringTable = CRM_Utils_Array::value(
333 $config->lcMessages,
6a488035
TO
334 $config->localeCustomStrings
335 );
336
337 $exactMatch = FALSE;
338 if (isset($stringTable['enabled']['exactMatch'])) {
339 foreach ($stringTable['enabled']['exactMatch'] as $search => $replace) {
340 if ($search === $text) {
341 $exactMatch = TRUE;
342 $text = $replace;
343 break;
344 }
345 }
346 }
347
6cf5bb6f
DL
348 if (
349 !$exactMatch &&
6a488035
TO
350 isset($stringTable['enabled']['wildcardMatch'])
351 ) {
353ffa53 352 $search = array_keys($stringTable['enabled']['wildcardMatch']);
6a488035 353 $replace = array_values($stringTable['enabled']['wildcardMatch']);
353ffa53 354 $text = str_replace($search, $replace, $text);
6a488035
TO
355 }
356
357 // dont translate if we've done exactMatch already
358 if (!$exactMatch) {
359 // use plural if required parameters are set
360 if (isset($count) && isset($plural)) {
361
362 if ($this->_phpgettext) {
363 $text = $this->_phpgettext->ngettext($text, $plural, $count);
364 }
365 else {
366 // if the locale's not set, we do ngettext work by hand
367 // if $count == 1 then $text = $text, else $text = $plural
368 if ($count != 1) {
369 $text = $plural;
370 }
371 }
372
373 // expand %count in translated string to $count
374 $text = strtr($text, array('%count' => $count));
375
376 // if not plural, but the locale's set, translate
377 }
378 elseif ($this->_phpgettext) {
379 if ($context) {
380 $text = $this->_phpgettext->pgettext($context, $text);
381 }
382 else {
383 $text = $this->_phpgettext->translate($text);
384 }
385 }
386 }
387
1a3cba0e
ML
388 if ($domain_changed) {
389 $this->setGettextDomain('civicrm');
390 }
391
6a488035
TO
392 return $text;
393 }
394
395 /**
396 * Translate a string to the current locale.
397 *
5a4f6742
CW
398 * @param string $string
399 * this string should be translated.
6a488035 400 *
a6c01b45
CW
401 * @return string
402 * the translated string
6a488035 403 */
00be9182 404 public function translate($string) {
6a488035
TO
405 return ($this->_phpgettext) ? $this->_phpgettext->translate($string) : $string;
406 }
407
408 /**
409 * Localize (destructively) array values.
410 *
5a4f6742
CW
411 * @param array $array
412 * the array for localization (in place).
413 * @param array $params
414 * an array of additional parameters.
6a488035 415 *
2b37475d 416 * @return void
6a488035 417 */
408b79bf 418 public function localizeArray(
6a488035
TO
419 &$array,
420 $params = array()
421 ) {
422 global $tsLocale;
423
424 if ($tsLocale == 'en_US') {
425 return;
426 }
427
428 foreach ($array as & $value) {
429 if ($value) {
430 $value = ts($value, $params);
431 }
432 }
433 }
434
435 /**
436 * Localize (destructively) array elements with keys of 'title'.
437 *
5a4f6742
CW
438 * @param array $array
439 * the array for localization (in place).
6a488035 440 *
2b37475d 441 * @return void
6a488035 442 */
00be9182 443 public function localizeTitles(&$array) {
6a488035
TO
444 foreach ($array as $key => $value) {
445 if (is_array($value)) {
446 $this->localizeTitles($value);
447 $array[$key] = $value;
448 }
449 elseif ((string ) $key == 'title') {
eb7d6f39 450 $array[$key] = ts($value, array('context' => 'menu'));
6a488035
TO
451 }
452 }
453 }
454
1a3cba0e
ML
455 /**
456 * Binds a gettext domain, wrapper over bindtextdomain().
457 *
6a0b768e
TO
458 * @param $key
459 * Key of the extension (can be 'civicrm', or 'org.example.foo').
1a3cba0e 460 *
408b79bf 461 * @return Bool
a6c01b45 462 * True if the domain was changed for an extension.
1a3cba0e 463 */
00be9182 464 public function setGettextDomain($key) {
82bcff63 465 /* No domain changes for en_US */
353ffa53 466 if (!$this->_phpgettext) {
82bcff63
ML
467 return FALSE;
468 }
1a3cba0e 469
74eb462f 470 // It's only necessary to find/bind once
353ffa53 471 if (!isset($this->_extensioncache[$key])) {
1a3cba0e
ML
472 $config = CRM_Core_Config::singleton();
473
474 try {
475 $mapper = CRM_Extension_System::singleton()->getMapper();
476 $path = $mapper->keyToBasePath($key);
477 $info = $mapper->keyToInfo($key);
478 $domain = $info->file;
479
74eb462f
ML
480 if ($this->_nativegettext) {
481 bindtextdomain($domain, $path . DIRECTORY_SEPARATOR . 'l10n');
482 bind_textdomain_codeset($domain, 'UTF-8');
483 $this->_extensioncache[$key] = $domain;
484 }
485 else {
486 // phpgettext
487 $mo_file = $path . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR . $config->lcMessages . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . $domain . '.mo';
488 $streamer = new FileReader($mo_file);
489 $this->_extensioncache[$key] = new gettext_reader($streamer);
490 }
1a3cba0e
ML
491 }
492 catch (CRM_Extension_Exception $e) {
b44e3f84 493 // Intentionally not translating this string to avoid possible infinite loops
74eb462f
ML
494 // Only developers should see this string, if they made a mistake in their ts() usage.
495 CRM_Core_Session::setStatus('Unknown extension key in a translation string: ' . $key, '', 'error');
496 $this->_extensioncache[$key] = FALSE;
1a3cba0e
ML
497 }
498 }
499
74eb462f
ML
500 if (isset($this->_extensioncache[$key]) && $this->_extensioncache[$key]) {
501 if ($this->_nativegettext) {
502 textdomain($this->_extensioncache[$key]);
503 }
504 else {
505 $this->_phpgettext = $this->_extensioncache[$key];
506 }
507
508 return TRUE;
1a3cba0e 509 }
74eb462f
ML
510
511 return FALSE;
1a3cba0e
ML
512 }
513
6a488035
TO
514 /**
515 * Static instance provider - return the instance for the current locale.
c4c311c1
CW
516 *
517 * @return CRM_Core_I18n
6a488035 518 */
00be9182 519 public static function &singleton() {
6a488035
TO
520 static $singleton = array();
521
522 global $tsLocale;
523 if (!isset($singleton[$tsLocale])) {
524 $singleton[$tsLocale] = new CRM_Core_I18n($tsLocale);
525 }
526
527 return $singleton[$tsLocale];
528 }
529
530 /**
531 * Set the LC_TIME locale if it's not set already (for a given language choice).
532 *
a6c01b45
CW
533 * @return string
534 * the final LC_TIME that got set
6a488035 535 */
00be9182 536 public static function setLcTime() {
6a488035
TO
537 static $locales = array();
538
539 global $tsLocale;
540 if (!isset($locales[$tsLocale])) {
541 // with the config being set to pl_PL: try pl_PL.UTF-8,
542 // then pl_PL, if neither present fall back to C
543 $locales[$tsLocale] = setlocale(LC_TIME, $tsLocale . '.UTF-8', $tsLocale, 'C');
544 }
545
546 return $locales[$tsLocale];
547 }
96025800 548
6a488035
TO
549}
550
551/**
552 * Short-named function for string translation, defined in global scope so it's available everywhere.
553 *
6a0b768e
TO
554 * @param $text
555 * String string for translating.
16b10e64 556 * @param array $params
6a0b768e 557 * Array an array of additional parameters.
6a488035 558 *
a6c01b45 559 * @return string
353ffa53 560 * the translated string
6a488035
TO
561 */
562function ts($text, $params = array()) {
563 static $config = NULL;
564 static $locale = NULL;
565 static $i18n = NULL;
566 static $function = NULL;
567
568 if ($text == '') {
569 return '';
570 }
571
572 if (!$config) {
573 $config = CRM_Core_Config::singleton();
574 }
575
576 global $tsLocale;
577 if (!$i18n or $locale != $tsLocale) {
578 $i18n = CRM_Core_I18n::singleton();
579 $locale = $tsLocale;
580 if (isset($config->customTranslateFunction) and function_exists($config->customTranslateFunction)) {
581 $function = $config->customTranslateFunction;
582 }
583 }
584
585 if ($function) {
586 return $function($text, $params);
587 }
588 else {
589 return $i18n->crm_translate($text, $params);
590 }
591}