PO::export_entries()

最后更新于:2021-11-25 21:12:26

PO::export_entries()

Exports all entries to PO format

响应

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

源文件

文件: gc-includes/pomo/po.php

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