--- scheduler.module 2013-05-09 08:35:22.000000000 +0100 +++ scheduler.module 2013-05-13 08:15:25.000000000 +0100 @@ -108,7 +108,7 @@ function scheduler_help($section) { . "execute any cron tasks defined by Drupal core or any other modules.") . '

' . '

' . t("Scheduler's cron is at /scheduler/cron and a sample crontab entry to run scheduler every minute might look like:") . '

' . '* * * * * /usr/bin/wget -O - -q "http://example.com/scheduler/cron"' - . '

or

' + . '

' . t('or') . '

' . '* * * * * curl "http://example.com/scheduler/cron" > /dev/null 2>&1'; break; case 'admin/modules#description': @@ -191,7 +191,7 @@ function scheduler_form_alter(&$form, $f $form['scheduler'] = array( '#type' => 'fieldset', - '#title' => 'Scheduler settings', + '#title' => t('Scheduler settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#weight' => 35, @@ -200,7 +200,7 @@ function scheduler_form_alter(&$form, $f $form['scheduler']['publish'] = array( '#type' => 'fieldset', - '#title' => 'Publishing settings', + '#title' => t('Publishing settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#weight' => 1, @@ -233,7 +233,7 @@ function scheduler_form_alter(&$form, $f $form['scheduler']['unpublish'] = array( '#type' => 'fieldset', - '#title' => 'Unpublishing settings', + '#title' => t('Unpublishing settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#weight' => 2,