var system_errors = {
  
  'default' : {
    'default' : {
      'not_unique'  : '{name} is already in use by someone else.',
      'required'    : '{name} is a required field. You must choose or enter a value.',
      'type'        : '{name} is not valid.',
      'after_end'   : 'The end date must be after the start date.'
    },
    'email' : {
      'invalid'     : 'Your email address is invalid, please check it and try again.'
    }
  },
  
  'comment' : {
    'body' : {
      'has_link'    : 'Sorry, you can not post comments that contain html links.'
    }
  },
  
  'contact_us' : {
    'email' : {
      'invalid'    : 'Your email address is invalid, please check it and try again.'
    }
  },
  
  'dealer' : {
    'email' : {
      'type'    : 'Your email address is invalid, please check it and try again.'
    },
    
    'website' : {
      'type'    : 'Your website address is invalid, please check it and try again.'
    },
    
    'postcode' : {
      'length'    : 'The postcode you entered is either too short or too long, please check it or try again.'
    },
    
    'geocode' : {
      'not_found' : 'Address lookup failed, please check your address details and try again.'
    }
  }
};