You are here

function svg_embed_locale in SVG Embed 7

Implements hook_locale().

Parameters

string $op: the operation

Return value

array groups to add

File

./svg_embed.module, line 35
SVG Embed. Provides a filter for text formats that includes and on the fly translates SVG files into text fields.

Code

function svg_embed_locale($op = 'groups') {
  switch ($op) {
    case 'groups':
      return array(
        'svg_embed' => t('Embedded SVG files'),
      );
  }
  return array();
}