summaryrefslogtreecommitdiff
path: root/modules/block.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-03-06 15:06:19 +0000
committerDries Buytaert <dries@buytaert.net>2005-03-06 15:06:19 +0000
commit9a47bc4e7e40cf8d57eb64acc135673cf8e423b0 (patch)
tree670a379a2a6ca0688a9ba3adee77f7a4e1c71c5d /modules/block.module
parent42a085c8add0db708d848cfc79c7aa8fe2e0587a (diff)
downloadbrdo-9a47bc4e7e40cf8d57eb64acc135673cf8e423b0.tar.gz
brdo-9a47bc4e7e40cf8d57eb64acc135673cf8e423b0.tar.bz2
- Renamed some more 'region's to 'sidebar's
Diffstat (limited to 'modules/block.module')
-rw-r--r--modules/block.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/block.module b/modules/block.module
index 2f7a97419..38f23d5a3 100644
--- a/modules/block.module
+++ b/modules/block.module
@@ -32,7 +32,7 @@ function block_help($section) {
case 'admin/block':
return t("
<p>Blocks are the boxes in the left and right side bars of the web site. They are made available by modules or created manually.</p>
-<p>Only enabled blocks are shown. You can position the blocks by deciding which side of the page they will show up on (region) and in which order they appear (weight).</p>
+<p>Only enabled blocks are shown. You can position the blocks by deciding which side of the page they will show up on (sidebar) and in which order they appear (weight).</p>
<p>If you want certain blocks to disable themselves temporarily during high server loads, check the 'Throttle' box. You can configure the auto-throttle on the <a href=\"%throttle\">throttle configuration page</a> after having enabled the throttle module.
", array('%throttle' => url('admin/settings/throttle')));
case 'admin/block/add':
@@ -183,7 +183,7 @@ function _block_rehash($order_by = array('weight')) {
function block_admin_display() {
$blocks = _block_rehash();
- $header = array(t('Block'), t('Enabled'), t('Weight'), t('Region'));
+ $header = array(t('Block'), t('Enabled'), t('Weight'), t('Sidebar'));
if (module_exist('throttle')) {
$header[] = t('Throttle');
}