You are here

function scald_i18n_string_info in Scald: Media Management made easy 7

Implements hook_i18n_string_info().

File

./scald.module, line 2255
The Scald Core, which handles all Scald Registries and dispatch.

Code

function scald_i18n_string_info() {
  $groups['scald'] = array(
    'title' => t('Scald atom type'),
    'description' => t('The title and description of the different atom types supported by Scald.'),
    'format' => FALSE,
    'list' => TRUE,
  );
  return $groups;
}