Make WordPress Core

Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#1987 closed defect (bug) (fixed)

Missing strings in RSS comments

Reported by: xibe's profile xibe Owned by:
Milestone: Priority: normal
Severity: trivial Version: 2.0
Component: General Keywords: rss comments translation i18n
Focuses: 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 (2)

#1 @ryan
19 years ago

  • Resolution set to fixed
  • Status changed from new to closed

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

#2 @(none)
18 years ago

  • Milestone 2.0 deleted

Milestone 2.0 deleted

Note: See TracTickets for help on using tickets.