The i18n theme in the polyglot repos does not support translation of the
string "Comments Closed" in comment links.

The comment link function looks like this:
<?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment
&#187;', 'kubrick'), __('% Comments &#187;', 'kubrick')); ?>

To translate the "Comments Closed" string, it should look (for e.g.) like
this:
<?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment
&#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'),
_c('comments-link|HTML class for comments link', 'kubrick'), __('Comments
Closed', 'kubrick') ); ?>

These functions appear are in index.php, archive.php and search.php

More information about the comments_popup_link function is available in the
codex:
http://codex.wordpress.org/Template_Tags/comments_popup_link

-- 
-- RYH♡,
ranh.co.il
_______________________________________________
wp-polyglots mailing list
[email protected]
http://lists.automattic.com/mailman/listinfo/wp-polyglots

Reply via email to