[wp-polyglots] Missing string for RSS comments

Xavier Borderie xavier at borderie.net
Tue Nov 29 19:46:13 GMT 2005


Trying to check why the "Comment on" part of comments RSS feeds would
not translate, I found out it seems the problem is still not resolved
in 2.0 RC1 :

    <item>
        <title>by: <?php comment_author_rss() ?></title>
        <link><?php comment_link() ?></link>
        <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000',
get_comment_time('Y-m-d H:i:s', true), false); ?></pubDate>
        <guid><?php comment_link() ?></guid>
            <?php
            if (!empty($comment->post_password) &&
$_COOKIE['wp-postpass'] != $comment->post_password) {
            ?>
        <description>Protected Comments: Please enter your password to
view comments.</description>
        <content:encoded><![CDATA[<?php echo get_the_password_form()
?>]]></content:encoded>
            <?php
            } else {
            ?>
        <description><?php comment_text_rss() ?></description>
        <content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
            <?php
            } // close check for password
            ?>
    </item>

The strings "by:", and "Protected Comments: Please enter your password
to view comments." should be internationalized.

I'll try to open a ticket.


More information about the wp-polyglots mailing list