]> git.mxchange.org Git - friendica.git/commitdiff
cleanup photo menus
authorfriendica <info@friendica.com>
Wed, 11 Apr 2012 02:33:32 +0000 (19:33 -0700)
committerfriendica <info@friendica.com>
Wed, 11 Apr 2012 02:33:32 +0000 (19:33 -0700)
include/Contact.php
include/conversation.php

index d9949b1ef8db45cb3167fb61e84b9d3383d39a64..d8d94b1908faa8d1bdf1f4efb9a7ded3b9485aaa 100644 (file)
@@ -134,11 +134,11 @@ function contact_photo_menu($contact) {
        $posts_link = $a->get_baseurl() . '/network/?cid=' . $contact['id'];
 
        $menu = Array(
-               t("View status") => $status_link,
-               t("View profile") => $profile_link,
-               t("View photos") => $photos_link,               
-               t("View recent") => $posts_link, 
-               t("Edit contact") => $contact_url,
+               t("View Status") => $status_link,
+               t("View Profile") => $profile_link,
+               t("View Photos") => $photos_link,               
+               t("Network Posts") => $posts_link, 
+               t("Edit Contact") => $contact_url,
                t("Send PM") => $pm_url,
        );
        
@@ -150,7 +150,7 @@ function contact_photo_menu($contact) {
        $o = "";
        foreach($menu as $k=>$v){
                if ($v!="") {
-                       if(($k !== t("View recent")) && ($k !== t("Send PM")))
+                       if(($k !== t("Network Posts")) && ($k !== t("Send PM")))
                                $o .= "<li><a target=\"redir\" href=\"$v\">$k</a></li>\n";
                        else
                                $o .= "<li><a href=\"$v\">$k</a></li>\n";
index df92a40ed000addbe70678ddae0200c1eff3932a..5396a125d7966ea10709e81238509919db00d08b 100644 (file)
@@ -810,11 +810,11 @@ function item_photo_menu($item){
        }
 
        $menu = Array(
-               t("View status") => $status_link,
-               t("View profile") => $profile_link,
-               t("View photos") => $photos_link,
-               t("View recent") => $posts_link, 
-               t("Edit contact") => $contact_url,
+               t("View Status") => $status_link,
+               t("View Profile") => $profile_link,
+               t("View Photos") => $photos_link,
+               t("Network Posts") => $posts_link, 
+               t("Edit Contact") => $contact_url,
                t("Send PM") => $pm_url,
        );