diff options
author | friendica <info@friendica.com> | 2012-04-10 19:33:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-10 19:33:32 -0700 |
commit | 640f258f187674e037655ee461ea483c7c92ef23 (patch) | |
tree | a070d276108b1e4d1fc31acd5102de9a872c0b78 | |
parent | 19b636e7e8b4abdf7a53421f90db42419044879e (diff) | |
download | volse-hubzilla-640f258f187674e037655ee461ea483c7c92ef23.tar.gz volse-hubzilla-640f258f187674e037655ee461ea483c7c92ef23.tar.bz2 volse-hubzilla-640f258f187674e037655ee461ea483c7c92ef23.zip |
cleanup photo menus
-rw-r--r-- | include/Contact.php | 12 | ||||
-rw-r--r-- | include/conversation.php | 10 |
2 files changed, 11 insertions, 11 deletions
diff --git a/include/Contact.php b/include/Contact.php index d9949b1ef..d8d94b190 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -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"; diff --git a/include/conversation.php b/include/conversation.php index df92a40ed..5396a125d 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -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, ); |