function i18n_boxes_i18n_string_info in Boxes translation 7
Implements hook_i18n_string_info().
File
- ./
i18n_boxes.module, line 69 - Provides a new boxes plugin for translatable blocks.
Code
function i18n_boxes_i18n_string_info() {
$groups['boxes'] = array(
'title' => t('Boxes'),
'description' => t('Translatable boxes: title and body.'),
'format' => TRUE,
// This group has strings with format.
'list' => TRUE,
);
return $groups;
}