diff --git a/templates/date/date-views-pager.vars.php b/templates/date/date-views-pager.vars.php index 403ff2df8279919afbacbd134475ee4ca911ba04..04dd7481eda6478b67789b5fd6e892ca23b4cce4 100644 --- a/templates/date/date-views-pager.vars.php +++ b/templates/date/date-views-pager.vars.php @@ -18,7 +18,10 @@ function bootstrap_preprocess_date_views_pager(&$variables) { // Link types. $types = array( - 'prev' => t('Previous', array(), array('context' => 'date_nav')), + // Because this is using the "date_nav" context, this must use "Prev" + // instead of the full English word "Previous". + // @todo Should this be fixed upstream in the date/date_views module? + 'prev' => t('Prev', array(), array('context' => 'date_nav')), 'next' => t('Next', array(), array('context' => 'date_nav')), );