Summery Summery
Merge $other in the current object.
Syntax Syntax
Parameters Parameters
- $other
-
(Required) Another Translation object, whose translations will be merged in this one (passed by reference).
Return Return
(void)
Source Source
File: wp-includes/pomo/translations.php
function merge_with( &$other ) { foreach ( $other->entries as $entry ) { $this->entries[ $entry->key() ] = $entry; } }