]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/YammerImport/lib/yammerauthverifyform.php
More info for a proper, fancy-url lighttpd setup
[quix0rs-gnu-social.git] / plugins / YammerImport / lib / yammerauthverifyform.php
index e119be96f72f53069959c6af818002417fc6722e..bb82eba6ae52f361bbe8237b9c4579a64a495672 100644 (file)
@@ -53,6 +53,7 @@ class YammerAuthVerifyForm extends Form
      */
     function formLegend()
     {
+        // TRANS: Form legend.
         $this->out->element('legend', null, _m('Connect to Yammer'));
     }
 
@@ -69,6 +70,7 @@ class YammerAuthVerifyForm extends Form
         $this->out->elementStart('fieldset');
 
         $this->out->elementStart('p');
+        // TRANS: Form instructions.
         $this->out->text(_m('Follow this link to confirm authorization at Yammer; you will be prompted to log in if necessary:'));
         $this->out->elementEnd('p');
 
@@ -84,18 +86,24 @@ class YammerAuthVerifyForm extends Form
         $this->out->element('a',
             array('href' => $this->runner->getAuthUrl(),
                   'target' => '_blank'),
+            // TRANS: Link description for a link in an external Yammer system.
             _m('Open Yammer authentication window'));
         $this->out->elementEnd('p');
-        
+
+        // TRANS: Form instructions.
         $this->out->element('p', array(), _m('Copy the verification code you are given below:'));
 
         $this->out->elementStart('ul', array('class' => 'form_data'));
         $this->out->elementStart('li');
+        // TRANS: Field label.
         $this->out->input('verify_token', _m('Verification code:'));
         $this->out->elementEnd('li');
         $this->out->elementEnd('ul');
-        
-        $this->out->submit('submit', _m('Continue'), 'submit', null, _m('Save code and begin import'));
+
+        // TRANS: Button text for saving  Yammer authorisation data and starting Yammer import.
+        $this->out->submit('submit', _m('BUTTON','Continue'),
+                           // TRANS: Button title for saving  Yammer authorisation data and starting Yammer import.
+                           'submit', null, _m('Save the verification code and begin import.'));
         $this->out->elementEnd('fieldset');
     }