wpseek.com
				A WordPress-centric search engine for devs and theme authors
			_get_path_to_translation is private and should not be used in themes or plugins directly.
_get_path_to_translation › WordPress Function
Since4.7.0
Deprecated6.1.0
› _get_path_to_translation ( $domain, $reset = false )
| Access: | 
 | 
| Parameters: (2) | 
 | 
| See: | |
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Gets the path to a translation file for loading a textdomain just in time.
Caches the retrieved results internally.Source
function _get_path_to_translation( $domain, $reset = false ) {
	_deprecated_function( __FUNCTION__, '6.1.0', 'WP_Textdomain_Registry' );
	static $available_translations = array();
	if ( true === $reset ) {
		$available_translations = array();
	}
	if ( ! isset( $available_translations[ $domain ] ) ) {
		$available_translations[ $domain ] = _get_path_to_translation_from_lang_dir( $domain );
	}
	return $available_translations[ $domain ];
}