From 73d1bd93af466e49a2d822672a94e19cb8425466 Mon Sep 17 00:00:00 2001 From: Jeremy Herve Date: Mon, 23 Jan 2017 11:04:49 +0100 Subject: [PATCH] Capitalize Movie taxonomy term. --- core.traktivity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.traktivity.php b/core.traktivity.php index 57fbfc7..f742029 100644 --- a/core.traktivity.php +++ b/core.traktivity.php @@ -359,7 +359,7 @@ public function publish_event() { // Let's start with movies. if ( 'movie' === $event->type ) { - $taxonomies['trakt_type'] = esc_html__( 'movie', 'traktivity' ); + $taxonomies['trakt_type'] = esc_html__( 'Movie', 'traktivity' ); // Let's capitalize genres. $taxonomies['trakt_genre'] = array_map( 'ucwords', $event->movie->genres ); $taxonomies['trakt_year'] = intval( $event->year );