Alter date formats declared by another module.
Called by _system_date_format_types_build() to allow modules to alter the return values from implementations of hook_date_formats().
function hook_date_formats_alter(&$formats) {
  foreach ($formats as $id => $format) {
    $formats[$id]['locales'][] = 'en-ca';
  }
}