~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to phabricator/src/applications/phame/storage/PhamePost.php

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2015-06-13 10:52:10 UTC
  • mfrom: (0.30.1) (0.29.1) (0.17.4) (2.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20150613105210-5uirr7tvnk0n6e6y
Tags: 0~git20150613-1
* New snapshot release (closes: #787805)
* fixed typo in logrotate script (closes: #787645)

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
 
168
168
    if ($current == 'facebook' ||
169
169
        PhabricatorFacebookAuthProvider::getFacebookApplicationID()) {
170
 
      $options['facebook'] = 'Facebook';
 
170
      $options['facebook'] = pht('Facebook');
171
171
    }
172
172
    if ($current == 'disqus' ||
173
173
        PhabricatorEnv::getEnvConfig('disqus.shortname')) {
174
 
      $options['disqus'] = 'Disqus';
 
174
      $options['disqus'] = pht('Disqus');
175
175
    }
176
 
    $options['none'] = 'None';
 
176
    $options['none'] = pht('None');
177
177
 
178
178
    return $options;
179
179
  }