From 71ee49de3eba0639d13a5861803f1cf031f376df Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Sat, 9 Jan 2010 23:03:22 +0000 Subject: #679890 follow-up by Bojhan, aspilicious, and agentrickard: Remove more extraneous 'Please' in the interface. --- modules/help/help.module | 4 ++-- modules/help/help.test | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/help') diff --git a/modules/help/help.module b/modules/help/help.module index 6129e66ee..bdb3796d5 100644 --- a/modules/help/help.module +++ b/modules/help/help.module @@ -38,14 +38,14 @@ function help_menu() { function help_help($path, $arg) { switch ($path) { case 'admin/help': - $output = '

' . t('Please follow these steps to set up and start using your website:') . '

'; + $output = '

' . t('Follow these steps to set up and start using your website:') . '

'; $output .= '
    '; $output .= '
  1. ' . t('Configure your website Once logged in, visit the administration section, where you can customize and configure all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/config'))) . '
  2. '; $output .= '
  3. ' . t('Enable additional functionality Next, visit the module list and enable features which suit your specific needs. You can find additional modules in the Drupal modules download section.', array('@modules' => url('admin/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '
  4. '; $output .= '
  5. ' . t('Customize your website design To change the "look and feel" of your website, visit the themes section. You may choose from one of the included themes or download additional themes from the Drupal themes download section.', array('@themes' => url('admin/appearance'), '@download_themes' => 'http://drupal.org/project/themes')) . '
  6. '; $output .= '
  7. ' . t('Start posting content Finally, you can add new content for your website.', array('@content' => url('node/add'))) . '
  8. '; $output .= '
'; - $output .= '

' . t('For more information, please refer to the specific topics listed in the next section, or the online Drupal handbooks. You may also post at the Drupal forum, or view the wide range of other support options available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '

'; + $output .= '

' . t('For more information, refer to the specific topics listed in the next section or to the online Drupal handbooks. You may also post at the Drupal forum or view the wide range of other support options available.', array('@help' => url('admin/help'), '@handbook' => 'http://drupal.org/handbooks', '@forum' => 'http://drupal.org/forum', '@support' => 'http://drupal.org/support')) . '

'; return $output; case 'admin/help#help': $output = ''; diff --git a/modules/help/help.test b/modules/help/help.test index 8e2fed968..e15bd15e7 100644 --- a/modules/help/help.test +++ b/modules/help/help.test @@ -44,7 +44,7 @@ class HelpTestCase extends DrupalWebTestCase { $this->assertRaw(drupal_get_path('module', 'help') . '/help.css', t('The help.css file is present in the HTML.')); // Verify that introductory help text exists, goes for 100% module coverage. - $this->assertRaw(t('For more information, please refer to the specific topics listed in the next section, or the online Drupal handbooks.', array('@drupal' => 'http://drupal.org/handbooks')), 'Help intro text correctly appears.'); + $this->assertRaw(t('For more information, refer to the specific topics listed in the next section or to the online Drupal handbooks.', array('@drupal' => 'http://drupal.org/handbooks')), 'Help intro text correctly appears.'); // Verify that help topics text appears. $this->assertRaw('

' . t('Help topics') . '

' . t('Help is available on the following items:') . '

', t('Help topics text correctly appears.')); -- cgit v1.2.3