Little PHP Gettext Locale Management Thingy
===========================================

Intro
-----
This is a simple little system for managing .po files and
installing .po files for any PHP project wishing to use
gettext.

It's still in very early stages, and will probably make
anyone with gettext clue laugh - if you have any suggestions
they're welcome :)


Installing
----------
This is all most users are likely to worry about.

If you don't want locale support, you can skip this entirely,
otherwise, type "make install". It should build a load of .mo
files in the project locale/ directory.

That should be it.


Translating
-----------
If you're a developer or translator, and you want to update
your .po files, "make update" will scan the source tree and
update all .po's with the latest strings.

Anything which has changed will be marked "#, fuzzy", meaning
you should recheck the translation. Delete the comment afterwards.

To start a new translation, simply "touch <language code>.po" and
"make update", and it will be replaced with a base language template.
Change the header fields, translate what's needed, and make install to
see if it works. If all goes well, submit it :)

Consult the gettext documentation at http://www.gnu.org/manual/gettext/
or 'info gettext' for more.


Cleaning
--------
Installation automagically does this, otherwise "make clean" to
clear the project locale dir.


Author
======
Complaints, flames, bugreports and hate mail to:
 Thomas Hurst <freaky@aagh.net>

