From 74beb8c8a0708cd11d78723bd62c084be03f17c2 Mon Sep 17 00:00:00 2001 From: scribu Date: Tue, 12 Nov 2013 22:41:56 +0200 Subject: [PATCH] remove label from add_new default and move it above add_new_item, to make the difference clearer see #868 --- templates/post_type.mustache | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/post_type.mustache b/templates/post_type.mustache index 51f0faa2..201a2fa1 100644 --- a/templates/post_type.mustache +++ b/templates/post_type.mustache @@ -10,11 +10,11 @@ 'labels' => array( 'name' => __( '{{label_plural_ucfirst}}', '{{textdomain}}' ), 'singular_name' => __( '{{label_ucfirst}}', '{{textdomain}}' ), - 'add_new' => __( 'Add New {{label}}', '{{textdomain}}' ), 'all_items' => __( '{{label_plural_ucfirst}}', '{{textdomain}}' ), + 'new_item' => __( 'New {{label}}', '{{textdomain}}' ), + 'add_new' => __( 'Add New', '{{textdomain}}' ), 'add_new_item' => __( 'Add New {{label}}', '{{textdomain}}' ), 'edit_item' => __( 'Edit {{label}}', '{{textdomain}}' ), - 'new_item' => __( 'New {{label}}', '{{textdomain}}' ), 'view_item' => __( 'View {{label}}', '{{textdomain}}' ), 'search_items' => __( 'Search {{label_plural}}', '{{textdomain}}' ), 'not_found' => __( 'No {{label_plural}} found', '{{textdomain}}' ), -- 2.11.0