Source for file phpgettext.compat.php
Documentation is available at phpgettext.compat.php
* @copyright Copyright (c) 2005 Carlos Souza <csouza@web-sense.net>
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
* @link http://phpgettext.web-sense.net
* comptibility file for gettext
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
return $gettext->gettext($message);
return $gettext->dgettext($domain, $message);
function ngettext($msg1, $msg2, $count){
return $gettext->ngettext($msg1, $msg2, $count);
function dngettext($domain, $msg1, $msg2, $count){
return $gettext->dngettext($domain, $msg1, $msg2, $count);
function dcgettext($domain, $message, $category){
return $gettext->dcgettext($domain, $message, $category);
function dcngettext($domain, $msg1, $msg2, $count, $category){
return $gettext->dcngettext($domain, $msg1, $msg2, $count, $category);
Documentation generated on Mon, 05 May 2008 16:22:26 +0400 by phpDocumentor 1.4.0