// JavaScript Document
//HERE ARE CONTAINED ALL THE LANGUAGE SPECIFIC MESSAGES TO BE TRANSLATED: - ONLY FOR JS CONTENT -

//CAUTION: Messages are used EVERYWHERE more than ONCE. One specific message applies to many unrelated pages.
//CAUTION: Before adding a new message verify that the message is not already registered, it is very likely to have it already logged.
//CAUTION: Try to use a meaningful name for the message to avoid Missunderstanding and missusing names on various pages
//		Examples of correct messages are sometimes long but give you the idea of what it means, example: passwordConfirmationFailed

//THE FOLLOWING "END OF LINE" COMMENT CODES APPLY:
//	H - Uses html special chars, like &aacute;
//  U - Uses utf8 special chars, like \u00F3 

var MESSAGES = new Array();
MESSAGES["es"] = new Array();
MESSAGES["en"] = new Array();


//TEXT ONLY
MESSAGES["es"]["nameTextOnly"] = "El campo 'Nombre' acepta solo caracteres";//H
MESSAGES["es"]["lastNameTextOnly"] = "El campo 'Apellido' acepta solo caracteres";//H
MESSAGES["es"]["relativeTextOnly"] = "El campo 'Contacto de Emergencia' acepta solo caracteres.";
MESSAGES["es"]["managerTextOnly"] = "El campo 'Gerente' acepta solo caracteres";
MESSAGES["es"]["cardNameTextOnly"] = "El campo 'Nombre en la Tarjeta' acepta solo caracteres";
MESSAGES["es"]["stateProvinceTextOnly"] = "El campo 'Estado/Provincia' acepta solo caracteres";

//NUMERIC ONLY
MESSAGES["es"]["phoneNumericOnly"] = "El campo 'Tel&eacute;fono' debe ser num&eacute;rico.";
MESSAGES["es"]["mainPhoneNumericOnly"] = "El campo 'Tel&eacute;fono Principal' debe ser num&eacute;rico.";
MESSAGES["es"]["secondaryPhoneNumericOnly"] = "El campo 'Tel&eacute;fono Secundario' debe ser num&eacute;rico.";
MESSAGES["es"]["cellPhoneNumericOnly"] = "El campo 'Celular' debe ser num&eacute;rico.";
MESSAGES["es"]["relativePhoneNumericOnly"] = "El campo 'Tel&eacute;fono del contacto' debe ser num&eacute;rico.";
MESSAGES["es"]["documentNumericOnly"] = "S&oacute;lo se aceptan n&uacute;meros en el campo 'Identificaci&oacute;n'";
MESSAGES["es"]["managerPhoneNumericOnly"] = "S&oacute;lo se aceptan n&uacute;meros en el campo 'Tel&eacute;fono del Gerente'";
MESSAGES["es"]["cardNumberNumericOnly"] = "El campo 'N&uacute;mero de Tarjeta' acepta solo n&uacute;meros";
MESSAGES["es"]["securityCodeNumericOnly"] = "El campo 'C&oacute;digo de Seguridad' acepta solo n&uacute;meros";
MESSAGES["es"]["zipNumericOnly"] = "El campo 'Código Postal/&oacute;Zip' acepta solo n&uacute;meros";
MESSAGES["es"]["adultsNumericOnly"] = "El campo 'Viajeros mayores a 12 a&ntilde;os:' debe ser num&eacute;rico";
MESSAGES["es"]["childrenNumericOnly"] = "El campo 'Viajeros menores a 12 a&ntilde;os:' debe ser num&eacute;rico";

//ALREADY REGISTERED
MESSAGES["es"]["documentAlreadyRegistered"] = "El Documento Ingresado ya existe en el sistema.";
MESSAGES["es"]["emailAlreadyRegistered"] = "El E-mail ingresado ya existe en el sistema.";

//FORM VALIDATION
MESSAGES["es"]["passwordMinLength"] = "La Nueva contrase&ntilde;a debe tener m&iacute;nimo 6 caracteres."; //H
MESSAGES["es"]["passwordConfirmationFailed"] = "La confirmaci&oacute;n ha fallado."; //H
MESSAGES["es"]["passwordNotEqual"] = "La nueva clave debe diferir de la anterior"; //H
MESSAGES["es"]["passwordAlphanumeric"] = "La nueva clave debe contener letras y numeros"; //H
MESSAGES["es"]["incorrectUsername"] = "El nombre de usuario es incorrecto";
MESSAGES["es"]["incorrectPassword"] = "La contrase&ntilde;a ingresada es invalida."; //H
MESSAGES["es"]["departureDateLowerThanArrival"] = "La Fecha de Salida debe ser menor o igual que la Fecha de Llegada";
MESSAGES["es"]["dateRangeWithinOneYear"] = "El rango de fechas debe ser menor a un a&ntilde;o";
MESSAGES["es"]["arrivalDateHigherThanDeparture"] = "La Fecha de Llegada debe ser mayor o igual que la Fecha de Salida";

//FORM FIELD FORMAT
MESSAGES["es"]["emailFormatValidatorMessage"] = "El formato del correo debe ser nombre@dominio.com"; //H
MESSAGES["es"]["birthDateFormat"] = "El campo 'Fecha de Naciemiento' debe tener el formato dd/mm/YYYY";
MESSAGES["es"]["departureDateFormat"] = "El campo 'Fecha de Salida' debe tener el formato dd/mm/YYYY";
MESSAGES["es"]["arrivalDateFormat"] = "El campo 'Fecha de Llegada' debe tener el formato dd/mm/YYYY";
MESSAGES["es"]["dateFormat"] = "Por favor ingrese una fecha en el formato dd/mm/YYYY";

//TITLES:
MESSAGES["es"]["newsEdit"] = "Edici&oacute;n de Noticia"; //H
MESSAGES["es"]["inputTranslation"] = "Ingreso de Traducci&oacute;n";//H

//DATES
MESSAGES["es"]["arrivalDateBeforeExpiration"] = "La Fecha de Llegada no puede superar la fecha de expiraci\u00F3n de la tarjeta.";
MESSAGES["es"]["departureDateBeforeExpiration"] = "La Fecha de Salida no puede superar la fecha de expiraci\u00F3n de la tarjeta.";
MESSAGES["es"]["departureDateBeforeLastTrip"] = "La Fecha de Partida no puede ser menor a la fecha del \u00FAltimo viaje.";
MESSAGES["es"]["departureDateBeforeArrival"] = "La Fecha de Salida no puede ser mayor a la Fecha de Llegada";
MESSAGES["es"]["departureDateAfterToday"] = "La Fecha de partida no puede ser menor al d\u00EDa de hoy.";
MESSAGES["es"]["birthDateAfterToday"] = "La fecha de Nacimiento no puede ser mayor a la de Hoy";
MESSAGES["es"]["arrivalDateBelowMaxDays"] = "La Fecha de Llegada no puede superar el n\u00FAmero de d\u00EDas disponibles.";
MESSAGES["es"]["expirationDateFormatInvalid"] = "El el formato ingresado en 'Fecha de Vencimiento' no es v&aacute;lido";

//OTHER
MESSAGES["es"]["checkMail"] = "Por favor revise su correo";
MESSAGES["es"]["bannerActivated"] = "El banner ha sido activado para todos los paises";
MESSAGES["es"]["contentMissing"] = "Debe ingresar algun contenido!"; //U
MESSAGES["es"]["contentEdition"] = "Edici&oacute;n de Contenido"; //U
MESSAGES["es"]["newPasswordEmailed"] = "La nueva clave ha sido enviada por correo!";
MESSAGES["es"]["newPasswordEmailedFailed"] = "Ha fallado el envio de clave por correo!";
MESSAGES["es"]["currentPasswordWrong"] = "La Clave Actual ingresada es incorrecta";
MESSAGES["es"]["cardNumberInvalid"] = "El N&uacute;mero de Tarjeta no es valido";
MESSAGES["es"]["selectPAymentType"] = "Seleccione el tipo de pago que va a realizar";
MESSAGES["es"]["tabChangeWarning"] = "Si cambia de tab perder\u00E1 la informaci\u00F3n ingresada, \u00BFdesea continuar?";
MESSAGES["es"]["continueToPayCartAlert"] = 'Se agregar\u00E1n solamente los productos cuyos datos han sido ingresados,\n (Solamente aquellos '+
					 'que no tienen el simbolo de alerta ) \u00BFdesea continuar?';
MESSAGES["es"]["cardRemovalAlert"] = "Est\u00E1 seguro que desea eliminar esta tarjeta?, no podr\u00E1 deshacer esta operaci\u00F3n";
MESSAGES["es"]["travelersUniqueDocuments"] = "Los N&uacute;meros de documento deben ser &uacute;nicos para cada viajero";
MESSAGES["es"]["answerAllAdultQuestions"] = "Debe contestar todas la preguntas de adulto mayor para poder continuar";
MESSAGES["es"]["answerAllQuestions"] = "Por favor responda todas las preguntas!";
MESSAGES["es"]["noQuestionsLogged"] = "No existen preguntas registradas en el sistema";
MESSAGES["es"]["pleaseWait"] = "Espere por favor...";
MESSAGES["es"]["clientTravelAlreadyLogged"] = "El cliente ya tiene un viaje registrado entre las fechas dadas.";
MESSAGES["es"]["uniqueEmailsMessage"] = "Los Email deben ser &uacute;nicos para cada viajero";
MESSAGES["es"]["childrenBannedMessage"] = "Los acompa&ntilde;antes s&oacute;lo pueden ser adultos.";
MESSAGES["es"]["adultsBannedMessage"] = "Los acompa&ntilde;antes s&oacute;lo pueden ser menores.";
MESSAGES["es"]["elderlyBannedMessage"] = "Este producto no admite adultos mayores.";
MESSAGES["es"]["wifeAlreadySelected"] = "Ya ha seleccionado a otro acompa\u00F1ante como Esposa";
MESSAGES["es"]["leaveWithoutSavingConfirmation"] = "Esta seguro que desea salir? No se guardara ningun cambio en la tarjeta.";
MESSAGES["es"]["traveler"] = "Acompa&ntilde;ante";

//MANDATORY FIELDS:
MESSAGES["es"]["idRequiredField"] = "El campo 'Identificaci&oacute;n' es obligatorio";
MESSAGES["es"]["relationshipRequiredField"] = "El campo 'Tipo de Relaci&oacute;n con el Titular' es obligatorio";
MESSAGES["es"]["nameRequiredField"] = "El campo 'Nombre' es obligatorio";
MESSAGES["es"]["lastNameRequiredField"] = "El campo 'Apellido' es obligatorio";
MESSAGES["es"]["birthDateRequiredField"] = "El campo 'Fecha de Nacimiento' es obligatorio";

MESSAGES["es"]["productSelectionMandatory"] = "Debe seleccionar al menos un Producto para Comprar";
MESSAGES["es"]["productsWillBeLostAlert"] = "Los Productos no Seleccionados no seran Guardados en el carrito, \u00BFdesea continuar?";
MESSAGES["es"]["productsWontBeSavedAlert"] = "\u00BF Los Productos no Seleccionados seran eliminados del carrito, desea continuar?";
MESSAGES["es"]["oneAdultAndSpouseSelectedAlert"] = "Ha ingresado \u00FAnicamente un adulto, el precio no incluir\u00E1 el c\u00F3nyugue seleccionado.";
MESSAGES["es"]["changeLangConfirm"] = "Al cambiar de idioma, ser\u00E1 redireccionado a la p\u00E1gina de inicio. Si se encuentra realizando alguna operaci\u00F3n, \u00E9sta no ser\u00E1 guardada.";
MESSAGES["es"]["over100PeoplePurchase"] =  "Para comprar un producto de mas de 100 personas, por favor acerquese a la oficina de Planet Assist mas cercana";
MESSAGES["es"]["redirectionAlert"] =  "Para continuar, ser\u00E1 redireccionado a la p\u00E1gina global de Planet Assist, \u00BFdesea continuar?";
MESSAGES["es"]["genericError"] =  "Ocurrio un error, por favor vuelva a intentarlo mas tarde";

//MODAL PANEL BUTTONS:
MESSAGES["es"]["cancelButton"] = "Cancelar";
MESSAGES["es"]["closeButton"] = "Cerrar";
MESSAGES["es"]["activated"] = "Activado";
MESSAGES["es"]["activate"] = "Activar";
MESSAGES["es"]["deactivated"] = "Desactivado";
MESSAGES["es"]["update"] = "Actualizar";
MESSAGES["es"]["next"] = "Siguiente";
MESSAGES["es"]["previous"] = "Anterior";
MESSAGES["es"]["proceedToTravelersDataInputButton"] = "Proceder a Ingreso de Datos de Viajeros";
MESSAGES["es"]["noGenCondFound"] = "Archivo no encontrado";
MESSAGES["es"]["add"] = "Agregar";
MESSAGES["es"]["translationOf"] = "Traducci&oacute;n de";
MESSAGES["es"]["buy"] = "Comprar";


// **************************************************************************************************************
// ******************************************* ENGLISH SECTION **************************************************
// **************************************************************************************************************



//TEXT ONLY
MESSAGES["en"]["nameTextOnly"] = "The field 'Name' is text only.";//H
MESSAGES["en"]["lastNameTextOnly"] = "The field 'Last Name' is text only.";//H
MESSAGES["en"]["relativeTextOnly"] = "The field 'Emergency Contact' is text only.";
MESSAGES["en"]["managerTextOnly"] = "The field 'Manager' is text only.";
MESSAGES["en"]["cardNameTextOnly"] = "The field 'Name printed on Card' is text only";
MESSAGES["en"]["stateProvinceTextOnly"] = "The field 'State/Province' is text only";

//NUMERIC ONLY
MESSAGES["en"]["phoneNumericOnly"] = "The field 'Phone' is numeric only.";
MESSAGES["en"]["mainPhoneNumericOnly"] = "The field 'Main Phone' is numeric only.";
MESSAGES["en"]["secondaryPhoneNumericOnly"] = "The field 'Secondary Phone' is numeric only.";
MESSAGES["en"]["cellPhoneNumericOnly"] = "The field 'Cellphone' is numeric only.";
MESSAGES["en"]["relativePhoneNumericOnly"] = "The field 'Contact Phone Number' is numeric only.";
MESSAGES["en"]["documentNumericOnly"] = "The field 'Identification' is numeric only.";
MESSAGES["en"]["managerPhoneNumericOnly"] = "The field 'Manager Phone' is numeric only.";
MESSAGES["en"]["cardNumberNumericOnly"] = "The field 'Card Number' is numeric only.";
MESSAGES["en"]["securityCodeNumericOnly"] = "The field 'Security Code' is numeric only.";
MESSAGES["en"]["zipNumericOnly"] = "The field 'ZIP/Postal Code' is numeric only.";
MESSAGES["en"]["adultsNumericOnly"] = "The field 'Travelers over 12 years' is numeric only.";
MESSAGES["en"]["childrenNumericOnly"] = "The field 'Travelers under 12 years' is numeric only.";

//ALREADY REGISTERED
MESSAGES["en"]["documentAlreadyRegistered"] = "The provided document already exists in the system";
MESSAGES["en"]["emailAlreadyRegistered"] = "The provided E-mail already exists in the system";

//FORM VALIDATION
MESSAGES["en"]["passwordMinLength"] = "The new password must be at least 6 characters long."; //H
MESSAGES["en"]["passwordConfirmationFailed"] = "The confirmation has failed"; //H
MESSAGES["en"]["passwordNotEqual"] = "The new password must be different than the previous one"; //H
MESSAGES["en"]["passwordAlphanumeric"] = "The new password must have both text and numbers"; //H
MESSAGES["en"]["incorrectUsername"] = "The username is incorrect";
MESSAGES["en"]["incorrectPassword"] = "The password is incorrect"; //H
MESSAGES["en"]["departureDateLowerThanArrival"] = "The departure date must be lower or equal the return date";
MESSAGES["en"]["dateRangeWithinOneYear"] = "Please enter a Date range of less than one year";
MESSAGES["en"]["arrivalDateHigherThanDeparture"] = "The arrival date must be higher or equal the departure date.";

//FORM FIELD FORMAT
MESSAGES["en"]["emailFormatValidatorMessage"] = "The email format must be name@domain.com"; //H
MESSAGES["en"]["birthDateFormat"] = "The field 'Birth Date' must be in the format dd/mm/YYYY";
MESSAGES["en"]["departureDateFormat"] = "The field 'Departure Date' must be in the format dd/mm/YYYY";
MESSAGES["en"]["arrivalDateFormat"] = "The field 'Arrival Date' must be in the format dd/mm/YYYY";
MESSAGES["en"]["dateFormat"] = "Please enter a date in the format dd/mm/YYYY";

//TITLES:
MESSAGES["en"]["newsEdit"] = "News Edit"; //H
MESSAGES["en"]["inputTranslation"] = "Translate input";//H

//DATES
MESSAGES["en"]["arrivalDateBeforeExpiration"] = "The Arrival Date cannot be higher than the expiration date.";
MESSAGES["en"]["departureDateBeforeExpiration"] = "The Departure Date cannot be higher than the expiration date.";
MESSAGES["en"]["departureDateBeforeLastTrip"] = "The Departure Date cannot be lower than the last trip";
MESSAGES["en"]["departureDateBeforeArrival"] = "The Departure Date cannot be higher than the Arrival Date";
MESSAGES["en"]["departureDateAfterToday"] = "The Departure Date cannot be prior today";
MESSAGES["en"]["birthDateAfterToday"] = "The Birth Date cannot be in the future.";
MESSAGES["en"]["arrivalDateBelowMaxDays"] = "The Arrival Date cannot exceed the available number of days";
MESSAGES["en"]["expirationDateFormatInvalid"] = "The format of the 'Expiration Date' field is not valid";

//OTHER
MESSAGES["en"]["checkMail"] = "Please check your email";
MESSAGES["en"]["bannerActivated"] = "The banner has been activated for all countries";
MESSAGES["en"]["contentMissing"] = "You must input some content!"; //U
MESSAGES["en"]["contentEdition"] = "Content Edition"; //U
MESSAGES["en"]["newPasswordEmailed"] = "The new password has been emailed to you!";
MESSAGES["en"]["newPasswordEmailedFailed"] = "The email containing your new password could not be sent!";
MESSAGES["en"]["currentPasswordWrong"] = "The current password is not valid";
MESSAGES["en"]["cardNumberInvalid"] = "The card number is not valid";
MESSAGES["en"]["selectPAymentType"] = "Select a payment method";
MESSAGES["en"]["tabChangeWarning"] = "If you leave this tab, you will loose the information entered so far, Would you like to continue?";
MESSAGES["en"]["continueToPayCartAlert"] = 'Only complete products will be added (Those without the alert icon in the tab) Would you like to continue?';
MESSAGES["en"]["cardRemovalAlert"] = "Are you sure you want to remove this card?, The operation cannot be undone";
MESSAGES["en"]["travelersUniqueDocuments"] = "The document numbers must be unique for all travelers";
MESSAGES["en"]["answerAllAdultQuestions"] = "You must answer all the elderly questions to continue.";
MESSAGES["en"]["answerAllQuestions"] = "Please answer all the questions!";
MESSAGES["en"]["noQuestionsLogged"] = "No questions are currently loaded in the system";
MESSAGES["en"]["pleaseWait"] = "Please Wait...";
MESSAGES["en"]["clientTravelAlreadyLogged"] = "There is a trip logged in those dates already.";
MESSAGES["en"]["uniqueEmailsMessage"] = "The email addresses must be unique for each traveler";
MESSAGES["en"]["childrenBannedMessage"] = "The joining travelers can only be adults";
MESSAGES["en"]["adultsBannedMessage"] = "The joining travelers can only be children";
MESSAGES["en"]["elderlyBannedMessage"] = "This product does not allow for the elderly.";
MESSAGES["en"]["wifeAlreadySelected"] = "Another traveler has already been selected as spouse";
MESSAGES["en"]["leaveWithoutSavingConfirmation"] = "Are you sure you want to leave? No changes will be saved on the card.";
MESSAGES["en"]["traveler"] = "Traveler";

//MANDATORY FIELDS:
MESSAGES["en"]["idRequiredField"] = "The field 'Identifiction' is mandatory";
MESSAGES["en"]["relationshipRequiredField"] = "The field 'Relationship with the Holder' is mandatory";
MESSAGES["en"]["nameRequiredField"] = "The field 'Name' is mandatory";
MESSAGES["en"]["lastNameRequiredField"] = "The field 'Last Name' is mandatory";
MESSAGES["en"]["birthDateRequiredField"] = "The field 'Birth Date' is mandatory";

MESSAGES["en"]["productSelectionMandatory"] = "You must select at least one product to buy";
MESSAGES["en"]["productsWontBeSavedAlert"] = "The unselected products will be Removed from the cart, Would you like to continue?";
MESSAGES["en"]["productsWillBeLostAlert"] = "The unselected products will not be considered in the next steps, Would you like to continue?";
MESSAGES["en"]["oneAdultAndSpouseSelectedAlert"] = "You have only one adult traveling. The spouse selection will not apply";
MESSAGES["en"]["changeLangConfirm"] = "By changing the language, you will be redirected to the homepage. If you're performing any transaction, this information will be lost.";
MESSAGES["en"]["over100PeoplePurchase"] =  "To purchase a product for over 100 travelers, please go to the nearest Planet Assist Office.";
MESSAGES["en"]["redirectionAlert"] =  "To continue, you will be redirected to our Planet Assist Global Website";
MESSAGES["en"]["genericError"] =  "An error Occurred, please try again later";

//MODAL PANEL BUTTONS:
MESSAGES["en"]["cancelButton"] = "Cancel";
MESSAGES["en"]["closeButton"] = "Close";
MESSAGES["en"]["activated"] = "Activated";
MESSAGES["en"]["activate"] = "Activate";
MESSAGES["en"]["deactivated"] = "Deactivated";
MESSAGES["en"]["update"] = "Update";
MESSAGES["en"]["next"] = "Next";
MESSAGES["en"]["previous"] = "Previous";
MESSAGES["en"]["proceedToTravelersDataInputButton"] = "Proceed to the Travelers Information Form";
MESSAGES["en"]["noGenCondFound"] = "File not Found";
MESSAGES["en"]["add"] = "Add";
MESSAGES["en"]["translationOf"] = "Translate of";
MESSAGES["en"]["buy"] = "Buy";
