| 628 |
rajveer |
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";
|
| 1169 |
varun.gupt |
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.";
|
| 628 |
rajveer |
16 |
}
|