diff --git a/rhodecode/authentication/plugins/auth_rhodecode.py b/rhodecode/authentication/plugins/auth_rhodecode.py --- a/rhodecode/authentication/plugins/auth_rhodecode.py +++ b/rhodecode/authentication/plugins/auth_rhodecode.py @@ -64,7 +64,7 @@ class RhodeCodeAuthPlugin(RhodeCodeAuthP context=RhodecodeAuthnResource) def get_display_name(self): - return _('Rhodecode') + return _('RhodeCode Internal') @hybrid_property def name(self): diff --git a/rhodecode/authentication/plugins/auth_token.py b/rhodecode/authentication/plugins/auth_token.py --- a/rhodecode/authentication/plugins/auth_token.py +++ b/rhodecode/authentication/plugins/auth_token.py @@ -67,7 +67,7 @@ class RhodeCodeAuthPlugin(RhodeCodeAuthP context=RhodecodeAuthnResource) def get_display_name(self): - return _('Rhodecode Token Auth') + return _('Rhodecode Token') @classmethod def docs(cls): diff --git a/rhodecode/authentication/routes.py b/rhodecode/authentication/routes.py --- a/rhodecode/authentication/routes.py +++ b/rhodecode/authentication/routes.py @@ -58,7 +58,7 @@ class AuthnRootResource(AuthnResourceBas def __init__(self): self._store = collections.OrderedDict() self._resource_name_map = {} - self.display_name = _('Global') + self.display_name = _('Authentication Plugins') def __getitem__(self, key): """