diff options
author | levinse <levinse> | 2011-05-27 02:25:43 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-05-27 02:25:43 +0000 |
commit | 8ef00c68688492b2afa3dde8d3d467f89f238c40 (patch) | |
tree | 925ca79783058b15176eafa993b3e636c9f5b1f6 /httemplate/view/cust_main.cgi | |
parent | 82879083dd2efddf02192ad48ad0e46e1a16662b (diff) |
internationalization/localization, RT12515
Diffstat (limited to 'httemplate/view/cust_main.cgi')
-rwxr-xr-x | httemplate/view/cust_main.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index fb3bfc314..a6c917f20 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -43,7 +43,7 @@ function areyousure(href, message) { % if ( $view eq 'basics' || $view eq 'jumbo' ) { % if ( $curuser->access_right('Edit customer') ) { - <A HREF="<% $p %>edit/cust_main.cgi?<% $custnum %>">Edit this customer</A> | + <A HREF="<% $p %>edit/cust_main.cgi?<% $custnum %>"><% mt('Edit this customer') |h %></A> | % } % if ( $curuser->access_right('Cancel customer') @@ -295,7 +295,7 @@ die "Customer not found!" unless $cust_main; my $title = $cust_main->name; $title = '('. $cust_main->display_custnum. ") $title" if $conf->exists('cust_main-title-display_custnum'); -$title = "Customer: $title"; +$title = mt("Customer:")." ".$title; #false laziness w/pref/pref.html and Conf.pm (cust_main-default_view) tie my %views, 'Tie::IxHash', |