add i18n for cancel button

This commit is contained in:
Jörn Friedrich Dreyer 2012-11-12 10:49:40 +01:00
parent 09d6d843f7
commit bbef5b377e
1 changed files with 5 additions and 2 deletions

View File

@ -219,8 +219,11 @@ $(document).ready(function() {
$( '#uploadsize-message' ).dialog({
modal: true,
buttons: {
Close: function() {
$( this ).dialog( 'close' );
Close: {
text:t('files', 'Close'),
click:function() {
$( this ).dialog( 'close' );
}
}
}
});