    Few notes about the contents of this directory.

Makefile

    Makefile performs all needed actions when called correctly:

        make all
        make do-trm         --  creates all .trm files

        make check-<lang>   --  checks whether the file <lang>.po is
                                correct.  actually, it just shows the
                                information about this very translation

        make update-po      --  updates all translations.
                                it tries to msgmerge new dbootstrap.pot
                                file with the current translation
				
	make update-<lang>  --  updates an translation.

How to create a new translation?

    Just copy the file dbootstrap.pot into <lang>.po file.  <lang> is taken
    from appropriate RFC (I do not remember the number, sorry.)

What to look after?

    Please make sure that the header (the translation for empty string) has
    fuzzy flag.  That means that all translations will have one (1!) fuzzy
    translation.

How to check you translation is OK?

    Well, the first of all try to give it to somebody who speaks your language.
    It's likely that that person will give you some advices what can be
    improved. :)

    The second thing is to check that the file will be correctly used.
    Execute:
        make check-C check-<lang>

    You should see something like:

        C.po: 402 translated messages, 1 fuzzy translations.
        <lang>.po: 402 translated messages, 1 fuzzy translations.

    If the set of numbers is the same (402, 1 in our case) and the appropriate
    numbers are equal (like in our case: 402 is equal to 402, and 1 is equal to
    1), it's fine.  If not, you should check what is wrong with your
    translation.
