If LC data is present in the OCMF data, the software throws
java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key app.verify.powerline.resistance.
The property is present in lang_de.properties but not in lang.properties
On inspecting the code found the following snippet :
final LossCompensation lc = ocmfPayloadData.getLC();
if (lc != null) {
lossCompensation = lc.LR + " " + lc.LU;
if (lc.LN != null && lc.LN.length() > 0) {
lossCompensation += " (" + lc.LN + ")";
}
}
if (lossCompensation != null) {
addData.put(Translator.get("app.verify.powerline.resistance"), lossCompensation);
}