Hi WanMil,

please check:
SeaGenerator contains to places with this loop:
                        for(String tag : w)
                            if(tag.equals("name") || tag.endsWith(":name"))
                                w1.addTag(tag, w.getTag(tag));

This will not work, because tag will contain the complete tag, something like "name=XYZ" or "name:de=Rügen"

Attached patch changes the code so that it works, but maybe it is better to remove the lines?
I found no change in the output when using the patch.

Gerd