diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:21:00 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 12:21:00 -0700 |
commit | 24389dff37b486ed4f0281bd50a3ff1ee77ae74d (patch) | |
tree | 0b8574f7e9d34101d780a0c2fd2064712769f1d6 /httemplate/misc | |
parent | 6d1717a6efc1db987c309d149e679a5676a04e4a (diff) |
fix translation escaping
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/batch-cust_pay.html | 2 | ||||
-rwxr-xr-x | httemplate/misc/change_pkg_contact.html | 2 | ||||
-rwxr-xr-x | httemplate/misc/detach_pkg.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index 197ade14f..d4d4afa6e 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -288,7 +288,7 @@ function create_application_row(rownum, appnum) { td_invnum.setAttribute('colspan', 4); td_invnum.style.textAlign = 'right'; td_invnum.appendChild( - document.createTextNode('<% mt('Apply to Invoice ') %>') + document.createTextNode(<% mt('Apply to Invoice ') |js_string %>) ); var select_invnum = document.createElement('SELECT'); select_invnum.setAttribute('rownum', rownum); diff --git a/httemplate/misc/change_pkg_contact.html b/httemplate/misc/change_pkg_contact.html index c88140ebf..26eacb905 100755 --- a/httemplate/misc/change_pkg_contact.html +++ b/httemplate/misc/change_pkg_contact.html @@ -16,7 +16,7 @@ % if ( $cust_pkg->contactnum ) { <TR> - <TH ALIGN="right"><% mt('Current Contact') %></TH> + <TH ALIGN="right"><% emt('Current Contact') %></TH> <TD COLSPAN=7 BGCOLOR="#dddddd"> <% $cust_pkg->contact_obj->line |h %> </TD> diff --git a/httemplate/misc/detach_pkg.html b/httemplate/misc/detach_pkg.html index 366bbac3f..2562da9e1 100755 --- a/httemplate/misc/detach_pkg.html +++ b/httemplate/misc/detach_pkg.html @@ -30,7 +30,7 @@ <INPUT TYPE="hidden" NAME="last" VALUE="<% $cust_contact->get('last') |h %>"> <TR> - <TH ALIGN="right"><% mt('Name') %></TH> + <TH ALIGN="right"><% emt('Name') %></TH> <TD COLSPAN=7 BGCOLOR="#dddddd"> <% $cust_pkg->contact_obj->line |h %> </TD> @@ -38,7 +38,7 @@ % #} <TR> - <TH ALIGN="right" VALIGN="top"><% mt('Address') %></TH> + <TH ALIGN="right" VALIGN="top"><% emt('Address') %></TH> <TD COLSPAN=7 BGCOLOR="#dddddd"> <% $loc->location_label( 'join_string' => '<BR>', |