summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 21:40:05 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 21:40:05 +0000
commit1d4fc1b1af5bee56408692c3600d67ca8cdc1026 (patch)
tree28e31a472f3be0ede1389fb494c512a8cb440409 /modules
parent297957c2b0d12ca9f3cb9a8d92aff619531405af (diff)
downloadbrdo-1d4fc1b1af5bee56408692c3600d67ca8cdc1026.tar.gz
brdo-1d4fc1b1af5bee56408692c3600d67ca8cdc1026.tar.bz2
#202473 by keith.smith: pre-RC1 spell checking on hopefully final text
Diffstat (limited to 'modules')
-rw-r--r--modules/block/block.module2
-rw-r--r--modules/comment/comment.module2
-rw-r--r--modules/locale/locale.module2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/block/block.module b/modules/block/block.module
index b1234363e..647f12a4c 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -130,7 +130,7 @@ function block_menu() {
'weight' => -10,
);
$items['admin/build/block/list/js'] = array(
- 'title' => 'Javascript List Form',
+ 'title' => 'JavaScript List Form',
'page callback' => 'block_admin_display_js',
'type' => MENU_CALLBACK,
'file' => 'block.admin.inc',
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 596b953fd..2d97e0ed2 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -131,7 +131,7 @@ function comment_help($path, $arg) {
$output .= '<p>'. t('For more information, see the online handbook entry for <a href="@comment">Comment module</a>.', array('@comment' => 'http://drupal.org/handbook/modules/comment/')) .'</p>';
return $output;
case 'admin/content/comment':
- return '<p>'. t("Below is a list of the latest comments posted to your site. Click on a subject to see the comment, the author's name to edit the author's user information , 'edit' to modify the text, and 'delete' to remove their submission.") .'</p>';
+ return '<p>'. t("Below is a list of the latest comments posted to your site. Click on a subject to see the comment, the author's name to edit the author's user information, 'edit' to modify the text, and 'delete' to remove their submission.") .'</p>';
case 'admin/content/comment/approval':
return '<p>'. t("Below is a list of the comments posted to your site that need approval. To approve a comment, click on 'edit' and then change its 'moderation status' to Approved. Click on a subject to see the comment, the author's name to edit the author's user information, 'edit' to modify the text, and 'delete' to remove their submission.") .'</p>';
}
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index c48a87cad..251fc0876 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -33,7 +33,7 @@ function locale_help($path, $arg) {
switch ($path) {
case 'admin/help#locale':
$output = '<p>'. t('The locale module allows your Drupal site to be presented in languages other than the default English, a defining feature of multi-lingual websites. The locale module works by examining text as it is about to be displayed: when a translation of the text is available in the language to be displayed, the translation is displayed rather than the original text. When a translation is unavailable, the original text is displayed, and then stored for later review by a translator.') .'</p>';
- $output .= '<p>'. t('Beyond translation of the Drupal interface, the locale module provides a feature set tailored to the needs of a multi-lingual site. Language negotiation allows your site to automatically change language based on the domain or path used for each request. Users may (optionally) select their preferred language on their <em>My account</em> page, and your site can be configured to honor a web browser\'s preferred language settings. Your site content can be created in (and translated to) any enabled language, and each post may have a language-appropriate alias for each of its translations. The locale module works in concert with the <a href="@contenthelp">content translation module</a> to manage translated content.', array('@contenthelp' => url('admin/help/translation'))) .'</p>';
+ $output .= '<p>'. t('Beyond translation of the Drupal interface, the locale module provides a feature set tailored to the needs of a multi-lingual site. Language negotiation allows your site to automatically change language based on the domain or path used for each request. Users may (optionally) select their preferred language on their <em>My account</em> page, and your site can be configured to honor a web browser\'s preferred language settings. Your site content can be created in (and translated to) any enabled language, and each post may have a language-appropriate alias for each of its translations. The locale module works in concert with the <a href="@content-help">content translation module</a> to manage translated content.', array('@content-help' => url('admin/help/translation'))) .'</p>';
$output .= '<p>'. t('Translations may be provided by:') .'</p>';
$output .= '<ul><li>'. t("translating the original text via the locale module's integrated web interface, or") .'</li>';
$output .= '<li>'. t('importing files from a set of existing translations, known as a translation package. A translation package enables the display of a specific version of Drupal in a specific language, and contain files in the Gettext Portable Object (<em>.po</em>) format. Although not all languages are available for every version of Drupal, translation packages for many languages are available for download from the <a href="@translations">Drupal translation page</a>.', array('@translations' => 'http://drupal.org/project/translations')) .'</li></ul>';