woocommerce / projects

38 stars 24 forks source link

can not translate ''Show All'' #115

Open slideup-benni opened 8 years ago

slideup-benni commented 8 years ago

there is a little mistake in the file "projects-by-woothemes/classes/class-projects-admin.php":

'show_option_all' => __( 'Show All ' . $tax_obj->label, 'projects-by-woothemes' ),

it should be:

'show_option_all' => sprintf(__( 'Show All %s', 'projects-by-woothemes' ), $tax_obj->label),

slideup-benni commented 8 years ago

"Add New" and "All %s" isn't translatable too