Source

						public function testReadPoIgnoresDummyAndEmptyItems() {
		$file = "{$this->_path}/de/LC_MESSAGES/default.po";
		$data = <<<EOD
#, fuzzy
msgid ""
msgstr ""

msgid ""
msgstr ""

msgid " "
msgstr ""

msgid ""
msgstr "translated"
EOD;
		file_put_contents($file, $data);

		$result = $this->adapter->read('message', 'de', null);
		$this->assertFalse($result);
	}