PO::export_entries(): string

Exports all entries to PO format


Return

string sequence of mgsgid/msgstr PO strings, doesn't containt newline at the end


Top ↑

Source

File: wp-includes/pomo/po.php. View all references

public function export_entries() {
	// TODO: Sorting.
	return implode( "\n\n", array_map( array( 'PO', 'export_entry' ), $this->entries ) );
}


Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.