From 99d36151c9e707af8dad9cb310bc5856dc6716fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Smoli=C5=84ski?= Date: Fri, 20 Jul 2018 19:48:20 +0200 Subject: [PATCH] Correct add_new_item label fixes https://github.com/wp-cli/scaffold-command/issues/160 --- templates/taxonomy.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/taxonomy.mustache b/templates/taxonomy.mustache index a3367a4c2..59ed4a0b9 100644 --- a/templates/taxonomy.mustache +++ b/templates/taxonomy.mustache @@ -23,7 +23,7 @@ 'edit_item' => __( 'Edit {{label_ucfirst}}', '{{textdomain}}' ), 'update_item' => __( 'Update {{label_ucfirst}}', '{{textdomain}}' ), 'view_item' => __( 'View {{label_ucfirst}}', '{{textdomain}}' ), - 'add_new_item' => __( 'New {{label_ucfirst}}', '{{textdomain}}' ), + 'add_new_item' => __( 'Add New {{label_ucfirst}}', '{{textdomain}}' ), 'new_item_name' => __( 'New {{label_ucfirst}}', '{{textdomain}}' ), 'separate_items_with_commas' => __( 'Separate {{label_plural}} with commas', '{{textdomain}}' ), 'add_or_remove_items' => __( 'Add or remove {{label_plural}}', '{{textdomain}}' ),