Node node = (Node) it.next();
if (node instanceof Element) {
Element elem = (Element) node;
Attribute attrKey = elem.attribute("name");
for (int i = 0; i < elem.nodeCount(); i++) {
Node childNode = elem.node(i);
if (childNode instanceof Element) {
Element elemChild = (Element) childNode;
Attribute attrLocal = elemChild.attribute("local");
if ("zh".equals(attrLocal.getValue())) {