Hello, I have foud an issue with translating buttons in built-in JavaFX dialogs. I have an application where I'm using "java modules".
My goal is to be able to translate every single button in dialog.
Translation resources are available on this place: https://github.com/openjdk/jfx/blob/master/modules/javafx.controls/src/main/resources/com/sun/javafx/scene/control/skin/resources
Resources are loaded throu this class: https://github.com/openjdk/jfx/blob/master/modules/javafx.controls/src/main/java/com/sun/javafx/scene/control/skin/resources/ControlResources.java
Without "java modules" I could simply create custom translation in my projects resources "com/sun/javafx/scene/control/skin/resources" and it should work. But when "java modules" are used, this is not allowed because package "com.sun.javafx.scene.control.skin.resources" would exist in multiple modules, which is not allowed.
Does anyone had to solve this kind of issue?
Thank you.