public function PoHeader::__construct in Localization update 7.2
Constructor, creates a PoHeader with default values.
Parameters
string $langcode: Language code.
File
- includes/
gettext/ PoHeader.php, line 76 - Definition of Drupal\Component\Gettext\PoHeader.
Class
- PoHeader
- Gettext PO header handler.
Code
public function __construct($langcode = NULL) {
$this->_langcode = $langcode;
// Ignore errors when run during site installation before
// date_default_timezone_set() is called.
$this->_po_date = @date("Y-m-d H:iO");
$this->_pluralForms = 'nplurals=2; plural=(n > 1);';
}