Translations::add_entry( array|Translation_Entry $entry )
Add entry to the PO structure
Parameters
- $entry
-
(Required)
Return
(bool) true on success, false if the entry doesn't have a key
Source
File: wp-includes/pomo/translations.php
function add_entry($entry) {
if (is_array($entry)) {
$entry = new Translation_Entry($entry);
}
$key = $entry->key();
if (false === $key) return false;
$this->entries[$key] = &$entry;
return true;
}