From ca85a56f1b4db802a72b4def5b20ba9dafb5e0e2 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 18 Sep 2001 18:39:15 +0000 Subject: - Fixed 2 typos in the user module. Thanks Axel and Remco. - Applied (modified versions of) Alexander's patches on the development branch. --- modules/cloud.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/cloud.module') diff --git a/modules/cloud.module b/modules/cloud.module index 75e9fb63e..381319e1a 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -122,10 +122,10 @@ function cloud_list($limit = 10) { if ($hour != floor((time() - $site->timestamp) / 3600)) { $hour = floor((time() - $site->timestamp) / 3600); if ($hour < 12) { - $output .= "

Updated ". format_plural($hour, "hour", "hours") ." ago:"; + $output .= "

". strtr(t("Updated %a ago:"), array("%a" => format_plural($hour, "hour", "hours"))); } else if ($list) { - $output .= "

Updated ". format_plural($hour, "+ hour", "+ hours") ." ago:"; + $output .= "

". strtr(t("Updated more than %a ago:"), array("%a" => format_plural($hour, "hour", "hours"))); $list = 0; } } -- cgit v1.2.3