Added localization strings for the jQueryUI dialog buttons.
This commit is contained in:
@@ -1796,21 +1796,19 @@ jQuery.fn.PMA_confirm = function(question, url, callbackFn) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$('<div id="confirm_dialog"></div>')
|
var button_options = {};
|
||||||
.prepend(question)
|
button_options[PMA_messages['strOK']] = function(){
|
||||||
.dialog({
|
|
||||||
buttons: {"OK": function(){
|
|
||||||
$(this).dialog("close").remove();
|
$(this).dialog("close").remove();
|
||||||
|
|
||||||
if($.isFunction(callbackFn)) {
|
if($.isFunction(callbackFn)) {
|
||||||
callbackFn.call(this, url);
|
callbackFn.call(this, url);
|
||||||
}
|
}
|
||||||
},
|
};
|
||||||
"Cancel": function(){
|
button_options[PMA_messages['strCancel']] = function() { $(this).dialog("close").remove(); }
|
||||||
$(this).dialog("close").remove();
|
|
||||||
}
|
$('<div id="confirm_dialog"></div>')
|
||||||
}
|
.prepend(question)
|
||||||
});
|
.dialog({ buttons: button_options });
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1952,6 +1950,9 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
/* @todo Validate this form! */
|
/* @todo Validate this form! */
|
||||||
|
|
||||||
|
var button_options = {};
|
||||||
|
button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove(); }
|
||||||
|
|
||||||
PMA_ajaxShowMessage();
|
PMA_ajaxShowMessage();
|
||||||
$(this).append('<input type="hidden" name="ajax_request" value="true" />');
|
$(this).append('<input type="hidden" name="ajax_request" value="true" />');
|
||||||
|
|
||||||
@@ -1961,8 +1962,7 @@ $(document).ready(function() {
|
|||||||
.dialog({
|
.dialog({
|
||||||
title: PMA_messages['strCreateTable'],
|
title: PMA_messages['strCreateTable'],
|
||||||
width: 900,
|
width: 900,
|
||||||
buttons : {"Cancel" : function() {$(this).dialog('close').remove() ;}
|
buttons : button_options
|
||||||
}
|
|
||||||
}); // end dialog options
|
}); // end dialog options
|
||||||
}) // end $.get()
|
}) // end $.get()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user