summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 17:26:40 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 17:26:40 +0000
commita04a6a8a55bf0105c4329a55cc600e2111be93eb (patch)
tree1cfee24931f3a4ed9bca79a01993e4e6b4023305 /modules
parent2bced6879f9d3a5430311be2706b0517cbc02fb2 (diff)
downloadbrdo-a04a6a8a55bf0105c4329a55cc600e2111be93eb.tar.gz
brdo-a04a6a8a55bf0105c4329a55cc600e2111be93eb.tar.bz2
#677520 by Magnity: Fixed Minor UI text error in Dashboard module.
Diffstat (limited to 'modules')
-rw-r--r--modules/dashboard/dashboard.module3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/dashboard/dashboard.module b/modules/dashboard/dashboard.module
index 6591f0213..c251b5c69 100644
--- a/modules/dashboard/dashboard.module
+++ b/modules/dashboard/dashboard.module
@@ -476,11 +476,10 @@ function theme_dashboard_disabled_block($variables) {
*/
function _dashboard_get_default_string($key) {
$defaults = array(
- 'dashboard_empty_region_text_inactive' => 'This dashboard region is empty, click customize to add blocks to it.',
+ 'dashboard_empty_region_text_inactive' => 'This dashboard region is empty. Click <em>Customize</em> to add blocks to it.',
'dashboard_empty_block_text' => '(empty)',
'dashboard_empty_region_text_active' => 'DRAG HERE',
);
return t(variable_get($key, $defaults[$key]));
-
}