PO::export_entries(): string
Exports all entries to PO format
Contents
Return
string sequence of mgsgid/msgstr PO strings, doesn't containt newline at the end
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 ) );
}