Skip to content
Snippets Groups Projects
Commit 485bb100 authored by Victor Dubiniuk's avatar Victor Dubiniuk
Browse files

Merge pull request #5131 from owncloud/fix-5130

Allow "Finishing..." button on setup page to be translated.
parents e0fb794a 85f63d4f
No related branches found
No related tags found
No related merge requests found
......@@ -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');
......
......@@ -172,5 +172,5 @@
<?php endif; ?>
</fieldset>
<div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" /></div>
<div class="buttons"><input type="submit" class="primary" value="<?php p($l->t( 'Finish setup' )); ?>" data-finishing="<?php p($l->t( 'Finishing …' )); ?>" /></div>
</form>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment