Open slideup-benni opened 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),
"Add New" and "All %s" isn't translatable too
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),