<?php
header( 'Content-type: text/html; charset=utf-8;' );

error_reporting( E_ALL |  E_STRICT );
require 'I18n.php';


echo "add Module: Internal<br />";
patForms_I18n::addModule( 'Internal' );

echo "add Module: Gettext<br />";
$confGettext    =   array(
            'dir'   =>  dirname( __FILE__ ) . '/lang'
    );
patForms_I18n::addModule( 'Gettext', $confGettext );


// set language to de_DE
patForms_I18n::setLocale( 'de_DE' );

echo "<hr />";
echo patForms_I18n::gettext( 'Please translate me!' ), '<br />';

?>