Ticket #1987 (closed defect: fixed)

Opened 3 years ago

Last modified 2 years ago

Missing strings in RSS comments

Reported by: xibe Assigned to: anonymous
Priority: normal Milestone:
Component: General Version: 2.0
Severity: trivial Keywords: rss comments translation i18n
Cc:

Description

Some of the strings in the wp-commentsrss2.php are not internationalized.

Line 23 :

	<title><?php if (is_single() || is_page()) { echo "Comments on: "; the_title_rss(); } else { bloginfo_rss("name"); echo " Comments"; } ?></title>

Line54 :

		<title>by: <?php comment_author_rss() ?></title>

Line 61 :

		<description>Protected Comments: Please enter your password to view comments.</description>

Seems like they should read :

Line 23 :

	<title><?php if (is_single() || is_page()) { echo __("Comments on: "); the_title_rss(); } else { bloginfo_rss("name"); echo __(" Comments"); } ?></title>

Line54 :

		<title><?php _e("by:"); comment_author_rss() ?></title>

Line 61 :

		<description><?php _e("Protected Comments: Please enter your password to view comments." ?></description>

Change History

12/15/05 22:20:18 changed by ryan

  • status changed from new to closed.
  • resolution set to fixed.

(In [3314]) Add post titles to site comment feed. Add some gettext. fixes #2067 #1987

11/30/06 19:41:47 changed by

  • milestone deleted.

Milestone 2.0 deleted