You are here

function notifications_locale in Notifications 6.3

Same name and namespace in other branches
  1. 6.4 notifications.module \notifications_locale()
  2. 6.2 notifications.module \notifications_locale()

Implementation of hook_locale().

File

./notifications.module, line 1908
Notifications module

Code

function notifications_locale($op = 'groups', $group = NULL) {
  switch ($op) {
    case 'groups':
      return array(
        'notifications' => t('Notifications'),
      );
    case 'refresh':
      if ($group == 'notifications') {

        // @todo: Re-create all strings, to be implemented
      }
  }
}