]> code.citadel.org Git - citadel.git/blobdiff - webcit/blogview_renderer.c
Began defining CSS for blog view
[citadel.git] / webcit / blogview_renderer.c
index 3cf584af9623b9a92aead20e27081b37711a1e86..949fd179a3a90ea4b29061adebb4c5e28b34b523 100644 (file)
@@ -48,25 +48,26 @@ void blogpost_render_and_destroy(struct blogpost *bp) {
 
        if ( ((p == 0) || (p == bp->top_level_id)) && (bp->num_msgs > 0) ) {
                /* Show the top level post */
-               read_message(WC->WBuf, HKEY("view_message"), bp->msgs[0], NULL, &Mime);
+               read_message(WC->WBuf, HKEY("view_blog_post"), bp->msgs[0], NULL, &Mime);
 
                if (p == 0) {
                        /* Show the number of comments */
                        wc_printf("<a href=\"readfwd?p=%d?gotofirst=", bp->top_level_id);
                        urlescputs(ChrPtr(WC->CurRoom.name));
-                       wc_printf("#comments\">%d comments</a>", bp->num_msgs - 1);
+                       wc_printf("#comments\">");
+                       wc_printf(_("%d comments"), bp->num_msgs - 1);
+                       wc_printf("</a>");
                }
                else if (bp->num_msgs < 2) {
-                       wc_printf("dere r no comments here!<br>\n");
+                       wc_printf(_("%d comments"), 0);
                }
                else {
                        wc_printf("<a name=\"comments\"></a>\n");
-                       wc_printf("%d comments<br>\n", bp->num_msgs - 1);
-                       wc_printf("<blockquote>");
+                       wc_printf(_("%d comments"), bp->num_msgs - 1);
+                       wc_printf("<br>\n");
                        for (i=1; i<bp->num_msgs; ++i) {
-                               read_message(WC->WBuf, HKEY("view_message"), bp->msgs[i], NULL, &Mime);
+                               read_message(WC->WBuf, HKEY("view_blog_comment"), bp->msgs[i], NULL, &Mime);
                        }
-                       wc_printf("</blockquote>");
                }
        }