MO::export_original( Translation_Entry $entry )
Parameters
- $entry
-
(Required)
Return
(string)
Source
File: wp-includes/pomo/mo.php
function export_original($entry) {
//TODO: warnings for control characters
$exported = $entry->singular;
if ($entry->is_plural) $exported .= chr(0).$entry->plural;
if ($entry->context) $exported = $entry->context . chr(4) . $exported;
return $exported;
}