. */ /** * Collection of update tools. * * @package Update */ /** * Installs language strings from a file. * * This function imports language strings to the database * from a file placed in the ../lang directory. * * Running this function will delete any missing strings of any * language specific event that were included in the file. Empty * strings are also stripped from the database. * * @param string $lang The language code * @return bool TRUE on success * @package L10n * @deprecated in 4.7.0 */ function install_language_from_file($lang) { return Txp::get('\Textpattern\L10n\Lang')->installFile($lang); }