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/attachments.html | |
parent | a9916ce48023939ab1d2506704f5545eb183a2ea (diff) |
internationalization/localization, RT12515
Diffstat (limited to 'httemplate/view/cust_main/attachments.html')
-rwxr-xr-x | httemplate/view/cust_main/attachments.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/httemplate/view/cust_main/attachments.html b/httemplate/view/cust_main/attachments.html index 570b65120..1ad857e47 100755 --- a/httemplate/view/cust_main/attachments.html +++ b/httemplate/view/cust_main/attachments.html @@ -48,35 +48,35 @@ % my $clickjs = popup('edit/process/cust_main_attach.cgi?'. % "custnum=$custnum;attachnum=$attachnum;". % "undelete=1", -% mt('Undelete attachment')); -% $edit .= linkstr($clickjs, mt('undelete')); +% emt('Undelete attachment')); +% $edit .= linkstr($clickjs, emt('undelete')); % } % if ($curuser->access_right('Purge attachment')) { % my $clickjs = popup('edit/process/cust_main_attach.cgi?'. % "custnum=$custnum;attachnum=$attachnum;". % "purge=1", -% mt('Purge attachment'), -% mt('Permanently remove this file?') ); -% $edit .= linkstr($clickjs,mt('purge')); +% emt('Purge attachment'), +% emt('Permanently remove this file?') ); +% $edit .= linkstr($clickjs,emt('purge')); % } % } % else { # you can download or edit it % if ($curuser->access_right('Edit attachment') ) { % my $clickjs = popup('edit/cust_main_attach.cgi?'. % "custnum=$custnum;attachnum=$attachnum", -% mt('Edit attachment properties')); -% $edit .= linkstr($clickjs,mt('edit')); +% emt('Edit attachment properties')); +% $edit .= linkstr($clickjs,emt('edit')); % } % if($curuser->access_right('Delete attachment') ) { % my $clickjs = popup('edit/process/cust_main_attach.cgi?'. % "custnum=$custnum;attachnum=$attachnum;delete=1", % 'Delete attachment', % 'Delete this file?'); -% $edit .= linkstr($clickjs,mt('delete')); +% $edit .= linkstr($clickjs,emt('delete')); % } % if ($curuser->access_right('Download attachment') ) { % $edit .= qq! <A HREF="!.popurl(1).'attachment.html?'.$attachnum.qq!">(! -% . mt('download') .')</A>'; +% . emt('download') .')</A>'; % } % } @@ -134,7 +134,7 @@ sub note_datestr { sub linkstr { my ($clickjs, $label) = (shift,shift); - ' <A HREF="javascript:void(0);" '. $clickjs . '>(' . mt($label) . ')</A>'; + ' <A HREF="javascript:void(0);" '. $clickjs . '>(' . emt($label) . ')</A>'; } sub size_units { |