properties.inc.php 2.0 KB

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Properties English Lexicon Entries for HybridAuth
  4. *
  5. * @package hybridauth
  6. * @subpackage lexicon
  7. */
  8. $_lang['ha.providers'] = 'Comma separated list of a providers for authentification. All available providers are here {core_path}components/hybridauth/model/hybridauth/lib/Providers/. For example, &providers=`Google,Twitter,Facebook`.';
  9. $_lang['ha.groups'] = 'Comma separated list of existing user groups for joining by user at the first login. For example, &groups=`Users:1` will add new user to group "Users" with role "member"';
  10. $_lang['ha.rememberme'] = 'If true, user will be remembered for a long time.';
  11. $_lang['ha.loginContext'] = 'Main context for authentication. By default - it is current context.';
  12. $_lang['ha.addContexts'] = 'Comma separated list of additional contexts for authentication. For example &addContexts=`web,ru,en`';
  13. $_lang['ha.loginResourceId'] = 'Resource id to redirect to on successful login. By default, it is 0 - redirect to self.';
  14. $_lang['ha.logoutResourceId'] = 'Resource id to redirect to on successful logout. By default, it is 0 - redirect to self.';
  15. $_lang['ha.loginTpl'] = 'This chunk will see any anonymous user.';
  16. $_lang['ha.logoutTpl'] = 'This chunk will see any authenticated user.';
  17. $_lang['ha.profileTpl'] = 'Chunk for display and edit user profile.';
  18. $_lang['ha.providerTpl'] = 'Chunk to display a link for authorization or linking a service to your account.';
  19. $_lang['ha.activeProviderTpl'] = 'Chunk for output icon of linked service.';
  20. $_lang['ha.profileFields'] = 'Comma separated list of allowed user fields for update with maximum length of sended values. For example, &profileFields=`username:25,fullname:50,email`.';
  21. $_lang['ha.requiredFields'] = 'Comma separated list of required user fields when update. This fields must be filled for successful update of profile. For example, &requiredFields=`username,fullname,email`.';
  22. $_lang['ha.redirectUri'] = 'You can specify "redirect_uri" to which remote service will redirect you. By default, this is the root of the current context.';