Input dialog form issue

Hi,

I have a problem with input dialog.

dialog2
dialog1

It looks normal when language is set to English, but it looks completely different and unusable when language is set to Georgian.

This is my code:

dialogs.createInputDialog(this)
.withCaption(messageBundle.getMessage(“createAbsence”))
.withParameters(
InputParameter.dateParameter(“startDate”)
.withCaption(messageBundle.getMessage(“startDate”))
.withRequired(true),
InputParameter.dateParameter(“endDate”)
.withCaption(messageBundle.getMessage(“endDate”))
.withRequired(true),
InputParameter.entityParameter(“code”, AbsenceCode.class)
.withCaption(messageBundle.getMessage(“absenceCode”))
.withRequired(true),
InputParameter.stringParameter(“description”)
.withCaption(messageBundle.getMessage(“description”)),
InputParameter.entityParameter(“worker”, Worker.class)
.withCaption(messageBundle.getMessage(“worker”))
.withRequired(true)
)
.withActions(DialogActions.OK_CANCEL)
.withCloseListener(closeEvent -> {

            })
            .show();

Can anybody help me with this problem ?

Hello,

Could you clarify what version of CUBA do you use? Not sure that the problem with the localization. By default, all fields except for date and time should occupy all space to the right.

Do you have custom CSS for the InputDialog?

I am using the latest version of CUBA for this moment.
I have no custom css for input dialog. If I had it, it probably would effect my input dialog when language is set to English too.

I am not sure how localization can affect dialog appearance either, but I still have this problem when I change language.

I’m worry about this space:
image
Because in my demo it looks like:
image

Could you share all code what you do with this InputDialog instance? Or better reproduce this problem in a small demo project and share it?