// localised static values
function localizedStrings() {
this.months = new Array ('January ','February ','March ','April ','May ','June ','July ','August ','September ','October ','November ','December ');

//normal reservations only flights
this.invalidAirportCombination1 =
"   Unfortunately the combination of \n" +
"   departure airport and destination airport \n" +
"   that you have selected is currently \n" +
"   not available for booking on-line.\n\n" +
"   For more information\n" +
"   please see our Contact Us page ";
//additional reservations message if a Continental codeshare flt
this.invalidAirportCombination2 =  
"\n\n" +
"   These are codeshare services and are\n" +
"   wholly operated by Continental Airlines.\n" +
"   All products and services on these flights\n" +
"   are in line with standard Continental\n" + 
"   Airlines products and services.\n" +
"   Flybe Economy Plus is not available\n" + 
"   on these flights.";	    
//displayed for ScotAirways code share
this.invalidAirportCombination3 =
"   Unfortunately the combination of \n" +
"   departure airport and destination airport \n" +
"   that you have selected is currently \n" +
"   not available for booking on-line \n" +
"   through this system. \n\n" + 
"   For more information\n" +
"   please see our Contact Us page ";            

this.baconnectmessage = 
"   Unfortunately the travel dates you have chosen\n " + 
"   for the selected route is not available to book\n " + 
"   on Flybe.com.  Travel on this route is available to\n " + 
"   book on Flybe.com for journeys beginning after\n " + 
"   25th March 2007.  You will be redirected after\n " + 
"   clicking on the button below. ";
                	   
                	   
this.saturdaysOnly = "\n__________________________________\n\n" +
"        Please note that this \n" +
"        flight operates on \n" +
"        Saturdays only. ";

this.saturdayOnlyDepartures = "\n__________________________________\n\n" +
"        Please note that this \n" +
"        departure flight operates \n" +
"        on Saturdays only. ";


this.saturdayOnlyReturns = "\n__________________________________\n\n" +
"        Please note that this \n" +
"        return flight operates \n" +
"        on Saturdays only. ";

this.businessClassOnly = "\n__________________________________\n\n" +
"        Sorry, Business class is not \n" +
"        available on this route. \n" +
"        Please select Premium economy. ";

this.routeNotYetAvailable = 'This route is not available to book until November, please reselect';

this.callCallCentre = 'This route is not available online. To book this route please see our Contact Us page.';

this.skiRoute1 = 'Passengers wishing to take skis on this route should see our Contact Us page.';
this.skiRoute1a = ' ('
this.skiRoute1b = ' if calling from outside the UK) '
this.skiRoute2 = 'within 24 hours of making their booking to prebook their ski equipment.  '
+ 'Skis will be guaranteed carriage for \u00A315 (or local currency equivalent) per set, per sector.  ';

this.requiredFieldStr = 'Please supply the ';

this.departureDayStr = 'departure day.';
this.departureMonthStr = 'departure month.';
this.departureAirportStr = 'departure airport.';
this.destinationAirportStr = 'destination airport.';
this.returnDayStr = 'return day or clear the return month.';
this.returnMonthStr = 'return month or clear the return day.';
this.depDestDifferent = 'Please select different departure and destination airports.';
this.noOutwardXmasStr = 'There are no outward flights available on Christmas Day. \n\nPlease reselect.';
this.noReturnXmasStr = 'There are no return flights available on Christmas Day. \n\nPlease reselect.';

this.thereAreOnly = 'There are only ';
this.daysInMonthStr =' days in ';
this.amendDepDate = '.\n\nPlease amend departure date.';

this.amendRetDate = '.\n\nPlease amend return date.';

this.earliest = 'The earliest day you can search for is today, 2 hours before take off.\n' +
'Please amend.\n\n' +
'If you need to book for today please see our Contact Us page.';

this.invalidDepartureDate = 'Please be aware that this route is due to commence operation from the ';
this.flyingAfterSchedule = 'Bookings for this route can be made for travel up to ';
this.timetableAlert = '.\nNew timetables will be released in June and November,\n' +
'but we also add to our timetable throughout the year.\n\n' +
'To be the first to hear about our new timetables and\n' +
'other great offers sign up to our Email Newsletter Now!\n\n';

this.forFlightFrom = '. Please reselect your date(s) accordingly. For further information regarding our flight schedules please feel free to check our online timetable above.';
this.flightsFrom = 'Flights from ';
this.flightsTo = ' to ';
this.advanceBookingRequired = ' must be booked more than 3 days in advance.';

this.returnDateInvalid = 'The return date can not be before the departure date.\n\nPlease amend.';
this.dayReturn = 'This is a day return. If this is not intentional, please amend.';
this.invalidRoute = 'We don\'t fly this route. Please select another combination.';

this.interIslandRoutes = 'Flybe regrets that due to licensing difficulties with the Guernsey Transport Board it has had to suspend the sale of this service to new reservations.  We hope to be able to reinstate this service in the near future.  Passengers holding existing reservations should check-in as normal';

this.departingFrom='departing from';
this.goingTo='going to';

this.unmin='Children aged 11 years or under will be carried as unaccompanied minors\n' +
'unless they are travelling with an adult over the age of 16 years.\n' +
'Children under 15 cannot travel alone on services operated by Air France.\n' +
'Please see our Contact Us page for further advice.';

this.invalidNumAdults='Please select the number of passengers who will be flying.';
}

flightStrings = new localizedStrings;

