inc/i18n.inc.php
author rejo
Tue, 25 Dec 2007 14:37:42 +0000
changeset 46 97ff9a7a9e75
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 93] Change of license, from QPL to GPL. Added a copyright, disclaimer and license pointer to all PHP files. Added the LICENSE file, with a copy of the GPLv3.

<?
include_once("inc/config.inc.php");

$language = $LANG;
setlocale(LC_ALL, $language);
$gettext_domain = 'messages';
bindtextdomain($gettext_domain, "./locale");
textdomain($gettext_domain);

?>