MO::export_translations( Translation_Entry $entry )


Description Description


Parameters Parameters

$entry

(Translation_Entry) (Required)


Top ↑

Return Return

(string)


Top ↑

Source Source

File: wp-includes/pomo/mo.php

		function export_translations( $entry ) {
			//TODO: warnings for control characters
			return $entry->is_plural ? implode( "\0", $entry->translations ) : $entry->translations[0];
		}


Top ↑

User Contributed Notes User Contributed Notes

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