215: Wrong number of links for module

You used an x-module with [x-…]-> which offers a feature that the Aneamal Translator itself does not provide. The number of links you have supplied to the module are either too few or more than the module can handle.

Solution

Make sure your number of links corresponds to what the module can handle. Each link must be preceded by an arrow -> and multiple links must be chained together without space:

[x-example]->first-link->second-link

If the links themselves contain spaces, you can enclose them in backticks like this:

[x-example]->`first link`->`second link`

If you have got many links and want to put each of them onto a separate line, you can do so by putting a backslash at the end of each but the last line:

[x-example]->first-link\
->second-link\
->third-link

If the module only accepts one link, but you want it to process multiple files, consider using the module multiple times:

[x-example]->one-link

[x-example]->second-link