You appear to be a bot. Output may be restricted
Description
Loads the anonymous ( null ) domain
Just In Time ( JIT ) loading of the Just Translate It ( JTI ) domain Merges the translation strings from each domain.
Usage
Tests_translate_null_domain::load_null_domain();
Parameters
Returns
void
Source
File name: oik-libs/tests/test-translate-null-domain.php
Lines:
1 to 10 of 10
function load_null_domain() { global $l10n; $null_domain = new MO(); foreach ( $l10n as $domain => $MO ) { $null_domain->merge_with( $MO ); } $l10n[ null ] = &$null_domain; $this->trace_l10n( true ); }