summaryrefslogtreecommitdiff
path: root/modules/block
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-21 18:59:02 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-21 18:59:02 +0000
commitb94f2716cfc4d1e91304a5fbf7783486932fa8c1 (patch)
treeeec1247c3005598869732c7db68c0db316c66035 /modules/block
parent7c31bcdeac94c254130845c3959753b68c36ea1e (diff)
downloadbrdo-b94f2716cfc4d1e91304a5fbf7783486932fa8c1.tar.gz
brdo-b94f2716cfc4d1e91304a5fbf7783486932fa8c1.tar.bz2
#184867 by deekayen, catch and keith.smith: fix some spelling errors in our source code and messages printed
Diffstat (limited to 'modules/block')
-rw-r--r--modules/block/block.install2
-rw-r--r--modules/block/block.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/block/block.install b/modules/block/block.install
index 8b4cb65b1..a5274f068 100644
--- a/modules/block/block.install
+++ b/modules/block/block.install
@@ -79,7 +79,7 @@ function block_schema() {
'pages' => array(
'type' => 'text',
'not null' => TRUE,
- 'description' => t('Contents of the "Pages" block; contain either a list of paths on which to include/exlclude the block or PHP code, depending on "visibility" setting.'),
+ 'description' => t('Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.'),
),
'title' => array(
'type' => 'varchar',
diff --git a/modules/block/block.module b/modules/block/block.module
index 1b4557b93..131d70e94 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -91,7 +91,7 @@ function block_help($path, $arg) {
return t('<p>Blocks are boxes of content that may be rendered into certain regions of your web pages, for example, into sidebars. They are usually generated automatically by modules, but administrators can create blocks manually.</p>
<p>Only enabled blocks are shown. You can position blocks by specifying which area of the page they should appear in (e.g., a sidebar). Highlighted labels on this page show the regions into which blocks can be rendered. You can specify where within a region a block will appear by adjusting its 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.</p>
-<p>You can configure the behaviour of each block (for example, specifying on which pages and for what users it will appear) by clicking the "configure" link for each block.</p>', array('@throttle' => url('admin/settings/throttle')));
+<p>You can configure the behavior of each block (for example, specifying on which pages and for what users it will appear) by clicking the "configure" link for each block.</p>', array('@throttle' => url('admin/settings/throttle')));
case 'admin/build/block/add':
return '<p>'. t('Here you can create a new block. Once you have created this block you must make it active and give it a place on the page using <a href="@overview">blocks</a>. The description is used in the "block" column on the <a href="@overview">blocks</a> page.', array('@overview' => url('admin/build/block'))) .'</p>';
}