You are here

function user_relationships_ui_locale in User Relationships 6

Implementation of hook_locale().

File

user_relationships_ui/user_relationships_ui.module, line 748
UI components of user_relationships @author Jeff Smick (creator) @author Alex Karshakevich (maintainer) http://drupal.org/user/183217 @author Darren Ferguson (contributor) http://drupal.org/user/70179

Code

function user_relationships_ui_locale($op = 'groups') {
  switch ($op) {
    case 'groups':
      return array(
        'user_relationships' => t('User Relationships'),
      );
  }
}