summaryrefslogtreecommitdiff
path: root/modules/cloud.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/cloud.module')
-rw-r--r--modules/cloud.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/cloud.module b/modules/cloud.module
index 40b6c9b5d..2e2451311 100644
--- a/modules/cloud.module
+++ b/modules/cloud.module
@@ -36,7 +36,7 @@ function cloud_perm() {
function cloud_link($type) {
if ($type == "page" && user_access("access site cloud")) {
- $links[] = "<a href=\"module.php?mod=cloud\">". t("site cloud") ."</a>";
+ $links[] = "<a href=\"module.php?mod=cloud\" title=\"". t("Monitor other sites in the cloud.") ."\">". t("site cloud") ."</a>";
}
if ($type == "admin" && user_access("administer site cloud")) {
@@ -160,7 +160,7 @@ function cloud_page() {
function cloud_block() {
$block[0]["subject"] = t("Site cloud");
- $block[0]["content"] = cloud_list(20) . "<br /><div align=\"right\"><a href=\"module.php?mod=cloud\">". t("more") ."</a></div>";
+ $block[0]["content"] = cloud_list(20) . "<br /><div align=\"right\"><a href=\"module.php?mod=cloud\" title=\"". t("Monitor other sites in the cloud.") ."\">". t("more") ."</a></div>";
$block[0]["info"] = t("Site cloud");
return $block;
}