mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			309 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			309 B
		
	
	
	
		
			Python
		
	
	
# -*- coding: utf-8 -*-
 | 
						|
#
 | 
						|
from django.utils.translation import ugettext_lazy as _
 | 
						|
 | 
						|
 | 
						|
password_failed = _('Username/password check failed')
 | 
						|
mfa_failed = _('MFA authentication failed')
 | 
						|
user_not_exist = _("Username does not exist")
 | 
						|
password_expired = _("Password expired")
 | 
						|
user_invalid = _('Disabled or expired')
 |