Make WordPress Core

Changeset 19819


Ignore:
Timestamp:
02/03/2012 12:11:01 AM (13 years ago)
Author:
nacin
Message:

Use existing string to properly translate month + year combo. see #19598.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-list-table.php

    r19712 r19819  
    387387                selected( $m, $year . $month, false ),
    388388                esc_attr( $arc_row->year . $month ),
    389                 $wp_locale->get_month( $month ) . " $year"
     389                /* translators: 1: month name, 2: 4-digit year */
     390                sprintf( __( '%1$s %2$d' ), $wp_locale->get_month( $month ), $year )
    390391            );
    391392        }
Note: See TracChangeset for help on using the changeset viewer.