diff --git a/classes/handler/public.php b/classes/handler/public.php
index 662e0b72f..2d3ce43e1 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -1049,23 +1049,38 @@ class Handler_Public extends Handler {
exit;
}
- ?>
+ ?>
+
@@ -1080,28 +1095,29 @@ class Handler_Public extends Handler {
if ($op == "performupdate") {
if ($updater->isUpdateRequired()) {
- print "
Performing updates
";
+ print "
" . __("Performing updates") . "
";
- print "
Updating to schema version " . SCHEMA_VERSION . "
";
+ print "
" . T_sprintf("Updating to schema version %d", SCHEMA_VERSION) . "
";
print "
";
for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
- print "- Performing update up to version $i...";
+ print "
- " . T_sprintf("Performing update up to version %d...", $i);
$result = $updater->performUpdateTo($i, true);
if (!$result) {
- print "FAILED!
";
+ print "
".__("FAILED!")."";
print_warning("One of the updates failed. Either retry the process or perform updates manually.");
- print "
";
return;
} else {
- print "
OK!";
+ print "
".__("OK!")."";
}
}
@@ -1109,25 +1125,21 @@ class Handler_Public extends Handler {
print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
- print "
";
-
- print "
";
+ print "
";
} else {
- print "
Your database is up to date.
";
-
- print "
";
+ print_notice("Tiny Tiny RSS database is up to date.");
- print "
";
}
} else {
if ($updater->isUpdateRequired()) {
- print "
Database update required
";
+ print "
" . __("Database update required") . "
";
print_notice("
".
sprintf("Your Tiny Tiny RSS database needs update to the latest version: %d to %d.",
@@ -1138,19 +1150,16 @@ class Handler_Public extends Handler {
print "
";
} else {
print_notice("Tiny Tiny RSS database is up to date.");
- print "
";
-
- print "
";
-
}
}
?>