Merge pull request #16017 from mattwire/setentitysubtype
[civicrm-core.git] / CRM / Core / I18n.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17class CRM_Core_I18n {
18
07844ccf
SV
19 /**
20 * Constants for communication preferences.
21 *
22 * @var int
23 */
24 const NONE = 'none', AUTO = 'auto';
25
2c4bba53 26 /**
e97c66ff 27 * @var callable|null
2c4bba53
TO
28 * A callback function which handles SQL string encoding.
29 * Set NULL to use the default, CRM_Core_DAO::escapeString().
30 * This is used by `ts(..., [escape=>sql])`.
31 *
32 * This option is not intended for general consumption. It is only intended
33 * for certain pre-boot/pre-install contexts.
34 *
35 * You might ask, "Why on Earth does string-translation have an opinion on
36 * SQL escaping?" Good question!
37 */
38 public static $SQL_ESCAPER = NULL;
39
40 /**
41 * Encode a string for use in SQL.
42 *
43 * @param string $text
44 * @return string
45 */
46 protected static function escapeSql($text) {
47 if (self::$SQL_ESCAPER == NULL) {
48 return CRM_Core_DAO::escapeString($text);
49 }
50 else {
51 return call_user_func(self::$SQL_ESCAPER, $text);
52 }
53 }
07844ccf 54
6a488035 55 /**
2ba175b6
DL
56 * A PHP-gettext instance for string translation;
57 * should stay null if the strings are not to be translated (en_US).
518fa0ee 58 * @var object
6a488035
TO
59 */
60 private $_phpgettext = NULL;
61
62 /**
63 * Whether we are using native gettext or not.
518fa0ee 64 * @var bool
6a488035
TO
65 */
66 private $_nativegettext = FALSE;
67
74eb462f
ML
68 /**
69 * Gettext cache for extension domains/streamers, depending on if native or phpgettext.
70 * - native gettext: we cache the value for textdomain()
71 * - phpgettext: we cache the file streamer.
518fa0ee 72 * @var array
74eb462f 73 */
be2fb01f 74 private $_extensioncache = [];
74eb462f 75
0d096477
TO
76 /**
77 * @var string
78 */
79 private $locale;
80
6a488035
TO
81 /**
82 * A locale-based constructor that shouldn't be called from outside of this class (use singleton() instead).
83 *
5a4f6742
CW
84 * @param string $locale
85 * the base of this certain object's existence.
6a488035 86 *
77b97be7 87 * @return \CRM_Core_I18n
6a488035 88 */
00be9182 89 public function __construct($locale) {
0d096477 90 $this->locale = $locale;
6a488035 91 if ($locale != '' and $locale != 'en_US') {
6a488035
TO
92 if (defined('CIVICRM_GETTEXT_NATIVE') && CIVICRM_GETTEXT_NATIVE && function_exists('gettext')) {
93 // Note: the file hierarchy for .po must be, for example: l10n/fr_FR/LC_MESSAGES/civicrm.mo
94
95 $this->_nativegettext = TRUE;
c86241f4 96 $this->setNativeGettextLocale($locale);
6a488035
TO
97 return;
98 }
99
100 // Otherwise, use PHP-gettext
c86241f4 101 $this->setPhpGettextLocale($locale);
6a488035
TO
102 }
103 }
104
105 /**
106 * Returns whether gettext is running natively or using PHP-Gettext.
107 *
a6c01b45
CW
108 * @return bool
109 * True if gettext is native
6a488035 110 */
00be9182 111 public function isNative() {
6a488035
TO
112 return $this->_nativegettext;
113 }
114
f2ac86d1 115 /**
116 * Set native locale for getText.
117 *
118 * @param string $locale
119 */
c86241f4
SV
120 protected function setNativeGettextLocale($locale) {
121
122 $locale .= '.utf8';
123 putenv("LANG=$locale");
124
125 // CRM-11833 Avoid LC_ALL because of LC_NUMERIC and potential DB error.
126 setlocale(LC_TIME, $locale);
127 setlocale(LC_MESSAGES, $locale);
128 setlocale(LC_CTYPE, $locale);
129
130 bindtextdomain('civicrm', CRM_Core_I18n::getResourceDir());
131 bind_textdomain_codeset('civicrm', 'UTF-8');
132 textdomain('civicrm');
133
134 $this->_phpgettext = new CRM_Core_I18n_NativeGettext();
135 $this->_extensioncache['civicrm'] = 'civicrm';
136
137 }
138
f2ac86d1 139 /**
140 * Set getText locale.
141 *
142 * @param string $locale
143 */
c86241f4
SV
144 protected function setPhpGettextLocale($locale) {
145
146 // we support both the old file hierarchy format and the new:
147 // pre-4.5: civicrm/l10n/xx_XX/civicrm.mo
148 // post-4.5: civicrm/l10n/xx_XX/LC_MESSAGES/civicrm.mo
149 require_once 'PHPgettext/streams.php';
150 require_once 'PHPgettext/gettext.php';
151
152 $mo_file = CRM_Core_I18n::getResourceDir() . $locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . 'civicrm.mo';
153
154 if (!file_exists($mo_file)) {
155 // fallback to pre-4.5 mode
156 $mo_file = CRM_Core_I18n::getResourceDir() . $locale . DIRECTORY_SEPARATOR . 'civicrm.mo';
157 }
158
159 $streamer = new FileReader($mo_file);
160 $this->_phpgettext = new gettext_reader($streamer);
161 $this->_extensioncache['civicrm'] = $this->_phpgettext;
162
163 }
164
6a488035
TO
165 /**
166 * Return languages available in this instance of CiviCRM.
167 *
5a4f6742
CW
168 * @param bool $justEnabled
169 * whether to return all languages or just the enabled ones.
6a488035 170 *
a6c01b45 171 * @return array
16b10e64 172 * Array of code/language name mappings
6a488035 173 */
00be9182 174 public static function languages($justEnabled = FALSE) {
6a488035
TO
175 static $all = NULL;
176 static $enabled = NULL;
177
178 if (!$all) {
c0c9cd82 179 $all = CRM_Contact_BAO_Contact::buildOptions('preferred_language');
6a488035 180
ece6501c 181 // get labels
be2fb01f
CW
182 $rows = [];
183 $labels = [];
184 CRM_Core_OptionValue::getValues(['name' => 'languages'], $rows);
ece6501c
ML
185 foreach ($rows as $id => $row) {
186 $labels[$row['name']] = $row['label'];
187 }
188
6a488035 189 // check which ones are available; add them to $all if not there already
be2fb01f 190 $codes = [];
4d8ce7f0 191 if (is_dir(CRM_Core_I18n::getResourceDir()) && $dir = opendir(CRM_Core_I18n::getResourceDir())) {
6a488035
TO
192 while ($filename = readdir($dir)) {
193 if (preg_match('/^[a-z][a-z]_[A-Z][A-Z]$/', $filename)) {
194 $codes[] = $filename;
195 if (!isset($all[$filename])) {
ece6501c 196 $all[$filename] = $labels[$filename];
6a488035
TO
197 }
198 }
199 }
200 closedir($dir);
201 }
202
203 // drop the unavailable languages (except en_US)
204 foreach (array_keys($all) as $code) {
205 if ($code == 'en_US') {
206 continue;
207 }
408b79bf 208 if (!in_array($code, $codes)) {
209 unset($all[$code]);
210 }
6a488035 211 }
ece6501c 212
921ed8ae 213 asort($all);
6a488035
TO
214 }
215
216 if ($enabled === NULL) {
cc493f5e 217 $languageLimit = Civi::settings()->get('languageLimit');
be2fb01f 218 $enabled = [];
cc493f5e 219 if ($languageLimit) {
6a488035 220 foreach ($all as $code => $name) {
cc493f5e 221 if (array_key_exists($code, $languageLimit)) {
6a488035
TO
222 $enabled[$code] = $name;
223 }
224 }
225 }
226 }
227
228 return $justEnabled ? $enabled : $all;
229 }
230
921ed8ae
AS
231 /**
232 * Return the available UI languages
518fa0ee
SL
233 * @return array|string
234 * array(string languageCode => string languageName) if !$justCodes
921ed8ae
AS
235 */
236 public static function uiLanguages($justCodes = FALSE) {
237 // In multilang we only allow the languages that are configured in db
238 // Otherwise, the languages configured in uiLanguages
239 $settings = Civi::settings();
240 if (CRM_Core_I18n::isMultiLingual()) {
241 $codes = array_keys((array) $settings->get('languageLimit'));
242 }
243 else {
244 $codes = $settings->get('uiLanguages');
245 if (!$codes) {
246 $codes = [$settings->get('lcMessages')];
247 }
248 }
249 return $justCodes ? $codes
250 : CRM_Utils_Array::subset(CRM_Core_I18n::languages(), $codes);
251 }
252
6a488035
TO
253 /**
254 * Replace arguments in a string with their values. Arguments are represented by % followed by their number.
255 *
5a4f6742
CW
256 * @param string $str
257 * source string.
6a488035 258 *
a6c01b45
CW
259 * @return string
260 * modified string
6a488035 261 */
00be9182 262 public function strarg($str) {
be2fb01f 263 $tr = [];
6a488035
TO
264 $p = 0;
265 for ($i = 1; $i < func_num_args(); $i++) {
266 $arg = func_get_arg($i);
267 if (is_array($arg)) {
268 foreach ($arg as $aarg) {
269 $tr['%' . ++$p] = $aarg;
270 }
271 }
272 else {
273 $tr['%' . ++$p] = $arg;
274 }
275 }
276 return strtr($str, $tr);
277 }
278
f2ac86d1 279 /**
280 * Get the directory for l10n resources.
281 *
282 * @return string
283 */
4d8ce7f0
TO
284 public static function getResourceDir() {
285 static $dir = NULL;
286 if ($dir === NULL) {
287 $dir = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR;
288 }
289 return $dir;
290 }
291
6a488035
TO
292 /**
293 * Smarty block function, provides gettext support for smarty.
294 *
295 * The block content is the text that should be translated.
296 *
297 * Any parameter that is sent to the function will be represented as %n in the translation text,
298 * where n is 1 for the first parameter. The following parameters are reserved:
299 * - escape - sets escape mode:
300 * - 'html' for HTML escaping, this is the default.
301 * - 'js' for javascript escaping.
302 * - 'no'/'off'/0 - turns off escaping
303 * - plural - The plural version of the text (2nd parameter of ngettext())
304 * - count - The item count for plural mode (3rd parameter of ngettext())
305 * - context - gettext context of that string (for homonym handling)
306 *
5a4f6742
CW
307 * @param string $text
308 * the original string.
309 * @param array $params
3f3bba82
TO
310 * The params of the translation (if any).
311 * - domain: string|array a list of translation domains to search (in order)
312 * - context: string
69e812be 313 * - skip_translation: flag (do only escape/replacement, skip the actual translation)
e3b7fc11 314 *
a6c01b45
CW
315 * @return string
316 * the translated string
6a488035 317 */
be2fb01f 318 public function crm_translate($text, $params = []) {
6a488035
TO
319 if (isset($params['escape'])) {
320 $escape = $params['escape'];
321 unset($params['escape']);
322 }
323
324 // sometimes we need to {ts}-tag a string, but don’t want to
325 // translate it in the template (like civicrm_navigation.tpl),
326 // because we handle the translation in a different way (CRM-6998)
327 // in such cases we return early, only doing SQL/JS escaping
328 if (isset($params['skip']) and $params['skip']) {
329 if (isset($escape) and ($escape == 'sql')) {
2c4bba53 330 $text = self::escapeSql($text);
6a488035
TO
331 }
332 if (isset($escape) and ($escape == 'js')) {
333 $text = addcslashes($text, "'");
334 }
335 return $text;
336 }
337
3f3bba82 338 $plural = $count = NULL;
6a488035
TO
339 if (isset($params['plural'])) {
340 $plural = $params['plural'];
341 unset($params['plural']);
342 if (isset($params['count'])) {
343 $count = $params['count'];
344 }
345 }
346
347 if (isset($params['context'])) {
348 $context = $params['context'];
349 unset($params['context']);
350 }
351 else {
352 $context = NULL;
353 }
354
3f3bba82
TO
355 if (isset($params['domain'])) {
356 $domain = $params['domain'];
357 unset($params['domain']);
358 }
359 else {
360 $domain = NULL;
361 }
362
1b4710da
TO
363 $raw = !empty($params['raw']);
364 unset($params['raw']);
365
69e812be 366 if (!isset($params['skip_translation'])) {
2f98cf00
E
367 if (!empty($domain)) {
368 // It might be prettier to cast to an array, but this is high-traffic stuff.
369 if (is_array($domain)) {
370 foreach ($domain as $d) {
371 $candidate = $this->crm_translate_raw($text, $d, $count, $plural, $context);
372 if ($candidate != $text) {
373 $text = $candidate;
374 break;
375 }
3f3bba82
TO
376 }
377 }
2f98cf00
E
378 else {
379 $text = $this->crm_translate_raw($text, $domain, $count, $plural, $context);
380 }
3f3bba82
TO
381 }
382 else {
2f98cf00 383 $text = $this->crm_translate_raw($text, NULL, $count, $plural, $context);
3f3bba82
TO
384 }
385 }
3f3bba82
TO
386
387 // replace the numbered %1, %2, etc. params if present
1b4710da 388 if (count($params) && !$raw) {
3f3bba82
TO
389 $text = $this->strarg($text, $params);
390 }
391
392 // escape SQL if we were asked for it
393 if (isset($escape) and ($escape == 'sql')) {
2c4bba53 394 $text = self::escapeSql($text);
3f3bba82
TO
395 }
396
397 // escape for JavaScript (if requested)
398 if (isset($escape) and ($escape == 'js')) {
399 $text = addcslashes($text, "'");
400 }
401
402 return $text;
403 }
404
405 /**
406 * Lookup the raw translation of a string (without any extra escaping or interpolation).
407 *
408 * @param string $text
e97c66ff 409 * @param string|null $domain
410 * @param int|null $count
3f3bba82
TO
411 * @param string $plural
412 * @param string $context
e3b7fc11 413 *
414 * @return string
3f3bba82
TO
415 */
416 protected function crm_translate_raw($text, $domain, $count, $plural, $context) {
1a3cba0e
ML
417 // gettext domain for extensions
418 $domain_changed = FALSE;
3f3bba82
TO
419 if (!empty($domain) && $this->_phpgettext) {
420 if ($this->setGettextDomain($domain)) {
1a3cba0e
ML
421 $domain_changed = TRUE;
422 }
423 }
424
6a488035 425 // do all wildcard translations first
a565a9b6 426
7def74fa
TO
427 // FIXME: Is there a constant we can reference instead of hardcoding en_US?
428 $replacementsLocale = $this->locale ? $this->locale : 'en_US';
429 if (!isset(Civi::$statics[__CLASS__]) || !array_key_exists($replacementsLocale, Civi::$statics[__CLASS__])) {
0d096477 430 if (defined('CIVICRM_DSN') && !CRM_Core_Config::isUpgradeMode()) {
7def74fa 431 Civi::$statics[__CLASS__][$replacementsLocale] = CRM_Core_BAO_WordReplacement::getLocaleCustomStrings($replacementsLocale);
234d8f09
TO
432 }
433 else {
be2fb01f 434 Civi::$statics[__CLASS__][$replacementsLocale] = [];
234d8f09
TO
435 }
436 }
7def74fa 437 $stringTable = Civi::$statics[__CLASS__][$replacementsLocale];
6a488035
TO
438
439 $exactMatch = FALSE;
440 if (isset($stringTable['enabled']['exactMatch'])) {
441 foreach ($stringTable['enabled']['exactMatch'] as $search => $replace) {
442 if ($search === $text) {
443 $exactMatch = TRUE;
444 $text = $replace;
445 break;
446 }
447 }
448 }
449
6cf5bb6f
DL
450 if (
451 !$exactMatch &&
6a488035
TO
452 isset($stringTable['enabled']['wildcardMatch'])
453 ) {
353ffa53 454 $search = array_keys($stringTable['enabled']['wildcardMatch']);
6a488035 455 $replace = array_values($stringTable['enabled']['wildcardMatch']);
353ffa53 456 $text = str_replace($search, $replace, $text);
6a488035
TO
457 }
458
459 // dont translate if we've done exactMatch already
460 if (!$exactMatch) {
461 // use plural if required parameters are set
462 if (isset($count) && isset($plural)) {
463
464 if ($this->_phpgettext) {
465 $text = $this->_phpgettext->ngettext($text, $plural, $count);
466 }
467 else {
468 // if the locale's not set, we do ngettext work by hand
469 // if $count == 1 then $text = $text, else $text = $plural
470 if ($count != 1) {
471 $text = $plural;
472 }
473 }
474
475 // expand %count in translated string to $count
be2fb01f 476 $text = strtr($text, ['%count' => $count]);
6a488035
TO
477
478 // if not plural, but the locale's set, translate
479 }
480 elseif ($this->_phpgettext) {
481 if ($context) {
482 $text = $this->_phpgettext->pgettext($context, $text);
483 }
484 else {
485 $text = $this->_phpgettext->translate($text);
486 }
487 }
488 }
489
1a3cba0e
ML
490 if ($domain_changed) {
491 $this->setGettextDomain('civicrm');
492 }
493
6a488035
TO
494 return $text;
495 }
496
497 /**
498 * Translate a string to the current locale.
499 *
5a4f6742
CW
500 * @param string $string
501 * this string should be translated.
6a488035 502 *
a6c01b45
CW
503 * @return string
504 * the translated string
6a488035 505 */
00be9182 506 public function translate($string) {
6a488035
TO
507 return ($this->_phpgettext) ? $this->_phpgettext->translate($string) : $string;
508 }
509
510 /**
511 * Localize (destructively) array values.
512 *
5a4f6742
CW
513 * @param array $array
514 * the array for localization (in place).
515 * @param array $params
516 * an array of additional parameters.
6a488035 517 */
408b79bf 518 public function localizeArray(
6a488035 519 &$array,
be2fb01f 520 $params = []
6a488035 521 ) {
98466ff9 522 $tsLocale = CRM_Core_I18n::getLocale();
6a488035
TO
523
524 if ($tsLocale == 'en_US') {
525 return;
526 }
527
528 foreach ($array as & $value) {
529 if ($value) {
530 $value = ts($value, $params);
531 }
532 }
533 }
534
535 /**
536 * Localize (destructively) array elements with keys of 'title'.
537 *
5a4f6742
CW
538 * @param array $array
539 * the array for localization (in place).
6a488035 540 */
00be9182 541 public function localizeTitles(&$array) {
6a488035
TO
542 foreach ($array as $key => $value) {
543 if (is_array($value)) {
544 $this->localizeTitles($value);
545 $array[$key] = $value;
546 }
547 elseif ((string ) $key == 'title') {
be2fb01f 548 $array[$key] = ts($value, ['context' => 'menu']);
6a488035
TO
549 }
550 }
551 }
552
1a3cba0e
ML
553 /**
554 * Binds a gettext domain, wrapper over bindtextdomain().
555 *
6a0b768e
TO
556 * @param $key
557 * Key of the extension (can be 'civicrm', or 'org.example.foo').
1a3cba0e 558 *
408b79bf 559 * @return Bool
a6c01b45 560 * True if the domain was changed for an extension.
1a3cba0e 561 */
00be9182 562 public function setGettextDomain($key) {
82bcff63 563 /* No domain changes for en_US */
353ffa53 564 if (!$this->_phpgettext) {
82bcff63
ML
565 return FALSE;
566 }
1a3cba0e 567
74eb462f 568 // It's only necessary to find/bind once
353ffa53 569 if (!isset($this->_extensioncache[$key])) {
1a3cba0e
ML
570 try {
571 $mapper = CRM_Extension_System::singleton()->getMapper();
572 $path = $mapper->keyToBasePath($key);
573 $info = $mapper->keyToInfo($key);
574 $domain = $info->file;
575
74eb462f
ML
576 if ($this->_nativegettext) {
577 bindtextdomain($domain, $path . DIRECTORY_SEPARATOR . 'l10n');
578 bind_textdomain_codeset($domain, 'UTF-8');
579 $this->_extensioncache[$key] = $domain;
580 }
581 else {
582 // phpgettext
b52647df 583 $mo_file = $path . DIRECTORY_SEPARATOR . 'l10n' . DIRECTORY_SEPARATOR . $this->locale . DIRECTORY_SEPARATOR . 'LC_MESSAGES' . DIRECTORY_SEPARATOR . $domain . '.mo';
74eb462f
ML
584 $streamer = new FileReader($mo_file);
585 $this->_extensioncache[$key] = new gettext_reader($streamer);
586 }
1a3cba0e
ML
587 }
588 catch (CRM_Extension_Exception $e) {
b44e3f84 589 // Intentionally not translating this string to avoid possible infinite loops
74eb462f
ML
590 // Only developers should see this string, if they made a mistake in their ts() usage.
591 CRM_Core_Session::setStatus('Unknown extension key in a translation string: ' . $key, '', 'error');
592 $this->_extensioncache[$key] = FALSE;
1a3cba0e
ML
593 }
594 }
595
74eb462f
ML
596 if (isset($this->_extensioncache[$key]) && $this->_extensioncache[$key]) {
597 if ($this->_nativegettext) {
598 textdomain($this->_extensioncache[$key]);
599 }
600 else {
601 $this->_phpgettext = $this->_extensioncache[$key];
602 }
603
604 return TRUE;
1a3cba0e 605 }
74eb462f
ML
606
607 return FALSE;
1a3cba0e
ML
608 }
609
07844ccf
SV
610 /**
611 * Is the CiviCRM in multilingual mode.
612 *
613 * @return Bool
614 * True if CiviCRM is in multilingual mode.
615 */
616 public static function isMultilingual() {
617 $domain = new CRM_Core_DAO_Domain();
618 $domain->find(TRUE);
619 return (bool) $domain->locales;
620 }
621
3a55aa6b
ML
622 /**
623 * Is the language written "right-to-left"?
624 *
625 * @param $language
626 * Language (for example 'en_US', or 'fr_CA').
627 *
628 * @return Bool
629 * True if it is an RTL language.
630 */
631 public static function isLanguageRTL($language) {
632 $rtl = CRM_Core_I18n_PseudoConstant::getRTLlanguages();
633 $short = CRM_Core_I18n_PseudoConstant::shortForLong($language);
634
635 return (in_array($short, $rtl));
636 }
07844ccf
SV
637
638 /**
639 * Change the processing language without changing the current user language
640 *
c86241f4
SV
641 * @param $locale
642 * Locale (for example 'en_US', or 'fr_CA').
07844ccf
SV
643 * True if the domain was changed for an extension.
644 */
c86241f4 645 public function setLocale($locale) {
fd1f3a26
SV
646
647 // Change the language of the CMS as well, for URLs.
c86241f4 648 CRM_Utils_System::setUFLocale($locale);
fd1f3a26
SV
649
650 // change the gettext ressources
07844ccf 651 if ($this->_nativegettext) {
c86241f4 652 $this->setNativeGettextLocale($locale);
07844ccf
SV
653 }
654 else {
655 // phpgettext
c86241f4 656 $this->setPhpGettextLocale($locale);
07844ccf
SV
657 }
658
6b084142 659 // For sql queries, if running in DB multi-lingual mode.
53d46849 660 global $dbLocale;
6b084142
ML
661
662 if ($dbLocale) {
663 $dbLocale = "_{$locale}";
664 }
07844ccf 665
96cb9196
ML
666 // For self::getLocale()
667 global $tsLocale;
668 $tsLocale = $locale;
07844ccf
SV
669 }
670
6a488035
TO
671 /**
672 * Static instance provider - return the instance for the current locale.
c4c311c1
CW
673 *
674 * @return CRM_Core_I18n
6a488035 675 */
00be9182 676 public static function &singleton() {
9d65201d 677 if (!isset(Civi::$statics[__CLASS__]['singleton'])) {
be2fb01f 678 Civi::$statics[__CLASS__]['singleton'] = [];
9d65201d 679 }
98466ff9 680 $tsLocale = CRM_Core_I18n::getLocale();
9d65201d
SL
681 if (!isset(Civi::$statics[__CLASS__]['singleton'][$tsLocale])) {
682 Civi::$statics[__CLASS__]['singleton'][$tsLocale] = new CRM_Core_I18n($tsLocale);
6a488035
TO
683 }
684
9d65201d 685 return Civi::$statics[__CLASS__]['singleton'][$tsLocale];
6a488035
TO
686 }
687
688 /**
689 * Set the LC_TIME locale if it's not set already (for a given language choice).
690 *
a6c01b45
CW
691 * @return string
692 * the final LC_TIME that got set
6a488035 693 */
00be9182 694 public static function setLcTime() {
be2fb01f 695 static $locales = [];
6a488035 696
98466ff9 697 $tsLocale = CRM_Core_I18n::getLocale();
6a488035
TO
698 if (!isset($locales[$tsLocale])) {
699 // with the config being set to pl_PL: try pl_PL.UTF-8,
700 // then pl_PL, if neither present fall back to C
701 $locales[$tsLocale] = setlocale(LC_TIME, $tsLocale . '.UTF-8', $tsLocale, 'C');
702 }
703
704 return $locales[$tsLocale];
705 }
96025800 706
9747df8a 707 /**
708 * Get the default language for contacts where no language is provided.
709 *
710 * Note that NULL is a valid option so be careful with checking for empty etc.
711 *
712 * NULL would mean 'we don't know & we don't want to hazard a guess'.
713 *
714 * @return string
715 */
716 public static function getContactDefaultLanguage() {
aaffa79f 717 $language = Civi::settings()->get('contact_default_language');
9747df8a 718 if ($language == 'undefined') {
719 return NULL;
720 }
721 if (empty($language) || $language === '*default*') {
be2fb01f 722 $language = civicrm_api3('setting', 'getvalue', [
9747df8a 723 'name' => 'lcMessages',
724 'group' => CRM_Core_BAO_Setting::LOCALIZATION_PREFERENCES_NAME,
be2fb01f 725 ]);
9747df8a 726 }
727 elseif ($language == 'current_site_language') {
98466ff9 728 return CRM_Core_I18n::getLocale();
9747df8a 729 }
730
731 return $language;
732 }
733
186e53b3 734 /**
735 * Get the current locale
736 *
737 * @return string
738 */
739 public static function getLocale() {
740 global $tsLocale;
338ff411 741 return $tsLocale ? $tsLocale : 'en_US';
186e53b3 742 }
743
6a488035
TO
744}
745
746/**
747 * Short-named function for string translation, defined in global scope so it's available everywhere.
748 *
e3b7fc11 749 * @param string $text
6a0b768e 750 * String string for translating.
16b10e64 751 * @param array $params
6a0b768e 752 * Array an array of additional parameters.
6a488035 753 *
a6c01b45 754 * @return string
353ffa53 755 * the translated string
6a488035 756 */
be2fb01f 757function ts($text, $params = []) {
852de6cf 758 static $bootstrapReady = FALSE;
4954910a 759 static $lastLocale = NULL;
6a488035
TO
760 static $i18n = NULL;
761 static $function = NULL;
762
763 if ($text == '') {
764 return '';
765 }
766
4954910a 767 // When the settings become available, lookup customTranslateFunction.
852de6cf
E
768 if (!$bootstrapReady) {
769 $bootstrapReady = (bool) \Civi\Core\Container::isContainerBooted();
770 if ($bootstrapReady) {
771 // just got ready: determine whether there is a working custom translation function
4954910a
TO
772 $config = CRM_Core_Config::singleton();
773 if (isset($config->customTranslateFunction) and function_exists($config->customTranslateFunction)) {
774 $function = $config->customTranslateFunction;
775 }
776 }
852de6cf 777 else {
2f98cf00
E
778 // don't _translate_ anything until bootstrap has progressed enough
779 $params['skip_translation'] = 1;
852de6cf 780 }
6a488035
TO
781 }
782
4954910a
TO
783 $activeLocale = CRM_Core_I18n::getLocale();
784 if (!$i18n or $lastLocale != $activeLocale) {
6a488035 785 $i18n = CRM_Core_I18n::singleton();
4954910a 786 $lastLocale = $activeLocale;
6a488035
TO
787 }
788
789 if ($function) {
790 return $function($text, $params);
791 }
792 else {
793 return $i18n->crm_translate($text, $params);
794 }
795}