these functions don't belong here
authorChuck Hagenbuch <chuck@horde.org>
Wed, 1 Jul 2009 03:22:11 +0000 (23:22 -0400)
committerChuck Hagenbuch <chuck@horde.org>
Wed, 1 Jul 2009 03:22:19 +0000 (23:22 -0400)
framework/Util/lib/Horde/Util.php

index c0ac678..2e8e9c8 100644 (file)
@@ -981,21 +981,3 @@ class Horde_Util
     }
 
 }
-
-/* Stand-in functions if gettext is not available. */
-if (!function_exists('_'))
-{
-    function _($string)
-    {
-        return $string;
-    }
-
-    function ngettext($msgid1, $msgid2, $n)
-    {
-        return $n > 1 ? $msgid2 : $msgid1;
-    }
-
-    function bindtextdomain() { }
-
-    function textdomain() { }
-}