summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-18 14:33:44 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-18 14:33:44 +0000
commit8d291f72be48b747c4595c7bf0435ef8c50ea7b8 (patch)
tree5d9f9d2abbcce9e11c59fff09c14d8fe99d58f2c /modules/openid
parent0b3113af44049170fb8ab9271e99b78199141749 (diff)
downloadbrdo-8d291f72be48b747c4595c7bf0435ef8c50ea7b8.tar.gz
brdo-8d291f72be48b747c4595c7bf0435ef8c50ea7b8.tar.bz2
#184461 by bradlis7 and keith.smith: 'fix' OpenID help text to use American English spelling (as observed to be used in Drupal elsewhere)
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
index 30043a9bf..056429916 100644
--- a/modules/openid/openid.module
+++ b/modules/openid/openid.module
@@ -50,7 +50,7 @@ function openid_help($path, $arg) {
case 'admin/help#openid':
$output = '<p>'. t('OpenID is a secure method for logging into many websites with a single username and password. It does not require special software, and it does not share passwords with any site to which it is associated; including your site.') .'</p>';
- $output .= '<p>'. t('Users can create accounts using their OpenID, assign one or more OpenIDs to an existing account, and log in using an OpenID. This lowers the barrier to registration, which is good for the site, and offers convenience and security to the users. OpenID is not a trust system, so email verification is still necessary. The benefit stems from the fact that users can have a single password that they can use on many websites. This means they can easily update their single password from a centralised location, rather than having to change dozens of passwords individually.') .'</p>';
+ $output .= '<p>'. t('Users can create accounts using their OpenID, assign one or more OpenIDs to an existing account, and log in using an OpenID. This lowers the barrier to registration, which is good for the site, and offers convenience and security to the users. OpenID is not a trust system, so email verification is still necessary. The benefit stems from the fact that users can have a single password that they can use on many websites. This means they can easily update their single password from a centralized location, rather than having to change dozens of passwords individually.') .'</p>';
$output .= '<p>'. t('The basic concept is as follows: A user has an account on an OpenID server. This account provides them with a unique URL (such as myusername.openidprovider.com). When the user comes to your site, they are presented with the option of entering this URL. Your site then communicates with the OpenID server, asking it to verify the identity of the user. If the user is logged into their OpenID server, the server communicates back to your site, verifying the user. If they are not logged in, the OpenID server will ask the user for their password. At no point does your site record, or need to record the user\'s password.') .'</p>';
$output .= '<p>'. t('More information on OpenID is available at <a href="@openid-net">OpenID.net</a>.', array('@openid-net' => url('http://openid.net'))) .'</p>';
return $output;