Exemplo n.º 1
0
/**
 * Given a string translated into the current locale, return the untranslated version of the string.
 * Alias for HabariLocale::_u()
 *
 * @param string $text The translated string
 * @param string $domain (optional) The domain to search for the message
 * @return string The untranslated string
 **/
function _u($text, $domain = 'habari')
{
    return HabariLocale::_u($text, $domain);
}