Merge pull request #694 from ravishnair/CRM-12528
[civicrm-core.git] / CRM / Core / I18n.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35class CRM_Core_I18n {
36
37 /**
38 * A PHP-gettext instance for string translation; should stay null if the strings are not to be translated (en_US).
39 */
40 private $_phpgettext = NULL;
41
42 /**
43 * Whether we are using native gettext or not.
44 */
45 private $_nativegettext = FALSE;
46
47 /**
48 * A locale-based constructor that shouldn't be called from outside of this class (use singleton() instead).
49 *
50 * @param $locale string the base of this certain object's existence
51 *
52 * @return void
53 */
54 function __construct($locale) {
55 if ($locale != '' and $locale != 'en_US') {
56 $config = CRM_Core_Config::singleton();
57
58 if (defined('CIVICRM_GETTEXT_NATIVE') && CIVICRM_GETTEXT_NATIVE && function_exists('gettext')) {
59 // Note: the file hierarchy for .po must be, for example: l10n/fr_FR/LC_MESSAGES/civicrm.mo
60
61 $this->_nativegettext = TRUE;
62
63 $locale .= '.utf8';
64 putenv("LANG=$locale");
65
66 // CRM-11833 Avoid LC_ALL because of LC_NUMERIC and potential DB error.
67 setlocale(LC_TIME, $locale);
68 setlocale(LC_MESSAGES, $locale);
69 setlocale(LC_CTYPE, $locale);
70
71 bindtextdomain('civicrm', $config->gettextResourceDir);
72 bind_textdomain_codeset('civicrm', 'UTF-8');
73 textdomain('civicrm');
74
75 $this->_phpgettext = new CRM_Core_I18n_NativeGettext();
76 return;
77 }
78
79 // Otherwise, use PHP-gettext
80 require_once 'PHPgettext/streams.php';
81 require_once 'PHPgettext/gettext.php';
82
83 $streamer = new FileReader($config->gettextResourceDir . $locale . DIRECTORY_SEPARATOR . 'civicrm.mo');
84 $this->_phpgettext = new gettext_reader($streamer);
85 }
86 }
87
88 /**
89 * Returns whether gettext is running natively or using PHP-Gettext.
90 *
91 * @return bool True if gettext is native
92 */
93 function isNative() {
94 return $this->_nativegettext;
95 }
96
97 /**
98 * Return languages available in this instance of CiviCRM.
99 *
100 * @param $justEnabled boolean whether to return all languages or just the enabled ones
101 *
102 * @return array of code/language name mappings
103 */
104 static function languages($justEnabled = FALSE) {
105 static $all = NULL;
106 static $enabled = NULL;
107
108 if (!$all) {
109 $all = CRM_Core_I18n_PseudoConstant::languages();
110
111 // check which ones are available; add them to $all if not there already
112 $config = CRM_Core_Config::singleton();
113 $codes = array();
114 if (is_dir($config->gettextResourceDir)) {
115 $dir = opendir($config->gettextResourceDir);
116 while ($filename = readdir($dir)) {
117 if (preg_match('/^[a-z][a-z]_[A-Z][A-Z]$/', $filename)) {
118 $codes[] = $filename;
119 if (!isset($all[$filename])) {
120 $all[$filename] = $filename;
121 }
122 }
123 }
124 closedir($dir);
125 }
126
127 // drop the unavailable languages (except en_US)
128 foreach (array_keys($all) as $code) {
129 if ($code == 'en_US') {
130 continue;
131 }
132 if (!in_array($code, $codes))unset($all[$code]);
133 }
134 }
135
136 if ($enabled === NULL) {
137 $config = CRM_Core_Config::singleton();
138 $enabled = array();
139 if (isset($config->languageLimit) and $config->languageLimit) {
140 foreach ($all as $code => $name) {
141 if (in_array($code, array_keys($config->languageLimit))) {
142 $enabled[$code] = $name;
143 }
144 }
145 }
146 }
147
148 return $justEnabled ? $enabled : $all;
149 }
150
151 /**
152 * Replace arguments in a string with their values. Arguments are represented by % followed by their number.
153 *
154 * @param $str string source string
155 * @param mixed arguments, can be passed in an array or through single variables
156 *
157 * @return string modified string
158 */
159 function strarg($str) {
160 $tr = array();
161 $p = 0;
162 for ($i = 1; $i < func_num_args(); $i++) {
163 $arg = func_get_arg($i);
164 if (is_array($arg)) {
165 foreach ($arg as $aarg) {
166 $tr['%' . ++$p] = $aarg;
167 }
168 }
169 else {
170 $tr['%' . ++$p] = $arg;
171 }
172 }
173 return strtr($str, $tr);
174 }
175
176 /**
177 * Smarty block function, provides gettext support for smarty.
178 *
179 * The block content is the text that should be translated.
180 *
181 * Any parameter that is sent to the function will be represented as %n in the translation text,
182 * where n is 1 for the first parameter. The following parameters are reserved:
183 * - escape - sets escape mode:
184 * - 'html' for HTML escaping, this is the default.
185 * - 'js' for javascript escaping.
186 * - 'no'/'off'/0 - turns off escaping
187 * - plural - The plural version of the text (2nd parameter of ngettext())
188 * - count - The item count for plural mode (3rd parameter of ngettext())
189 * - context - gettext context of that string (for homonym handling)
190 *
191 * @param $text string the original string
192 * @param $params array the params of the translation (if any)
193 *
194 * @return string the translated string
195 */
196 function crm_translate($text, $params = array()) {
197 if (isset($params['escape'])) {
198 $escape = $params['escape'];
199 unset($params['escape']);
200 }
201
202 // sometimes we need to {ts}-tag a string, but don’t want to
203 // translate it in the template (like civicrm_navigation.tpl),
204 // because we handle the translation in a different way (CRM-6998)
205 // in such cases we return early, only doing SQL/JS escaping
206 if (isset($params['skip']) and $params['skip']) {
207 if (isset($escape) and ($escape == 'sql')) {
208 $text = mysql_escape_string($text);
209 }
210 if (isset($escape) and ($escape == 'js')) {
211 $text = addcslashes($text, "'");
212 }
213 return $text;
214 }
215
216 if (isset($params['plural'])) {
217 $plural = $params['plural'];
218 unset($params['plural']);
219 if (isset($params['count'])) {
220 $count = $params['count'];
221 }
222 }
223
224 if (isset($params['context'])) {
225 $context = $params['context'];
226 unset($params['context']);
227 }
228 else {
229 $context = NULL;
230 }
231
232 // do all wildcard translations first
233 $config = CRM_Core_Config::singleton();
234 $stringTable = CRM_Utils_Array::value($config->lcMessages,
235 $config->localeCustomStrings
236 );
237
238 $exactMatch = FALSE;
239 if (isset($stringTable['enabled']['exactMatch'])) {
240 foreach ($stringTable['enabled']['exactMatch'] as $search => $replace) {
241 if ($search === $text) {
242 $exactMatch = TRUE;
243 $text = $replace;
244 break;
245 }
246 }
247 }
248
249 if (!$exactMatch &&
250 isset($stringTable['enabled']['wildcardMatch'])
251 ) {
252 $search = array_keys($stringTable['enabled']['wildcardMatch']);
253 $replace = array_values($stringTable['enabled']['wildcardMatch']);
254 $text = str_replace($search,
255 $replace,
256 $text
257 );
258 }
259
260 // dont translate if we've done exactMatch already
261 if (!$exactMatch) {
262 // use plural if required parameters are set
263 if (isset($count) && isset($plural)) {
264
265 if ($this->_phpgettext) {
266 $text = $this->_phpgettext->ngettext($text, $plural, $count);
267 }
268 else {
269 // if the locale's not set, we do ngettext work by hand
270 // if $count == 1 then $text = $text, else $text = $plural
271 if ($count != 1) {
272 $text = $plural;
273 }
274 }
275
276 // expand %count in translated string to $count
277 $text = strtr($text, array('%count' => $count));
278
279 // if not plural, but the locale's set, translate
280 }
281 elseif ($this->_phpgettext) {
282 if ($context) {
283 $text = $this->_phpgettext->pgettext($context, $text);
284 }
285 else {
286 $text = $this->_phpgettext->translate($text);
287 }
288 }
289 }
290
291 // replace the numbered %1, %2, etc. params if present
292 if (count($params)) {
293 $text = $this->strarg($text, $params);
294 }
295
296 // escape SQL if we were asked for it
297 if (isset($escape) and ($escape == 'sql')) {
298 $text = mysql_escape_string($text);
299 }
300
301 // escape for JavaScript (if requested)
302 if (isset($escape) and ($escape == 'js')) {
303 $text = addcslashes($text, "'");
304 }
305
306 return $text;
307 }
308
309 /**
310 * Translate a string to the current locale.
311 *
312 * @param $string string this string should be translated
313 *
314 * @return string the translated string
315 */
316 function translate($string) {
317 return ($this->_phpgettext) ? $this->_phpgettext->translate($string) : $string;
318 }
319
320 /**
321 * Localize (destructively) array values.
322 *
323 * @param $array array the array for localization (in place)
324 * @param $params array an array of additional parameters
325 *
326 * @return void
327 */
328 function localizeArray(
329 &$array,
330 $params = array()
331 ) {
332 global $tsLocale;
333
334 if ($tsLocale == 'en_US') {
335 return;
336 }
337
338 foreach ($array as & $value) {
339 if ($value) {
340 $value = ts($value, $params);
341 }
342 }
343 }
344
345 /**
346 * Localize (destructively) array elements with keys of 'title'.
347 *
348 * @param $array array the array for localization (in place)
349 *
350 * @return void
351 */
352 function localizeTitles(&$array) {
353 foreach ($array as $key => $value) {
354 if (is_array($value)) {
355 $this->localizeTitles($value);
356 $array[$key] = $value;
357 }
358 elseif ((string ) $key == 'title') {
eb7d6f39 359 $array[$key] = ts($value, array('context' => 'menu'));
6a488035
TO
360 }
361 }
362 }
363
364 /**
365 * Static instance provider - return the instance for the current locale.
366 */
367 static function &singleton() {
368 static $singleton = array();
369
370 global $tsLocale;
371 if (!isset($singleton[$tsLocale])) {
372 $singleton[$tsLocale] = new CRM_Core_I18n($tsLocale);
373 }
374
375 return $singleton[$tsLocale];
376 }
377
378 /**
379 * Set the LC_TIME locale if it's not set already (for a given language choice).
380 *
381 * @return string the final LC_TIME that got set
382 */
383 static function setLcTime() {
384 static $locales = array();
385
386 global $tsLocale;
387 if (!isset($locales[$tsLocale])) {
388 // with the config being set to pl_PL: try pl_PL.UTF-8,
389 // then pl_PL, if neither present fall back to C
390 $locales[$tsLocale] = setlocale(LC_TIME, $tsLocale . '.UTF-8', $tsLocale, 'C');
391 }
392
393 return $locales[$tsLocale];
394 }
395}
396
397/**
398 * Short-named function for string translation, defined in global scope so it's available everywhere.
399 *
400 * @param $text string string for translating
401 * @param $params array an array of additional parameters
402 *
403 * @return string the translated string
404 */
405function ts($text, $params = array()) {
406 static $config = NULL;
407 static $locale = NULL;
408 static $i18n = NULL;
409 static $function = NULL;
410
411 if ($text == '') {
412 return '';
413 }
414
415 if (!$config) {
416 $config = CRM_Core_Config::singleton();
417 }
418
419 global $tsLocale;
420 if (!$i18n or $locale != $tsLocale) {
421 $i18n = CRM_Core_I18n::singleton();
422 $locale = $tsLocale;
423 if (isset($config->customTranslateFunction) and function_exists($config->customTranslateFunction)) {
424 $function = $config->customTranslateFunction;
425 }
426 }
427
428 if ($function) {
429 return $function($text, $params);
430 }
431 else {
432 return $i18n->crm_translate($text, $params);
433 }
434}
435