//encoding: utf-8

//User variables
var GstrLang = "en";
var MONTH_NAMES=['January','February','March','April','May','June','July','August','September', 'October','November','December','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep', 'Oct','Nov','Dec'];
var DAY_NAMES=['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sun','Mon','Tue','Wed','Thu','Fri','Sat'];
var DAY_HEADERS = ["Su","Mo","Tu","We","Th","Fr","Sa"];

var GaText = [];
GaText[0] = "From";
GaText[1] = "To";
GaText[2] = "Please choose the airport you're departing from.";
GaText[3] = "Please choose your destination.";
GaText[4] = "The date you have chosen is in the past. Unfortunately we're not yet a time travel company. Please try again.";
GaText[5] = "The date you have chosen is not valid. Please try again.";
GaText[6] = "Your departure must be BEFORE your arrival.";
GaText[7] = "You have chosen to depart and arrive on the same day. Are you sure you want to continue?";
GaText[8] = "You have chosen today as a departure day. Only flights that leave at least three hours from now will be shown on step 2 of the booking process.";
GaText[9] = "You can only book one infant per adult online. Please visit our Help Centre for more information.";
GaText[10] = "Infants cannot travel alone. Please add at least one adult for every infant in your booking.";
GaText[11] = "There are no passengers in your booking. To continue, please add at least one passenger.";
GaText[12] = "You are booking a flight for one or more children aged 2 to 12 years. It is mandatory to purchase special assistance for children travelling without parents or guardians. Press OK to continue. Please note that if your flight departs in less than 48 hours you must contact our call center to make your booking. You must fill out a special form at the airport when the child is checked in for the flight. In our Help Centre you will find more information regarding children travelling alone. You may also contact our call centre on +44 (0)118 321 8384.";
GaText[13] = "Return";
GaText[14] = "Type of Booking";
GaText[15] = "Return";
GaText[16] = "One Way";
GaText[17] = "Open Jaw";
GaText[18] = "From/To";
GaText[19] = "First leg";
GaText[20] = "Second leg";
GaText[21] = "Flying out on";
GaText[22] = "Returning on";
GaText[23] = "Passengers";
GaText[24] = "No adults";
GaText[25] = "adult";
GaText[26] = "adults";
GaText[27] = "No children";
GaText[28] = "child";
GaText[29] = "children";
GaText[30] = "Under 12 years";
GaText[31] = "No infants";
GaText[32] = "infant";
GaText[33] = "infants";
GaText[34] = "Under 2 years";
GaText[35] = "Choose currency";
GaText[36] = "Are you booking a trip for more than 10 passengers? In that case, choose OK to go to Group Bookings and continue with your booking. Choose Cancel to go back to booking for 1-10 passengers.";
GaText[37] = "Please choose a date for your second flight.";
GaText[38] = "Please choose a date for your return flight.";
GaText[39] = "Please choose a date for your flight out.";
GaText[40] = "Please choose a date for the first flight in your booking.";
GaText[41] = "Please choose a date for the second flight in your booking.";
GaText[42] = "Please choose a destination for your second flight.";

var GaAirports = [
//"    | --------------------------",
  "ALC | Alicante",
  "BCN | Barcelona",
  "BSL | Basel",
  "BER | Berlin Brandenburg",
  "SXF | Berlin Schonefeld",
  "BLL | Billund",  
  "BLQ | Bologna",
  "CPH | Copenhagen",
  "EDI | Edinburgh",
  "HHN | Frankfurt Hahn",
  "GOT | Gothenburg",
  "KRK | Krakow",
  "LGW | London Gatwick",
  "STN | London Stansted",
  "CDG | Paris Charles de Gaulle",
  "KEF | Reykjavik",
  "WAW | Warsaw",
  "VNO | Vilnius"
];

var GaMonths = "January,February,March,April,May,June,July,August,September,October,November,December".split(',');
var GaWeekdays = "Sun,Mon,Tue,Wed,Thu,Fri,Sat".split(',');

var GaCurencies = [
   "British Pounds | GBP",
   "Canadian Dollars | CAD",
   "Euros | EUR",
   "Danish Krone | DKK",
   "Swedish Krone | SEK",
   "Norwegian Krone | NOK",
   "US Dollars | USD"
];

GaGroupBookUrl = '/booking/groups_11+/';

