I'm using jquery dialog box to display Confirm & Cancel button as shown below:
$("#delete_user").click(function(e) {
$("#delete_user_dialog").dialog({
buttons : {
"Confirm" : function() {
$(this).dialog("close");
DeleteUser();
},
"Cancel" : function() {
$(this).dialog("close");
}
}
});
$("#delete_user_dialog").dialog("open");
});
Is it possible to localize this text "Confirm" & "Cancel"??
thanks!