function scald_locale in Scald: Media Management made easy 7
Implements hook_locale().
File
- ./
scald.module, line 2243 - The Scald Core, which handles all Scald Registries and dispatch.
Code
function scald_locale($op = 'groups') {
if (!module_exists('i18n_string')) {
switch ($op) {
case 'groups':
return array(
'scald' => t('Scald'),
);
}
}
}