Lang = Class.create({});
Object.extend(Lang, {
    LANG: 'en-au',
    DEFAULT_UNITS: 'kilometers',
    LANG_URL: 'au/',
    DEFAULT_CENTER: {
        lat: '',
        lng: ''
    },
    STRINGS: {
        bad_search: {
            header: 'No search results',
            content: 'Sorry, but we found no search results for #{search_terms}. Please try again by starting a new search.',
            help_header: 'Helpful Hints',
            help_content: 'Check that all words are spelled correctly. It may also help to try different search terms.'
        },
        no_results: {
            header: 'No results for surrounding Travellers Cheque Exchange Locations',
            content: 'Sorry, but we found no search results within #{radius} #{units} of your destination that can exchange Travellers Cheques for local currency.<br /><br />Please try again by starting a new search.',
            help_header: 'Helpful Hints',
            help_content: 'It may help to select a larger distance, or to try a new search for a different location.'
        },
        invalid_zip: {
            header: 'Invalid Zip Code',
            content: 'Please try again by starting a new search. Enter a valid Postal/ZIP code as a search term.'
        },
        city_empty: {
            header: 'No search results',
            content: 'We require a valid city to complete your request. Please try again by starting a new search.'
        },
        city_postal_empty: {
            header: 'No search results',
            content: 'We require a valid city or postal/ZIP code to complete your request. Please try again by starting a new search.'
        },
        feature_unavailable: {
            header: 'Feature Temporarily Unavailable',
            content: 'Because of an internal error, we are unable to show all or some of your selected location types right now. Please try again later. Click close to continue.'
        },
        multiple_results: {
            header: 'Multiple locations found. Please select one.'
        },
        page_unavailable: {
            header: 'Page unavailable',
            content: 'Due to an internal error, this page is unavailable right now. Please try again later.'
        },
        general_error: {
            header: 'Error',
            content: 'Sorry, but we encountered an error. Please try again.'
        },
        print_error: {
            header: 'Print Error',
            content: 'Sorry, we can\'t print this page because your search found no results. Please try a new search.'
        },
        email_error: {
            header: 'Error Sending Email',
            content: 'There was a problem sending your e-mail. Please fill in all required fields and try again.',
            action: 'Click to continue',
            action_link: '#'
        },
        email_success: {
            header: 'E-mail Sent',
            content: 'Your e-mail was sent successfully.',
            action: 'Click to continue',
            action_link: '#'
        },
        actions: {
            continue_link: 'Click to continue',
            landing_link: 'Click to continue',
            get_directions: 'Get Directions'
        },
        warnings: {
            max_results: 'Locations are limited to #{max_results} results. To see more, please refine your search criteria.',
            geocoding: 'Due to technical limitations, some or all locations may not be accurately displayed on the map.'
        },
        loading: 'Loading&hellip;',
        tabs: {
            address: 'Address',
            conditions: 'Conditions'
        },
        page_of: 'of',
        short_distance: 'less than 0.5',
        distance: 'Distance: ',
        website: 'Website:',
        map: 'Map',
        satellite: 'Satellite',
        hybrid: 'Hybrid',
        mile: 'mile',
        miles: 'miles',
        mi: 'mi',
        kilometer: 'kilometer',
        kilometers: 'kilometers',
        km: 'km',
        minutes: 'minutes',
        hours: 'hours',
        hour: 'hour'
    }
});