diff options
author | Friendika <info@friendika.com> | 2011-04-18 15:51:03 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-18 15:51:03 -0700 |
commit | b84f49df10ec83f0c078c9d55cd8ebd7a4742757 (patch) | |
tree | a9f89924ce3977324a9303212a3cc06adc2c44d2 /include/conversation.php | |
parent | 42613902edef3cbbc74c317b8de5e4e3b9f9e209 (diff) | |
parent | 1d8bd89fece18e861760eeed40ded146e01a0abb (diff) | |
download | volse-hubzilla-b84f49df10ec83f0c078c9d55cd8ebd7a4742757.tar.gz volse-hubzilla-b84f49df10ec83f0c078c9d55cd8ebd7a4742757.tar.bz2 volse-hubzilla-b84f49df10ec83f0c078c9d55cd8ebd7a4742757.zip |
Merge branch 'translateitems' of https://github.com/fabrixxm/friendika into fabrixxm-translateitems
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 52 |
1 files changed, 50 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index 4c858d818..3ec0706e9 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1,6 +1,51 @@ <?php /** + * Render actions localized + */ +function localize_item(&$item){ + + if ($item['verb']=="http://activitystrea.ms/schema/1.0/like" || + $item['verb']=="http://activitystrea.ms/schema/1.0/dislike"){ + + $r = q("SELECT * from `item`,`contact` WHERE + `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", + dbesc($item['parent-uri'])); + if(count($r)==0) return; + $obj=$r[0]; + + $author = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; + $objauthor = '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]'; + + $post_type = (($obj['resource-id']) ? t('photo') : t('status')); + $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]'; + + switch($item['verb']){ + case "http://activitystrea.ms/schema/1.0/like": + $bodyverb = t('%1$s likes %2$s\'s %3$s'); + break; + case "http://activitystrea.ms/schema/1.0/dislike": + $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s'); + break; + } + $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink); + + } + if ($item['verb']=='http://activitystrea.ms/schema/1.0/make-friend'){ + + $b = str_replace("[/url]","[/url]\n", $item['body']); + preg_match_all("|(\[url.*\[/url\])|", $b, $match); + + $item['body'] = $match[0][0]." " + .t('is now friends with') + ." ".$match[0][1]."\n\n\n" + .$match[0][2]; + + } + +} + +/** * "Render" a conversation or list of items for HTML display. * There are two major forms of display: * - Sequential or unthreaded ("New Item View" or search results) @@ -10,7 +55,6 @@ * that are based on unique features of the calling module. * */ - function conversation(&$a, $items, $mode, $update) { require_once('bbcode.php'); @@ -118,7 +162,8 @@ function conversation(&$a, $items, $mode, $update) { $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$delete' => t('Delete'))); - + // + localize_item($item); $drop = replace_macros($droptpl,array('$id' => $item['id'])); $lock = '<div class="wall-item-lock"></div>'; @@ -384,6 +429,9 @@ function conversation(&$a, $items, $mode, $update) { if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $indent .= ' shiny'; + // + localize_item($item); + // Build the HTML $tmp_item = replace_macros($template,array( |