From 7e687cf97fb590471e81028f699a63e578dbecaf Mon Sep 17 00:00:00 2001 From: ajstanley Date: Fri, 29 Jul 2016 13:28:40 -0300 Subject: [PATCH] reverted pluralization --- islandora.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/islandora.module b/islandora.module index 804140be..82f891ba 100644 --- a/islandora.module +++ b/islandora.module @@ -2189,9 +2189,9 @@ function islandora_islandora_overview_object(AbstractObject $object) { } } } - $headers = format_plural(count($rows), t('Content Model'), t('Content Models')); + $header = count($rows) > 1 ? t('Content Models') : t('Content Model'); $table = theme('table', array( - 'header' => array($headers), + 'header' => array($header), 'rows' => $rows, 'empty' => t('No Islandora content model associated with this object.'))); return array('cmodels' => $table);