private void addEnTag(AbstractTagger cl, String file) throws IOException {
LabelAlphabet label = cl.factory.DefaultLabelAlphabet();
HashMap<String, String> map = MyCollection.loadStringStringMap(c2ePath);
cl.factory.remove("label-en");
LabelAlphabet enLabel = cl.factory.buildLabelAlphabet("label-en");
enLabel.clear();
enLabel.setStopIncrement(false);
for(int i=0;i<label.size();i++){
String cn = label.lookupString(i);
String en = map.get(cn);
if(en==null)