Revision 14ffc5f1
Added by k-paulius over 9 years ago
src/usr/local/www/pkg_mgr_install.php | ||
---|---|---|
543 | 543 |
function show_info() { |
544 | 544 |
$('#final').addClass("alert-info"); |
545 | 545 |
if ("<?=$_POST['mode']?>" != "reinstallall") { |
546 |
$('#final').html("<?=$pkg_wait_txt?>" + "<br />" +
|
|
547 |
"<?=gettext("This make take several minutes!")?>"); |
|
546 |
$('#final').html("<p><?=$pkg_wait_txt?>" + "</p><p>" +
|
|
547 |
"<?=gettext("This make take several minutes!")?>" + "</p>");
|
|
548 | 548 |
} else { |
549 |
$('#final').html("<?=gettext('Please wait while the reinstallation of all packages completes.')?>" + "<br />" +
|
|
550 |
"<?=gettext("This make take several minutes!")?>"); |
|
549 |
$('#final').html("<p><?=gettext('Please wait while the reinstallation of all packages completes.')?>" + "</p><p>" +
|
|
550 |
"<?=gettext("This make take several minutes!")?>" + "</p>");
|
|
551 | 551 |
} |
552 | 552 |
$('#final').show(); |
553 | 553 |
} |
Also available in: Unified diff
Use p instead of br for better styling support.