Parameters
$entry
Translation_Entryrequired
Source
public function export_translations( $entry ) {
// TODO: Warnings for control characters.
return $entry->is_plural ? implode( "\0", $entry->translations ) : $entry->translations[0];
}
$entry
Translation_Entryrequiredpublic function export_translations( $entry ) {
// TODO: Warnings for control characters.
return $entry->is_plural ? implode( "\0", $entry->translations ) : $entry->translations[0];
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.