Make WordPress Core

Changeset 28957


Ignore:
Timestamp:
07/02/2014 01:20:02 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Make default 'template' argument of the_taxonomies() and get_the_taxonomies() translatable.

props juliobox.
fixes #28714.

File:
1 edited

Legend:

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

    r28952 r28957  
    37623762        'sep' => ' ',
    37633763        'after' => '',
    3764         'template' => '%s: %l.'
     3764        /* translators: %s: taxonomy label, %l: list of term links */
     3765        'template' => __( '%s: %l.' )
    37653766    );
    37663767
     
    37863787
    37873788    $args = wp_parse_args( $args, array(
    3788         'template' => '%s: %l.',
     3789        /* translators: %s: taxonomy label, %l: list of term links */
     3790        'template' => __( '%s: %l.' ),
    37893791    ) );
    37903792
Note: See TracChangeset for help on using the changeset viewer.