diff options
-rw-r--r-- | modules/cloud.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 77817ba8b..2d42992f6 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -141,7 +141,7 @@ function cloud_list($limit = 10) { $hour = floor((time() - $site->timestamp) / 3600); if ($hour < 12) { if ($hour == 0) { - $output .= "<br />". t("Updated < 1 hours ago:"); + $output .= "<br />". t("Updated < 1 hours ago:"); } else { $output .= "<br />". t("Updated %a ago:", array("%a" => format_plural($hour, "hour", "hours"))); |