aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/setup.js
diff options
context:
space:
mode:
authorringmaster <epithet@gmail.com>2013-10-04 11:09:59 -0400
committerringmaster <epithet@gmail.com>2013-10-04 11:09:59 -0400
commit85f63d4f777bf8a170333101fe9e28aba5c9319b (patch)
tree829868654d340c4f1a030a6b5b0dae081aad1147 /core/js/setup.js
parent2cdf54b77d2d9cc022e70012774f6979036d6deb (diff)
downloadnextcloud-server-85f63d4f777bf8a170333101fe9e28aba5c9319b.tar.gz
nextcloud-server-85f63d4f777bf8a170333101fe9e28aba5c9319b.zip
Allow "Finishing..." button on setup page to be translated.
Fixes #5130.
Diffstat (limited to 'core/js/setup.js')
-rw-r--r--core/js/setup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/setup.js b/core/js/setup.js
index c0df1ed96b0..62f313fc501 100644
--- a/core/js/setup.js
+++ b/core/js/setup.js
@@ -54,7 +54,7 @@ $(document).ready(function() {
var post = $(this).serializeArray();
// Disable inputs
- $(':submit', this).attr('disabled','disabled').val('Finishing …');
+ $(':submit', this).attr('disabled','disabled').val($(':submit', this).data('finishing'));
$('input', this).addClass('ui-state-disabled').attr('disabled','disabled');
$('#selectDbType').buttonset('disable');