getTranslationObjectPreview doesn't provide all necessary files
Hi,
I need to get preview of a page to send it as a reference to the linguists. Using getTranslationObjectPreview on a TranslationObject should get me a zip which contains an html and supporting css/js files which can be used to preview the page outside AEM instance.
I am getting a zip but which is missing important files and messing up the page formatting which can't be used as a valid reference file. From the code below, the ZipInputStream is converted to a zip file which I can then extract. Am I missing something here? Why are the necessary css/js files included in the zip? Code an preview screenshot below:
@Override
public String uploadTranslationObject(String jobId, TranslationObject object)
throws TranslationException {
ZipInputStream inputStream = null;
try {
inputStream = object.getTranslationObjectPreview();
} catch (Exception ex) {
LOGGER.info("Error while generating translation object preview.");
inputStream = null;
}
}

