Worker Catalogs
^^^^^^^^^^^^^^^

If you want to create a catalog for your language, you can use the template.*
files in this dir.
There 2 files, but you don't need to create all two
    1.template.catalog
    2.template.catalog.flags
The first contains all strings needed by worker. the second are the name of the flags for the "own command".
The files have the following format:

<Number>:<String>

The number is the internal number for the string. Don't change it because
the string will appear on wrong positions.
You can have empty lines and anything behind # is a comment.
Take a look in the template file, there is the original (internal) string for
the number in the comment before, so you can easily add the string in your
language behind the ":"

If the original string contian some of the special %-characters, you must insert them
in the translation too. For example %s will be replaced by a string (exactly the
printf-format), so for correctness it's important to insert this values at
the correct position for you language.
In some strings you will find the character "|". This is for requesters and
it indicates a new line. You can insert as many of this characters as you want, so
if you need room for your string, you can add "|" and the following text will placed
in a new line. This works only for requester strings, though.
You can split one catalog entry over lines when backslash-ing the newline.
If you need a backslash in the string, backslash it (\\).
If you need the newline character (|) in a requester text, protect it with a
backslash (but because when Worker loads the catalog, it resolve backslash you
have to add two backslashs -> \\| )

In the template some original strings are empty. This string are not used at the
moment.

You doesn't need to translate all strings. If you want to skip a number,
leave it empty or remove the line with
the number from the file. In this case the internal string will used.

Finally replace the "template" in the filename with your language name (for
me for example "template.catalog" becomes "deutsch.catalog" and
"template.catalog.flags" becomes "deutsch.catalog.flags".
Last step is to copy this two files into $HOME/.worker/catalogs (create if not
exists).

Encodings
---------

You can also use UTF8 encoded strings for your translation but you
have to add ".utf8" to the file names. So the file "lang.catalog"
becomes "lang.catalog.utf8" and so on.

Installation
------------

There is also a global directory for catalogs (/usr/local/share/worker
if you didn't changed the install directory). If there are 2 catalogs
with same name, the files in the global directory will be used!

You can then select the language in the global settings.

Don't forget to send me the two files, so I can add them to my release!
