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/openid/openid.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/openid/openid.module') diff --git a/modules/openid/openid.module b/modules/openid/openid.module index acf9b996a..69d7aae56 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -183,7 +183,7 @@ function openid_begin($claimed_id, $return_to = '', $form_values = array()) { $services = openid_discovery($claimed_id); if (count($services) == 0) { - form_set_error('openid_identifier', t('Sorry, that is not a valid OpenID. Please ensure you have spelled your ID correctly.')); + form_set_error('openid_identifier', t('Sorry, that is not a valid OpenID. Ensure you have spelled your ID correctly.')); return; } @@ -448,7 +448,7 @@ function openid_authentication($response) { $form_state['values']['response'] = $response; if (empty($response['openid.sreg.email']) && empty($response['openid.sreg.nickname'])) { - drupal_set_message(t('Please complete the registration by filling out the form below. If you already have an account, you can log in now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning'); + drupal_set_message(t('Complete the registration by filling out the form below. If you already have an account, you can log in now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning'); $success = FALSE; } else { @@ -457,7 +457,7 @@ function openid_authentication($response) { drupal_validate_form('user_register_form', $form, $form_state); $success = !form_get_errors(); if (!$success) { - drupal_set_message(t('Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Please complete the registration by filling out the form below. If you already have an account, you can log in now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning'); + drupal_set_message(t('Account registration using the information provided by your OpenID provider failed due to the reasons listed below. Complete the registration by filling out the form below. If you already have an account, you can log in now and add your OpenID under "My account".', array('@login' => url('user/login'))), 'warning'); // Append form validation errors below the above warning. $messages = drupal_get_messages('error'); foreach ($messages['error'] as $message) { -- cgit v1.2.3