Change connection error message "Server connection lost, trying to reconnec

Hello all

I would like to change the connection error message
“Server connection lost, trying to reconnect…”

How could i change it in Vaadin13?
That string is not in SystemMessagesProvider

Thanks in advance

Have you tried with something like the following?

ReconnectDialogConfiguration configuration = UI.getCurrent().getReconnectDialogConfiguration();
        configuration.setDialogText("Please wait...");

Thanks a lot!