You are here

function follow_link_tooltip_newsletter in Follow 6

Tooltip for the Newsletter.

1 string reference to 'follow_link_tooltip_newsletter'
follow_default_networks in ./follow.module
Retrieves the default networks available.

File

./follow.module, line 306
Allows users to add links to their social network profiles.

Code

function follow_link_tooltip_newsletter($title, $variables) {
  $string = $title == t('Newsletter') ? 'Subscribe to @title' : 'Subscribe to newsletter: @title';
  return t($string, array(
    '@title' => $title,
  ));
}