Dialog script localization

Hi!
What would be the proper way of apply localization to a dialog window like this delete confirmation?

Thanks!

Hi @Miguel_Bandera,

I believe that you can use the same technique similar to localized properties.

It's seems Miguel asked about the header of the default Confirm Box ("Confirm").
Message is obviously can be localized. But what about Header "Confirm"?
How to and where it's possible to be localized?

Dear collegues,

The place where Confirm message and Title could be localized as answered enchev:

            if (await DialogService.Confirm("Confirm?", string title = "Confirm", ConfirmOptions options = null) == true)
            {
                await DeleteRecord(data.ID);
            }

Just add condition to arguments (message and title) depending on the current Culture.