| Versions | |
|---|---|
| 6 – 7 | hook_locale($op = 'groups') |
Allows modules to define their own text groups that can be translated.
$op Type of operation. Currently, only supports 'groups'.
drupal/
<?php
function hook_locale($op = 'groups') {
switch ($op) {
case 'groups':
return array('custom' => t('Custom'));
}
}
?>