From: Mark Wells Date: Wed, 29 Jan 2014 02:08:53 +0000 (-0800) Subject: fix "the month of" text on invoices, #24850 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=aaf20df651082ece4e891bf56a9fdff79c1165c1 fix "the month of" text on invoices, #24850 --- 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