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

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

<Number>:<String>

The number is the intern 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.
But look in the template file, there is the original (intern) string for
the number in the comment before, so you can easily add the string in your
language behind the :

If the original String some of the special %-characters, you must insert them
in the translation. 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's indicates a new line. You can insert as many of this chars as you want, so
if you need room for your string, you can add "|" and the following will placed
in a new line. This works only for requester-strings!.
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 orignal string are empty. This string are not used at the
moment.
You doesn't need to translate all strings. But if you want to skip a number,
leave it empty or remove the line with
the number from the file. In this case the intern string will used.

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

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

Then you can select the language in the global settings.

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