From 93aef6480993df7f279c61a04e5542b264a7c8d4 Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Sat, 11 Apr 2015 14:38:54 +1000 Subject: [PATCH] Use singular staff label --- includes/class-sp-post-types.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/class-sp-post-types.php b/includes/class-sp-post-types.php index 86e423e4..a6f810bb 100644 --- a/includes/class-sp-post-types.php +++ b/includes/class-sp-post-types.php @@ -462,8 +462,8 @@ class SP_Post_types { apply_filters( 'sportspress_register_post_type_staff', array( 'labels' => array( - 'name' => _n( 'Staff', 'Staff', 2, 'sportspress' ), - 'singular_name' => _n( 'Staff', 'Staff', 1, 'sportspress' ), + 'name' => __( 'Staff', 'sportspress' ), + 'singular_name' => __( 'Staff', 'sportspress' ), 'add_new_item' => __( 'Add New Staff', 'sportspress' ), 'edit_item' => __( 'Edit Staff', 'sportspress' ), 'new_item' => __( 'New', 'sportspress' ),