| 6 install.php | install_find_locales($profilename) |
| 7 install.core.inc | install_find_locales($profilename) |
Find all .po files for the current profile.
2 calls to install_find_locales()
File
- ./
install.php, line 508
Code
function install_find_locales($profilename) {
$locales = file_scan_directory('./profiles/' . $profilename . '/translations', '\.po$', array('.', '..', 'CVS'), 0, FALSE);
array_unshift($locales, (object) array('name' => 'en'));
return $locales;
}
Login or register to post comments