Changeset 20373 for extensions


Ignore:
Timestamp:
Jan 25, 2013, 3:50:04 PM (11 years ago)
Author:
mistic100
Message:

Complete help for Yahoo

Location:
extensions/oAuth
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/oAuth/admin/template/providers.tpl

    r20371 r20373  
    4747<form method="post" action="" class="properties">
    4848<fieldset id="commentsConf">
    49  
     49
    5050{foreach from=$PROVIDERS item=provider key=p}
    5151  <div data-p="{$p}" class="provider {$p} {if $CONFIG[$p].enabled}enabled{else}disabled{/if}">
     
    100100        </li>
    101101      {/if}
    102 
     102     
    103103      {if $p=='Live'}
    104104        <li>{'Put your website domain in the %s fields. It should match with the current hostname: <em>%s</em>'|@translate|sprintf:'<b>Redirect Domain</b>':$SERVERNAME}</li>
     
    108108      {elseif $p=='LinkedIn'}
    109109        <li>{'Put your website domain in the %s fields. It should match with the current hostname: <em>%s</em>'|@translate|sprintf:'<b>Website URL</b>':$SERVERNAME}</li>
    110         <li>{'Set the <b>Application Type</b> to <em>Web Application</em>'|@translate}</li> 
     110        <li>{'Set the <b>Application Type</b> to <em>Web Application</em>'|@translate}</li>
    111111      {elseif $p=='Yahoo'}
    112112        <li>{'Put your website domain in the %s fields. It should match with the current hostname: <em>%s</em>'|@translate|sprintf:'<b>Application URL</b>, <b>Application Domain</b>':$SERVERNAME}</li>
    113         <li>{'Set the <b>Kind of Application</b> to <em>Web-based</em>'|@translate}</li>
    114         <li>{'Set the <b>Access Scopes</b> to <em>This app will only access public...</em>'|@translate}</li>
     113        <li>{'Set the <b>Kind of Application</b> to <em>Web-based</em>'|@translate}</li>
     114        <li>{'Set the <b>Access Scopes</b> to <em>This app will only access public...</em>'|@translate}</li>
     115        <li>{'Once the application is registered update the permissions : set <b>Contacts</b> as <em>Read</em> and <b>Social Directory</b> as <em>Read Public</em>'|@translate}</li>
    115116      {elseif $p=='Twitter'}
    116117        <li>{'Put your website domain in the %s fields. It should match with the current hostname: <em>%s</em>'|@translate|sprintf:'<b>Application Website</b>, <b>Application Callback URL</b>':$SERVERNAME}</li>
     
    122123      {/if}
    123124     
    124         <li>{'Once you have registered, copy and past the created application credentials into this setup page'|@translate}</li> 
     125        <li>{'Once you have registered, copy and past the created application credentials into this setup page'|@translate}</li>
    125126      </ol>
    126127    {else}
  • extensions/oAuth/auth.php

    r20368 r20373  
    9999      $template->assign('ERROR', l10n('User not found')); break;
    100100    default:
    101       $template->assign('ERROR', sprintf(l10n('An error occured, please contact the gallery owner. <i>Error code : %s</i>'), $e->getCode()));
     101      $template->assign('ERROR', sprintf(l10n('An error occured, please contact the gallery owner. <i>Error code : %s</i>'), '<span title="'.$e->getMessage().'">'.$e->getCode().'</span>'));
    102102  }
    103103}
  • extensions/oAuth/language/en_UK/help.lang.php

    r20371 r20373  
    1414$lang['Once you have registered, copy and past the created application credentials into this setup page'] = 'Once you have registered, copy and past the created application credentials into this setup page';
    1515$lang['No registration required for OpenID based providers'] = 'No registration required for OpenID based providers';
     16$lang['Once the application is registered update the permissions : set <b>Contacts</b> as <em>Read</em> and <b>Social Directory</b> as <em>Read Public</em>'] = 'Once the application is registered update the permissions : set <b>Contacts</b> as <em>Read</em> and <b>Social Directory</b> as <em>Read Public</em>';
    1617
    1718?>
  • extensions/oAuth/language/fr_FR/help.lang.php

    r20371 r20373  
    1414$lang['Once you have registered, copy and past the created application credentials into this setup page'] = 'Quand votre application est enregistrée, copiez-collez les clefs d\'authentification sur cette page';
    1515$lang['No registration required for OpenID based providers'] = 'Pas d\'inscription nécessaire pour les authentifications type OpenID';
     16$lang['Once the application is registered update the permissions : set <b>Contacts</b> as <em>Read</em> and <b>Social Directory</b> as <em>Read Public</em>'] = 'Quand l\'application est enregistrée, éditez les permissions : sélectionnez <em>Read</em> pour <b>Contacts</b> et <em>Read Public</em> pour <b>Social Directory</b>';
    1617
    1718?>
Note: See TracChangeset for help on using the changeset viewer.