From 98b365a012e0846788de0b56da7f5b3863097446 Mon Sep 17 00:00:00 2001 From: Ian Dunn Date: Thu, 31 Oct 2019 17:59:04 -0500 Subject: [PATCH] Pledge List: Clarify that hours pledged is per week. --- themes/wporg-5ftf/template-parts/content-5ftf_pledge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/wporg-5ftf/template-parts/content-5ftf_pledge.php b/themes/wporg-5ftf/template-parts/content-5ftf_pledge.php index 1d49a13..48ac073 100644 --- a/themes/wporg-5ftf/template-parts/content-5ftf_pledge.php +++ b/themes/wporg-5ftf/template-parts/content-5ftf_pledge.php @@ -39,7 +39,7 @@ $total_hours = $pledge->{ PledgeMeta\META_PREFIX . 'pledge-total-hours' }; $contributor_title = sprintf( esc_html( - _n( '%1$s has pledged %2$d hour', '%1$s has pledged %2$d hours', $total_hours, 'wordpressorg' ) + _n( '%1$s has pledged %2$d hour a week', '%1$s has pledged %2$d hours a week', $total_hours, 'wordpressorg' ) ), wp_kses_post( get_the_title() ), intval( $total_hours )