| Versionen | |
|---|---|
| drupal6 – drupal7 | install_find_locales($profilename) |
Find all .po files for the current profile.
./
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen