// $Id: $
*****************************************************************
Drupal Module: Create download packages for l10n server projects
****************************************************************

This module creates download packages for l10n community projects and releases
and keeps them up to date on cron run. It also provides some download pages.


Important Installation notes
-----------------------------
As default Drupal forbids .po files from being downloadable. To enable them for downloads
this module attempts to create an .htaccess in the defined translations directory.
If it cannot be done automatically, there will be a warning in the settings page and you'll
need to create it manually. It needs the following lines in .htaccess in the translation downloads folder:

# Allow downloads of po files
<FilesMatch "\.po$">
  Allow From All
</FilesMatch>