10 lines
177 B
Twig
10 lines
177 B
Twig
/**
|
|
* Implements hook_locale().
|
|
*/
|
|
function {{ machine_name }}_locale($op = 'groups') {
|
|
switch ($op) {
|
|
case 'groups':
|
|
return array('custom' => t('Custom'));
|
|
}
|
|
}
|