コード例 #1
0
 public function testPerson()
 {
     $translator = new PhutilTranslator();
     $translator->setLanguage('cs');
     $translator->addTranslations(array('%s wrote.' => array('%s napsal.', '%s napsala.')));
     $person = new PhutilPersonTest();
     $this->assertEqual('Test () napsal.', $translator->translate('%s wrote.', $person));
     $person->setSex(PhutilPerson::SEX_MALE);
     $this->assertEqual('Test (m) napsal.', $translator->translate('%s wrote.', $person));
     $person->setSex(PhutilPerson::SEX_FEMALE);
     $this->assertEqual('Test (f) napsala.', $translator->translate('%s wrote.', $person));
 }
コード例 #2
0
 public function testHTMLTranslations()
 {
     $string = '%s awoke <strong>suddenly</strong> at %s.';
     $when = '<4 AM>';
     $translator = new PhutilTranslator();
     // When no components are HTML, everything is treated as a string.
     $who = '<span>Abraham</span>';
     $translation = $translator->translate($string, $who, $when);
     $this->assertEqual(true, gettype($translation) == 'string');
     $this->assertEqual('<span>Abraham</span> awoke <strong>suddenly</strong> at <4 AM>.', $translation);
     // When at least one component is HTML, everything is treated as HTML.
     $who = phutil_tag('span', array(), 'Abraham');
     $translation = $translator->translate($string, $who, $when);
     $this->assertEqual(true, $translation instanceof PhutilSafeHTML);
     $this->assertEqual('<span>Abraham</span> awoke <strong>suddenly</strong> at &lt;4 AM&gt;.', $translation->getHTMLContent());
 }