Merge pull request #368 from butonic/i18n_of_cancel_button

add i18n for close button in the max upload size reached dialog
remotes/origin/stable5
Lukas Reschke 14 years ago
commit 89f2d4ba07
  1. 7
      apps/files/js/files.js

@ -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' );
}
}
}
});

Loading…
Cancel
Save