function testSetTranslations()
 {
     $d = new lmbI18NDictionary();
     $d->setTranslations(array('Hello' => 'Привет'));
     $this->assertEqual($d->translate('Hello'), 'Привет');
 }