}@jaM ˾aMeMhaM`ȞaM&9bM%gaM@haMhaMZaM*aM aM 8baMBjaMgaMةcaMhaMϞaMkaM &[pfaM0haMhaMaM*aM 8baM@CjaM%`{faMHSaMhaM?aM6faM haMhaMdaM*aM@aM 8baMaaMfaMbMhaMҞaM-faMhaMhaM*aM@aM 8baM"@aaM.faM%aMhaMԞaM@MjaMhaMxhaM*aM 8baM+/`9baMNjaMÞaM0ĞaMhĞaMu@(žaMмaMPhaM.faM''@pUXjaM(NUhaM`haM@;baMX:baMX(v@;baM haMhv@aM haM"89bM haMP afaMHhaMhaM*aMP,aM@;baM(-`aMbfaMaM haMĞaM`XfaM8haMhaM+aM&hcaM@;baM6aMfaMUaM haM@aMbaM(haMhaMPaM+aM`,aM@;baMޢaM `baMHcaM haMŞaMaM4~laMhaMhaMaM+aMໆaM@;baMDjaM?laM(8bM haMƞaM#bMhtmaMhaMhaMaaM+aM@RfaM@;baMaaMd,maMaM haMs"bMP(gaMhaMphaMhaM +aMp,aM@;baMbaMgaMcaM haMpǞaM domain, $entity->mofile, $locale ); } else { load_textdomain($entity->domain, $entity->mofile); } } ); } /** * @param string $domain */ private function setCustomMOLoaded( $domain ) { $this->loaded_domains[] = $domain; } public function languageHasSwitched() { $this->loaded_domains = []; } /** * @param $mofile * @param $domain */ public function fallbackDefaultTranslations( $mofile, $domain, $locale) { // Since version 6.7, WP will not attempt anymore to load translations // from the default WordPress translation path if the MO file is not found. // It will set $GLOBALS['l10n'][ $domain ] to a NOOP_Translations object and // WP JIT mechanism won't be triggered anymore. // Thus, WPML is not able to load custom translations anymore. // If any of these translation sources is available, we will force it to load before this happens. if (WordPress::versionCompare('>', '6.6.999') && is_string( $mofile )) { $wpml_mofile = $this->file_manager->get($domain, $locale); $replaced_mofile = LoadTranslationFile::replaceMoExtensionWithPhp( $mofile ); if (!file_exists($mofile) && !file_exists($replaced_mofile) && $wpml_mofile) { $defaultTranslationsFile = LoadTranslationFile::getDefaultWordPressTranslationPath($domain, $locale) ?: $wpml_mofile; LoadTranslationFile::replaceTranslationFile($domain, $mofile, $defaultTranslationsFile); } } } }