You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running JHove in a Non-English environment I ran into lots of InvocationTargetExceptions if localized messages were missing.
Looking into the ErrorMessage_de.properties of different modules I discovered several issues with wrong / missing message properties.
This led to NULL values in the corresponding MessageConstants enum.
As a quick fix you can already set a system property to force JHove to use the English messages.
System.setProperty("module.language", "en");
I am going to provide some corrections to the properties as Pull Request.
It would be good to have a fallback to the default message, if a message is missing for a certain language.
This will usually happen when error messages are added or updated.
The text was updated successfully, but these errors were encountered:
Running JHove in a Non-English environment I ran into lots of
InvocationTargetException
s if localized messages were missing.Looking into the
ErrorMessage_de.properties
of different modules I discovered several issues with wrong / missing message properties.This led to NULL values in the corresponding
MessageConstants
enum.I am going to provide some corrections to the properties as Pull Request.
It would be good to have a fallback to the default message, if a message is missing for a certain language.
This will usually happen when error messages are added or updated.
The text was updated successfully, but these errors were encountered: