Notes on how to do a localization (l10n) for Docky
==================================================

Creating a l10n:
        First of all you create a template to base your translation on:
                intltool-update --pot

        Then copy it to your translation:
                cp docky.pot ca_ES.po
        Do your translation, with some kind of editor:
                vim ca_ES.po
        Make sure it is UTF-8 encoded.

        Then edit LINGUAS and add your l10n to it.

Updating your l10n:
------------------
        To update an existing po:
                intltool-update ca_ES

