]> git.mxchange.org Git - friendica.git/blobdiff - include/contact_selectors.php
Merge pull request #2148 from annando/issue-1871
[friendica.git] / include / contact_selectors.php
index 4b3ca987a6675276917b22c6d7919897f2c8d4f3..f104866232d4326f36cc3669636986682770b67f 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-
+require_once('include/diaspora.php');
 
 function contact_profile_assign($current,$foreign_net) {
 
@@ -70,7 +70,7 @@ function contact_poll_interval($current, $disabled = false) {
 }
 
 
-function network_to_name($s) {
+function network_to_name($s, $profile = "") {
 
        $nets = array(
                NETWORK_DFRN     => t('Friendica'),
@@ -83,6 +83,13 @@ function network_to_name($s) {
                NETWORK_LINKEDIN => t('LinkedIn'),
                NETWORK_XMPP     => t('XMPP/IM'),
                NETWORK_MYSPACE  => t('MySpace'),
+               NETWORK_MAIL2    => t('Email'),
+               NETWORK_GPLUS    => t('Google+'),
+               NETWORK_PUMPIO   => t('pump.io'),
+               NETWORK_TWITTER  => t('Twitter'),
+               NETWORK_DIASPORA2 => t('Diaspora Connector'),
+               NETWORK_STATUSNET => t('GNU Social'),
+               NETWORK_APPNET => t('App.net')
        );
 
        call_hooks('network_to_name', $nets);
@@ -90,6 +97,10 @@ function network_to_name($s) {
        $search  = array_keys($nets);
        $replace = array_values($nets);
 
-       return str_replace($search,$replace,$s);
+       $networkname = str_replace($search,$replace,$s);
+
+       if (($s == NETWORK_DIASPORA) AND ($profile != "") AND diaspora_is_redmatrix($profile))
+               $networkname = t("Redmatrix");
 
+       return $networkname;
 }