
/*******************************************************************************************************
File							: 	__Messages.js
Description                     :	Various message strings for entire application
Project 						:	EatherWay 
Date							:
Language 						: 	Javascript
Author                          :	Jineesh M.G.
Development Center              :	AlignMinds Technologies Pvt. Ltd.
Modified On (By)                :
*****************************************************************************************************/
//Various Errors using for Javascript Validation

var _NO_USER_NAME       = 'please enter the username.';
var _INVALID_USER_LEN   = 'Minimum 3 characters required.';
var _INVALID_USER_NAME  = 'please enter the username.';
var _NO_PASSWORD        = 'please enter the password.';
var _INVALID_PASS_LEN   = 'Minimum 6 characters.';
var _NO_CONFIRM_PASS    = 'Please enter confirm password.';
var _INVALID_LOGIN      = 'invalid username or password.';

var _NO_STATE           = 'please select any state.';
var _NO_DISTRICT        = 'please select any district.';
var _NO_PRACT_LOC       = 'please enter your Practice Location.';

var _RPT_EMAIL          = 'This email-id already exist. Please use another one.';


var _NO_OPTION_SELECT   = 'please select an option';
var _NO_DOCTOR_SELECT   = 'please select a doctor';
var _SELECT_ONE_ONLY    = 'please select only one doctor';

//Common Errors
var _NOT_AN_INTEGER     = 'please enter an integer value';

//Errors for timeslot details
var _NO_OF_PATIENTS     = 'please enter no of patients in a slot';

var _SEPERATOR          = '###';


///Doctor Profile page validation
var _NO_NAME            = 'please enter the name.';
var _NO_EMAIL           = 'please enter the Email-id.';
var _INVALID_EMAIL      = 'please enter a valid Email-id.';
var _NO_MOBILE          = 'please enter your Mobile Number.';
var _INVALID_MOBILE     = 'please enter valid Mobile Number.';
var _NO_DEGREE          = 'please enter basic professional degree.';
var _NO_SPECIALITY      = 'please select any Speciality.';
var _NO_TOS             = 'you should accept our TOS.';



