// error messages and other text for direct translation Strings = { get_directions: 'Get Directions', enter_start_name: 'Please enter a start location for your route', enter_country_dealer: 'Please enter a country and location or dealer name to search for in the form above', err1: 'Multiple geocode matches', err2: 'No geocode matches', err3: 'No geocode matches', err4: 'There were no matching results', tab1_name: 'tab1', tab2_name: 'tab2', err_td_problems: 'The Multimap route service encountered an unexpected error whilst servicing your request, please try again. If this problem persists please contact Multimap Customer Services.', err_td_multiple : 'There are multiple matches for this location:', err_nomatch_location: 'No matches', plan_route: 'Plan my route', plan_your_route: 'Plan your route to', distance_from: 'Distance from location:', tel: 'Tel:', h_results: 'Results', txt_print: 'Print this page', txt_top: 'Back to top', txt_page_next: 'Next', txt_page_prev: 'Previous', units: 'km', td_head: 'Travel Directions', td_th_directions: 'Route instructions', td_th_miles: 'miles', td_sum_days: 'Days', td_sum_hrs: 'hrs', td_sum_mins: 'mins', td_sum_from: 'Start', td_sum_to: 'End', td_sum_totaldist: 'Total distance', td_sum_duration: 'Est. duration', shop_open: 'Shop openingtimes', week: 'Monday to Friday', weekend: 'Weekend', service_open: 'Service openingtimes', ib_dealer_details: 'Dealer Details', ib_tab_details: 'Details', ib_select_dealer: 'Select dealer', ib_tab_mobile: 'Send to mobile', // dealer_example is used for the example text in the dealer name search box dealer_example: 'e.g. Adderley Garage', // address_example is used for the example text in the address search box address_example: 'e.g. Beach Road, Norwich', searched_for: 'Searched for:', dealers: 'dealers within a radius of', found: 'Found:', freetext: 'About this dealer', productrange: 'Product range', pics: '', openingtimes: '', yamahadealer: '', stardealer: '', starimage: '/Images/star_red_2_tcm98-252484.gif', pushpin: 'http://css.yamaha-motor-europe.com/dealerlocator/mbk/img/loc-pushpin.png', searchpage: '/mbk/dealers/index.jsp', detailspage: '/mbk/dealers/detail.jsp', routepage: '/mbk/dealers/route.jsp', stringspage: '/mbk/dealers/js/strings.jsp', mapicon: 'http://css.yamaha-motor-europe.com/dealerlocator/mbk/img/mbk_mapicon.png', imageurl: 'http://dealers.yamaha-motor-europe.com/images/', cssurl: 'http://css.yamaha-motor-europe.com/dealerlocator/mbk/img/', fax: 'Fax', telephone: 'Tel:', telephone2: 'Tel2', web: 'Website', web2: 'Website 2', email: 'Email', country:'' } /****************************************************************************** CountryOptions ****************************************************************************** // This sets up the available fields in the country drop down menu // Key: // The iso country code to be used for the search // // value: // The name of the country that will appear in the drop down // // coords: // The country bounds used to bring the correct map into view when the drop down is changed, // they should already be set up correctly so if you're happy with it as they are you won't need // to change these but if you do the format is: // 'latitude_1:longitude_1;latitude_2:longitude_2' // each point should be for an opposite corner of the map e.g. top-right;bottom-left or top-left;bottom-right // // selected: // Sets the value of the drop down if set to true, drop down defaults to the // 'Select country' option if selected is not set for any of the options below // *****************************************************************************/ CountryOptions = { 'Select a country': { 'value': 'Select a country', 'coords': '', 'selected': false }, 'BE': { 'value': 'Belgium', 'coords': '51.73311,2.11897;49.46464,6.9969', 'selected': false }, 'FR': { 'value': 'France', 'coords': '41.57911,-7.24139;51.97762,11.21564', 'selected': false } } // CountryDisplay - sets the display style on the country menu element, should be 'inline' or 'none' if you need to hide it CountryDisplay = 'inline'; // CountryDisabled - disables the country menu - doesn't hide it CountryDisabled = false; // search_max_distance - max distance radius for the store search - uses the units variable below so as is the distance will be 100 miles, // if units is set to 'km' it will be 100 km var search_max_distance = 100; // units - used for the store search to specify the distance from the search in the results and also for the radius of the search, 'miles' or 'km' - see above var units = 'km'; // route_units - used for the route search results for the units that will be displayed to the user - 'miles' or 'km' var route_units = 'km'; // sets the language for the route results return from the multimap route requester var route_country_code = null;