1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/functions.php
2014-12-22 19:15:38 +01:00

68 lines
994 B
PHP

<?php
use Core\Translator;
/**
* Translate a string
*
* @return string
*/
function t()
{
$t = new Translator;
return call_user_func_array(array($t, 'translate'), func_get_args());
}
/**
* Translate a string with no HTML escaping
*
* @return string
*/
function e()
{
$t = new Translator;
return call_user_func_array(array($t, 'translateNoEscaping'), func_get_args());
}
/**
* Translate a currency
*
* @return string
*/
function c($value)
{
$t = new Translator;
return $t->currency($value);
}
/**
* Translate a number
*
* @return string
*/
function n($value)
{
$t = new Translator;
return $t->number($value);
}
/**
* Translate a date
*
* @return string
*/
function dt($format, $timestamp)
{
$t = new Translator;
return $t->datetime($format, $timestamp);
}
/**
* Handle plurals, return $t2 if $value > 1
*
* @todo Improve this function
* @return mixed
*/
function p($value, $t1, $t2) {
return $value > 1 ? $t2 : $t1;
}