diff options
author | levinse <levinse> | 2011-05-17 00:32:04 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-05-17 00:32:04 +0000 |
commit | 7ef2ddadbd35cad8b9e65a3682e870230e5f8c89 (patch) | |
tree | dc411e8b97dcb24e6aaa0aa7f353ee41f38e5760 /httemplate/view/cust_main/packages/section.html | |
parent | f2a797b9cc0e9a6053399356e9e8cae22e553c9c (diff) |
internationalization/localization, RT12515
Diffstat (limited to 'httemplate/view/cust_main/packages/section.html')
-rwxr-xr-x | httemplate/view/cust_main/packages/section.html | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/httemplate/view/cust_main/packages/section.html b/httemplate/view/cust_main/packages/section.html index 45365a003..4ac2e7779 100755 --- a/httemplate/view/cust_main/packages/section.html +++ b/httemplate/view/cust_main/packages/section.html @@ -5,12 +5,12 @@ <TR> % #my $width = $show_location ? 'WIDTH="25%"' : 'WIDTH="33%"'; - <TH CLASS="grid" BGCOLOR="#cccccc">Package</TH> - <TH CLASS="grid" BGCOLOR="#cccccc">Status</TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Package') |h %></TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Status') |h %></TH> % if ( $show_location ) { - <TH CLASS="grid" BGCOLOR="#cccccc">Location</TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Location') |h %></TH> % } - <TH CLASS="grid" BGCOLOR="#cccccc">Services</TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Services') |h %></TH> </TR> % #$FS::cust_pkg::DEBUG = 2; @@ -32,12 +32,12 @@ <!--pkgnum: <% $cust_pkg->pkgnum %>--> <TR> - <% include('package.html', %iopt) %> - <% include('status.html', %iopt) %> + <& package.html, %iopt &> + <& status.html, %iopt &> % if ( $show_location ) { - <% include('location.html', %iopt) %> + <& location.html, %iopt &> % } - <% include('services.html', %iopt) %> + <& services.html, %iopt &> </TR> % } #foreach $cust_pkg @@ -91,5 +91,4 @@ my %conf_opt = ( 'show_location' => $show_location, ); - </%init> |