aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-11-12 23:36:59 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-11-12 23:36:59 +0100
commit268a48479dd8cc14eaf3484043cf4857526ccab2 (patch)
treebe2fe2a161cf50eeadabfc2f7910db6590454fdf /apps/files
parentc127c78df498214ed03982c9a406d8c52135123b (diff)
parent7b53c9d3f07bf630d38a7a9c92ee44a3fb9b0f21 (diff)
downloadnextcloud-server-268a48479dd8cc14eaf3484043cf4857526ccab2.tar.gz
nextcloud-server-268a48479dd8cc14eaf3484043cf4857526ccab2.zip
Merge branch 'master' of github.com:owncloud/core into vcategories_db
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/files.js7
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' );
+ }
}
}
});