diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-11-12 06:36:51 -0800 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-11-12 06:36:51 -0800 |
commit | 89f2d4ba07e262a17ede70c25c245b7dfa09e817 (patch) | |
tree | 023e3571bae343600bc5c6e4a0b31f4674794a4a /apps | |
parent | e0fdb8272beb0a0f537b9a60b8e0258a9a59c288 (diff) | |
parent | bbef5b377e2b90f0b7b54278228abb931cd6431f (diff) | |
download | nextcloud-server-89f2d4ba07e262a17ede70c25c245b7dfa09e817.tar.gz nextcloud-server-89f2d4ba07e262a17ede70c25c245b7dfa09e817.zip |
Merge pull request #368 from butonic/i18n_of_cancel_button
add i18n for close button in the max upload size reached dialog
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/files.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index e54d4d7b74f..982351c589e 100644 --- a/apps/files/js/files.js +++ b/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' ); + } } } }); |