]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/finishopenidlogin.php
lcase tname
[quix0rs-gnu-social.git] / actions / finishopenidlogin.php
index 6eb45ec8e59bdf77bc874296a8d7a5f1493a7565..89f4ef0bd2305f3e1a4e66f40ccce693c1a03fe8 100644 (file)
@@ -53,16 +53,12 @@ class FinishopenidloginAction extends Action {
                } else {
                        global $config;
                        common_element('div', 'instructions',
-                                                  sprintf(_('This is the first time you\'ve logged into %s' .
-                                    ' so we must connect your OpenID to a local account. ' .
-                                    ' You can either create a new account, or connect with ' .
-                                    ' your existing account, if you have one.'
-                                    ), $config['site']['name']));
+                                                  sprintf(_('This is the first time you\'ve logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one.'), $config['site']['name']));
                }
        }
 
        function show_form($error=NULL, $username=NULL) {
-               common_show_header(_t('OpenID Account Setup'), NULL, $error,
+               common_show_header(_('OpenID Account Setup'), NULL, $error,
                                                   array($this, 'show_top'));
 
                common_element_start('form', array('method' => 'post',
@@ -89,8 +85,7 @@ class FinishopenidloginAction extends Action {
                common_element('h2', NULL,
                                           _('Connect existing account'));
                common_element('p', NULL,
-                                          _('If you already have an account, login with your username and password '.
-                                                 'to connect it to your OpenID.'));
+                                          _('If you already have an account, login with your username and password to connect it to your OpenID.'));
                common_input('nickname', _('Existing nickname'));
                common_password('password', _('Password'));
                common_submit('connect', _('Connect'));
@@ -167,7 +162,7 @@ class FinishopenidloginAction extends Action {
                if (!Validate::string($nickname, array('min_length' => 1,
                                                                                           'max_length' => 64,
                                                                                           'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) {
-                       $this->show_form(_('Nickname must have only letters and numbers and no spaces.'));
+                       $this->show_form(_('Nickname must have only lowercase letters and numbers and no spaces.'));
                        return;
                }