Fixed translators notation

This commit is contained in:
Claudio Sanches 2018-02-02 14:05:49 -02:00
parent 36963afe99
commit bb8f4f0139
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class WC_Admin_List_Table_Products extends WC_Admin_List_Table {
* @return array * @return array
*/ */
protected function get_row_actions( $actions, $post ) { protected function get_row_actions( $actions, $post ) {
/* translators: %s: product ID. */ /* translators: %d: product ID. */
return array_merge( array( 'id' => sprintf( __( 'ID: %d', 'woocommerce' ), $post->ID ) ), $actions ); return array_merge( array( 'id' => sprintf( __( 'ID: %d', 'woocommerce' ), $post->ID ) ), $actions );
} }