X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FSubMirror%2Flib%2Faddmirrorwizard.php;h=0f8ac266eed113ca87c20babcc9024089ab5813a;hb=6f427d7e43ef6cd2f52ea9b03f65c5f9e202931c;hp=920db0bc9c0319d5ce857a12fea7717fd75e49ad;hpb=31c1177970124cee31823cab3a11542c23b4126d;p=quix0rs-gnu-social.git diff --git a/plugins/SubMirror/lib/addmirrorwizard.php b/plugins/SubMirror/lib/addmirrorwizard.php index 920db0bc9c..0f8ac266ee 100644 --- a/plugins/SubMirror/lib/addmirrorwizard.php +++ b/plugins/SubMirror/lib/addmirrorwizard.php @@ -64,17 +64,10 @@ class AddMirrorWizard extends Widget // We could accept hostname & username combos here, or // webfingery combinations as for remote users. array( - 'id' => 'statusnet', - 'name' => _m('StatusNet'), + 'id' => 'gnusocial', + 'name' => _m('GNU social'), ), */ - // Accepts a Twitter username and pulls their user timeline as a - // public Atom feed. Requires a working alternate hub which, one - // hopes, is getting timely updates. - array( - 'id' => 'twitter', - 'name' => _m('Twitter'), - ), /* // WordPress was on our list some whiles ago, but not sure // what we can actually do here. Search on Wordpress.com hosted @@ -84,28 +77,9 @@ class AddMirrorWizard extends Widget 'name' => _m('WordPress'), ), */ - /* - // In theory, Facebook lets you pull public updates over RSS, - // but the URLs for your own update feed that I can find from - // 2009-era websites no longer seem to work and there's no - // good current documentation. May not still be available... - // Mirroring from an FB account is probably better done with - // the dedicated plugin. (As of March 2011) - array( - 'id' => 'facebook', - 'name' => _m('Facebook'), - ), - */ - /* - // LinkedIn doesn't currently seem to have public feeds - // for users or groups (March 2011) - array( - 'id' => 'linkedin', - 'name' => _m('LinkedIn'), - ), - */ array( 'id' => 'feed', + // TRANS: Name for possible feed provider. 'name' => _m('RSS or Atom feed'), ), ); @@ -116,6 +90,7 @@ class AddMirrorWizard extends Widget $out = $this->out; $out->elementStart('div', 'provider-list'); + // TRANS: Heading for feed mirroring selection form. $out->element('h2', null, _m('Select a feed provider')); $out->elementStart('table'); foreach ($providers as $provider) {