Make WordPress Core

Changeset 35303


Ignore:
Timestamp:
10/20/2015 07:19:37 PM (10 years ago)
Author:
DrewAPicture
Message:

Docs: Add translator comments for two _deprecated_argument() calls added to get_wp_title_rss() and wp_title_rss() in [35294].

See #31078. See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/feed.php

    r35297 r35303  
    9999function get_wp_title_rss( $deprecated = '–' ) {
    100100    if ( '–' !== $deprecated ) {
     101        /* translators: 1: 'document_title_separator' filter name */
    101102        _deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
    102103    }
     
    124125function wp_title_rss( $deprecated = '&#8211;' ) {
    125126    if ( '&#8211;' !== $deprecated ) {
     127        /* translators: 1: 'document_title_separator' filter name */
    126128        _deprecated_argument( __FUNCTION__, '4.4.0', sprintf( __( 'Use the %s filter instead.' ), '<code>document_title_separator</code>' ) );
    127129    }
Note: See TracChangeset for help on using the changeset viewer.