Editor - i18n.remove.confirm problem

Editor - i18n.remove.confirm problem

andyrandyr Posts: 35Questions: 6Answers: 0

It worked if I used the "1" option:

"i18n" : {
    "remove": {
        "confirm" :  {  "1" :  "Delete This Availability?"  }
    }
},

The example from https://editor.datatables.net/reference/option/i18n.remove.confirm displayed just an "e" in the delete form, instead of that confirm string:

"i18n" : {
    "remove" :  { 
        "confirm" : "Delete This Availability?" 
    }
},

Can you look at this?

Replies

  • allanallan Posts: 61,916Questions: 1Answers: 10,149 Site admin

    This unfortunately looks like a bug in 1.4.2.

    What you could do is use:

    "i18n" : {
        "remove" :  {
            "confirm" : { "_": "Delete This Availability?" }
        }
    },
    

    until 1.5 is available which will address this. Thanks for letting me know about it!

    Regards,
    Allan

  • andyrandyr Posts: 35Questions: 6Answers: 0

    Thanks.

This discussion has been closed.