Blame | Last modification | View Log | RSS feed
package in.shop2020.serving.utils;public class UserMessage {public static final String LOGIN_DETAILS_SUCCESS = "Your password is updated successfully";public static final String LOGIN_DETAILS_FAILURE = "Unable to update password. Either email or password is not correct";public static final String PERSONAL_DETAILS_SUCCESS = "Your personal details updated";public static final String PERSONAL_DETAILS_FAILURE = "Unable to update your personal details";public static final String SHIPPING_ADDRESS_SUCCESS = "Address added successfully";public static final String SHIPPING_ADDRESS_FAILURE = "Unable to update address";public static final String FORGOT_PASSWORD_SUCCESS = "Password sent to your email address";public static final String FORGOT_PASSWORD_FAILURE = "Email address is not registered with us";//public static final String REGISTERATION_FAILURE = "Email address is already registered with us";public static final String USER_COMMUNICATION_SUCCESS = "Thank you for your query. We will soon look into it.";public static final String USER_COMMUNICATION_FAILURE = "There seems to be some error. Please try posting again.";public static final String USER_AUTHENTICATION_FAILURE = "Either email or password is wrong.";public static final String FACEBOOK_USER_AUTH_FAILURE = "Unable to get login details from facebook";}