From aaf20df651082ece4e891bf56a9fdff79c1165c1 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Tue, 28 Jan 2014 18:08:53 -0800 Subject: [PATCH] fix "the month of" text on invoices, #24850 --- FS/FS/cust_bill.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 9d1631fb5..45f86edda 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -5135,7 +5135,9 @@ sub _items_cust_bill_pkg { $cust_main->agentnum ); if ( defined($date_style) && $date_style eq 'month_of' ) { - $time_period = $self->time2str_local('The month of %B', $cust_bill_pkg->sdate); + $time_period = $self->mt('The month of [_1]', + $self->time2str_local('%B', $cust_bill_pkg->sdate) + ); } elsif ( defined($date_style) && $date_style eq 'X_month' ) { my $desc = $conf->config( 'cust_bill-line_item-date_description', $cust_main->agentnum -- 2.11.0