summaryrefslogtreecommitdiff
path: root/db-updater.php
diff options
context:
space:
mode:
Diffstat (limited to 'db-updater.php')
-rw-r--r--db-updater.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/db-updater.php b/db-updater.php
index e6b3db06a..d1212d0d6 100644
--- a/db-updater.php
+++ b/db-updater.php
@@ -39,10 +39,12 @@ function confirmOP() {
}
</script>
-<div class="floatingLogo"><img src="images/logo_wide.png"></div>
+<div class="floatingLogo"><img src="images/logo_small.png"></div>
<h1><?php echo __("Database Updater") ?></h1>
+<div class="content">
+
<?php
function getline($fp, $delim) {
$result = "";
@@ -155,8 +157,8 @@ function confirmOP() {
}
}
- print "<p>".T_sprintf("Finished. Performed <b>%d</b> update(s) up to schema
- version <b>%d</b>.", $num_updates, $version)."</p>";
+ print "<p>".vsprintf(ngettext("Finished. Performed <b>%d</b> update up to schema version <b>%d</b>.",
+ "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>.", $num_updates), $num_updates, $version)."</p>";
print "<form method=\"GET\" action=\"backend.php\">
<input type=\"hidden\" name=\"op\" value=\"logout\">
@@ -181,6 +183,8 @@ function confirmOP() {
?>
+</div>
+
</body>
</html>