﻿/*
    Name        :   usermessages.js
    Purpose     :   Put all string messages that will be displayed back to the user in this one file, 
                    and make it easier to maintain going forward. Eventually I would like to make this
                    so that it is pulled from the database.
                    
    Author      :   JohnD (Baudville) - 2/5/2009     
    
    History     :   JohnD (Baudville) - 2/5/2009
                    Created the file for the first time. 
                    
                    JohnD (Baudville) - 5/2009
                    Added in the user messages for the credit card validation
                    
                    JohnD (Baudville) - 7/8/2009
                    Added in the changes for the theme-chooser page.       
                    
                    JohnD (Baudville) - 7/13/2009
                    Added in messages for Caboodle Builder page       
                    
                    JohnD (Baudville) - 9/14/2009
                    Change the text for array item 5, where VerseTextValid was added.
*/
//User Message Array
var _arrUserMsg = new Array();
//User Messages - Personalization (Trophies/Plaques)
_arrUserMsg[0] = "You have not entered any personalization for this item, please complete at least 1 line or select No under Personalization Options to proceed.";
_arrUserMsg[1] = "One of your items contains no personalization, would you like to remove this item and continue?";
//Close button on both the trophy and plaque personalization dialogs.
_arrUserMsg[2] = "You will lose all personalization information if you continue. Are you sure you want to close the personalization window? ";
_arrUserMsg[3] = "No logo was attached, please upload now or uncheck the logo box.";
_arrUserMsg[4] = "Initials for Approval required.";
_arrUserMsg[5] = "Line1 or Line2 VERSETEXTVALID were not filled in.";
_arrUserMsg[6] = "Lines Allowed: MAXLINES";
_arrUserMsg[7] = 'Use "Enter" for line breaks';
_arrUserMsg[8] = 'There are no item(s) to add to the cart';
_arrUserMsg[9] = 'Failed to the save your quick order items to the cart, please verify that everything is correct';
_arrUserMsg[10] = 'Item [SKU] is invalid or not orderable online.';
_arrUserMsg[11] = "Best viewed under MINWIDTH * MINHEIGHT, your resolution is USERWIDTH * USERHT";
_arrUserMsg[12] = "We apologize for the inconvenience, your screen resolution needs to be 1024 x 768 or higher to complete personalization.";
//Credit card message
_arrUserMsg[13] = "Card Declined";
_arrUserMsg[14] = "Invalid account number";
_arrUserMsg[15] = "Invalid expiration date";
_arrUserMsg[16] = "Address verification failed.";
_arrUserMsg[17] = "Item was not added to your cart.";
//Used on the theme-chooser page 
_arrUserMsg[18] = "Choose great products from these new and top-selling themes to help you promote your companies values. <br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute."; //main
_arrUserMsg[19] = "Recognize the collaboration and successes of your team members with teamwork focused character pins. <br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute. "; //Teamwork
_arrUserMsg[20] = "Brighten someone's day with a small gesture of appreciation with these thank you character pins. <br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute. "; //Thank you
_arrUserMsg[21] = "Motivate and inspire by acknowledging their achievements with these motivational character pins. <br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute. "; //Motivational
_arrUserMsg[22] = "Recognize their hard work with high quality success and dedication character pins.<br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute. "; //Dedication
_arrUserMsg[23] = "Recognize a job well done and outstanding performances with excellence character pins. <br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute. "; //Excellence
_arrUserMsg[24] = "Reward and reinforce positive attitudes in your organization with these attitude focused character pins. <br />With over 100 themes to choose from, use the drop-down at right to narrow down by a theme attribute. " //Attitude
//Used on the caboodle builder page
_arrUserMsg[25] = "Your Caboodle is full. You will need to remove a current Cheers Kit selection before adding a new selection.";
_arrUserMsg[26] = "You have not completed your Caboodle. Please make sure you've selected 3 Cheers Kits in order to proceed.";




