// error messages and other text for direct translation Strings = { get_directions: 'Chemin d\'accès', enter_start_name: 'Merci d\'entrer une adresse de départ pour le calcul de votre itinéraire', enter_country_dealer: 'Merci de rentrer une ville ou un nom de concession dans le formulaire ci-dessus', err1: 'Plusieurs codes correspondent à votre demande', err2: 'Aucun code ne correspond', err3: 'Aucun code ne correspond', err4: 'Aucun résultat à votre demande', 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: 'Mon itinéraire', plan_your_route: 'Votre itininéraire', distance_from: 'Distance du point de départ:', tel: 'Tel:', h_results: 'Résultats', txt_print: 'Imprimer cette page', txt_top: 'Haut de page', txt_page_next: 'Next', txt_page_prev: 'Previous', units: 'km', td_head: 'Indications de parcours', td_th_directions: 'Plan de route', td_th_miles: 'miles', td_sum_days: 'Jours', td_sum_hrs: 'hrs', td_sum_mins: 'mins', td_sum_from: 'Départ', td_sum_to: 'Fin', td_sum_totaldist: 'Distance totale', td_sum_duration: 'Temps estimé', shop_open: 'Horaires d\'ouverture', week: 'Lundi au Vendredi', weekend: 'Weekend', service_open: '', ib_dealer_details: 'Plus d\'infos', ib_tab_details: 'Détails', ib_select_dealer: 'Sélectionner un concessionnaire', ib_tab_mobile: 'Send to mobile', // dealer_example is used for the example text in the dealer name search box dealer_example: 'Ex: Scoot\'91', // address_example is used for the example text in the address search box address_example: 'Ex: Avenue Pasteur, Paris', searched_for: 'Recherche de :', dealers: 'concessionnaire dans un rayon de', found: 'Résultats:', freetext: 'A propos de ce concessionnaire', productrange: 'Gamme de produits', pics: '', openingtimes: '', yamahadealer: '', stardealer: '', starimage: '/french/Images/star_red_2_tcm101-252484.gif', pushpin: 'http://css.yamaha-motor-europe.com/dealerlocator/mbk/img/loc-pushpin.png', searchpage: '/french/mbk/dealers/index.jsp', detailspage: '/french/mbk/dealers/detail.jsp', routepage: '/french/mbk/dealers/route.jsp', stringspage: '/french/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: 'Site internet', web2: 'Site internet 2', email: 'Email', country:'BE' } /****************************************************************************** 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 = { 'BE': { 'value': 'Belgium', 'coords': '51.73311,2.11897;49.46464,6.9969', '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;