2014-07-20 12:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Core;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Translator class
|
|
|
|
*
|
|
|
|
* @package core
|
|
|
|
* @author Frederic Guillot
|
|
|
|
*/
|
|
|
|
class Translator
|
|
|
|
{
|
|
|
|
/**
|
2014-11-23 20:13:38 +01:00
|
|
|
* Locale path
|
2014-07-20 12:26:15 +02:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-11-23 20:13:38 +01:00
|
|
|
const PATH = 'app/Locale/';
|
2014-07-20 12:26:15 +02:00
|
|
|
|
|
|
|
/**
|
2014-11-23 20:13:38 +01:00
|
|
|
* Locale
|
2014-07-20 12:26:15 +02:00
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @access private
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $locales = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a translation
|
|
|
|
*
|
|
|
|
* $translator->translate('I have %d kids', 5);
|
|
|
|
*
|
|
|
|
* @access public
|
2014-10-22 19:59:09 +02:00
|
|
|
* @param string $identifier Default string
|
2014-07-20 12:26:15 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function translate($identifier)
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
|
|
|
|
array_shift($args);
|
|
|
|
array_unshift($args, $this->get($identifier, $identifier));
|
|
|
|
|
|
|
|
foreach ($args as &$arg) {
|
|
|
|
$arg = htmlspecialchars($arg, ENT_QUOTES, 'UTF-8', false);
|
|
|
|
}
|
|
|
|
|
|
|
|
return call_user_func_array(
|
|
|
|
'sprintf',
|
|
|
|
$args
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
/**
|
|
|
|
* Get a translation with no HTML escaping
|
|
|
|
*
|
|
|
|
* $translator->translateNoEscaping('I have %d kids', 5);
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $identifier Default string
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function translateNoEscaping($identifier)
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
|
|
|
|
array_shift($args);
|
|
|
|
array_unshift($args, $this->get($identifier, $identifier));
|
|
|
|
|
|
|
|
return call_user_func_array(
|
|
|
|
'sprintf',
|
|
|
|
$args
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-07-20 12:26:15 +02:00
|
|
|
/**
|
|
|
|
* Get a formatted number
|
|
|
|
*
|
|
|
|
* $translator->number(1234.56);
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param float $number Number to format
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function number($number)
|
|
|
|
{
|
|
|
|
return number_format(
|
|
|
|
$number,
|
|
|
|
$this->get('number.decimals', 2),
|
|
|
|
$this->get('number.decimals_separator', '.'),
|
|
|
|
$this->get('number.thousands_separator', ',')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a formatted currency number
|
|
|
|
*
|
|
|
|
* $translator->currency(1234.56);
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param float $amount Number to format
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function currency($amount)
|
|
|
|
{
|
|
|
|
$position = $this->get('currency.position', 'before');
|
|
|
|
$symbol = $this->get('currency.symbol', '$');
|
|
|
|
$str = '';
|
|
|
|
|
|
|
|
if ($position === 'before') {
|
|
|
|
$str .= $symbol;
|
|
|
|
}
|
|
|
|
|
|
|
|
$str .= $this->number($amount);
|
|
|
|
|
|
|
|
if ($position === 'after') {
|
|
|
|
$str .= ' '.$symbol;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a formatted datetime
|
|
|
|
*
|
|
|
|
* $translator->datetime('%Y-%m-%d', time());
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $format Format defined by the strftime function
|
|
|
|
* @param integer $timestamp Unix timestamp
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function datetime($format, $timestamp)
|
|
|
|
{
|
|
|
|
if (! $timestamp) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$format = $this->get($format, $format);
|
|
|
|
|
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
|
|
|
$format = str_replace('%e', '%d', $format);
|
|
|
|
$format = str_replace('%k', '%H', $format);
|
|
|
|
}
|
|
|
|
|
|
|
|
return strftime($format, (int) $timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an identifier from the translations or return the default
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $identifier Locale identifier
|
|
|
|
* @param string $default Default value
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get($identifier, $default = '')
|
|
|
|
{
|
|
|
|
if (isset(self::$locales[$identifier])) {
|
|
|
|
return self::$locales[$identifier];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load translations
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @access public
|
|
|
|
* @param string $language Locale code: fr_FR
|
|
|
|
*/
|
|
|
|
public static function load($language)
|
|
|
|
{
|
|
|
|
setlocale(LC_TIME, $language.'.UTF-8', $language);
|
|
|
|
|
|
|
|
$filename = self::PATH.$language.DIRECTORY_SEPARATOR.'translations.php';
|
|
|
|
|
|
|
|
if (file_exists($filename)) {
|
|
|
|
self::$locales = require $filename;
|
|
|
|
}
|
2015-01-16 14:23:05 +01:00
|
|
|
else {
|
|
|
|
self::$locales = array();
|
|
|
|
}
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
}
|