PO::export_entries()

Exports all entries to PO format


Description Description


Return Return

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


Top ↑

Source Source

File: wp-includes/pomo/po.php

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


Top ↑

User Contributed Notes User Contributed Notes

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