Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8842 anupam.sin 1
package in.shop2020.serving.utils;
2
 
3
public class UserMessage {
4
	public static final String LOGIN_DETAILS_SUCCESS = "Your password is updated successfully";
5
	public static final String LOGIN_DETAILS_FAILURE = "Unable to update password. Either email or password is not correct";
6
	public static final String PERSONAL_DETAILS_SUCCESS = "Your personal details updated";
7
	public static final String PERSONAL_DETAILS_FAILURE = "Unable to update your personal details";
8
	public static final String SHIPPING_ADDRESS_SUCCESS = "Address added successfully";
9
	public static final String SHIPPING_ADDRESS_FAILURE = "Unable to update address";
10
	public static final String FORGOT_PASSWORD_SUCCESS = "Password sent to your email address";
11
	public static final String FORGOT_PASSWORD_FAILURE = "Email address is not registered with us";
12
	//public static final String REGISTERATION_FAILURE = "Email address is already registered with us";
13
 
14
	public static final String USER_COMMUNICATION_SUCCESS = "Thank you for your query. We will soon look into it.";
15
	public static final String USER_COMMUNICATION_FAILURE = "There seems to be some error. Please try posting again.";
16
 
17
	public static final String USER_AUTHENTICATION_FAILURE = "Either email or password is wrong.";
18
	public static final String FACEBOOK_USER_AUTH_FAILURE = "Unable to get login details from facebook";
19
}