/*jslint white: true, browser: true */
/*global VL:true */
VL.monthName = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
VL.copy = {
    tltext: 'read the transcript',
    readRev: 'Read full review',
    hideRev: 'Hide full review',
    hideAllRev: 'Hide all reviews',
    exAllRev: 'Expand all reviews',
    newWindow: 'Link will open in a new window',
    adults: 'Adults:',
    children: 'Children:',
    room: 'Room',
    totalPrice: 'Total Price:',
    moreOptions: 'More Search Options',
    fewerOptions: 'Fewer Search Options',
    printPage: 'Print this page',
    print: 'Print',
    bookmarkPage: 'Bookmark this page',
    selectArea: 'Please select an area',
    allCentral: 'All Central London',
    allNorth: 'All North London',
    allEast: 'All East London',
    allSouth: 'All South London',
    allWest: 'All West London',
    orArea: 'Or search by area',
    orPostcode: 'Or search by postcode',
    orDates: 'Or search specific dates',
    orPeriod: 'Or search date period',
    mapNW: 'Move North West',
    mapN: 'Move North',
    mapNE: 'Move North East',
    mapW: 'Move West',
    mapE: 'Move East',
    mapSW: 'Move South West',
    mapSE: 'Move South East',
    mapS: 'Move South',
    mapZ: 'Zoom Map',
    all: 'All ',
    pleaseChoose: 'Please choose an option above',
    or: 'or',
    tripsAdd: 'Add another trip',
    trip: 'Trip ',
    remove: 'Remove',
    edit: 'edit',
    hide: 'hide',
    errorTripNoName: function (tn) {
        return 'Trip ' + tn + ' requires a name';
    },
    errorTripNoDeparture: function (tn) {
        return 'Trip ' + tn + ' requires a full departure date';
    },
    errorTripNoArrival: function (tn) {
        return 'Trip ' + tn + ' requires a full arrival date';
    },
    errorTripNoAfter: function (tn) {
        return 'Trip ' + tn + ' requires a departure date after its arrival date';
    },
    errorTripNoReason: function (tn) {
        return 'What is the reason for Trip ' + tn + '?';
    },
    errorTripThisName: 'This trip requires a name',
    errorTripThisDeparture: 'This trip requires a full departure date',
    errorTripThisArrival: 'This trip requires a full arrival date',
    errorTripThisAfter: 'This trip requires a departure date after its arrival date',
    removeTrip: function (tn) {
        return 'Are you sure you want to remove "' + tn + '"?';
    },
    ta : {
        travellerRating: 'Traveller Rating:',
        outof5: 'out of 5',
        ranking: function(n) {
            return 'Ranked #<b>'+n+'</b>';
        },
        basedon: function(n) {
            switch (n) {
            case 1 : return 'Based on 1 reviews'; break;
            default: return 'Based on '+n+' reviews'; break;
            }
        },
        expect: 'What to Expect:',
        recommended: 'Recommended for:',
        outof10: "out of 10",
        latest: function(n) {
          return "Latest " + n + " reviews of ";
        },
        rating: 'Rating: ',
        writefirst: 'Be the first to write a review.',
        owner: 'Are you a representative of ',
        respond: 'Respond to Reviews',
        writereview: 'Write a Review',
        readmore: 'Read more reviews on TripAdvisor',
        about: 'About TripAdvisor and Visit London',
        legal: 'Please be advised that any comments, opinions and statements submitted herewith are entirely independent and do not represent views held by, or are in any way connected to Visit London.',
        aboutlink: '/people/tripadvisor'
    }
    
};