diff options
author | levinse <levinse> | 2011-05-18 01:08:08 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-05-18 01:08:08 +0000 |
commit | 998f029ef805c73e90543b34192e16d38a23c69c (patch) | |
tree | 16ff1b8368368e0b19de9ff517ea0643e6d75a24 /httemplate/view/cust_main/locations.html | |
parent | a9916ce48023939ab1d2506704f5545eb183a2ea (diff) |
internationalization/localization, RT12515
Diffstat (limited to 'httemplate/view/cust_main/locations.html')
-rwxr-xr-x | httemplate/view/cust_main/locations.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httemplate/view/cust_main/locations.html b/httemplate/view/cust_main/locations.html index c95850b78..98c933645 100755 --- a/httemplate/view/cust_main/locations.html +++ b/httemplate/view/cust_main/locations.html @@ -19,7 +19,7 @@ STYLE="padding-bottom: 0px; border-bottom-width: 1px;"> <SPAN CLASS="loclabel"> % if (! $locationnum) { -Default service location: +<% mt('Default service location:') |h %> % } % elsif ( $loc->disabled ) { <FONT COLOR="#808080"><I> @@ -69,8 +69,8 @@ sub edit_location_link { my $locationnum = shift; include( '/elements/popup_link.html', 'action' => $p. "edit/cust_location.cgi?locationnum=$locationnum", - 'label' => '('.mt('Edit location').')', - 'actionlabel' => mt('Edit'), + 'label' => '('.emt('Edit location').')', + 'actionlabel' => emt('Edit'), ); } @@ -78,8 +78,8 @@ sub disable_location_link { my $locationnum = shift; include( '/elements/popup_link.html', 'action' => $p. "misc/disable-cust_location.cgi?locationnum=$locationnum", - 'label' => '('.mt('Disable location').')', - 'actionlabel' => mt('Disable'), + 'label' => '('.emt('Disable location').')', + 'actionlabel' => emt('Disable'), ); } |