diff options
author | levinse <levinse> | 2011-05-17 05:00:44 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-05-17 05:00:44 +0000 |
commit | 93519f9371b41ded713a93fba031ed7a361be04c (patch) | |
tree | 3b00659886d3eece63b5d514f65691218ed4d7d7 /httemplate/view/cust_main/attachments.html | |
parent | 5d5e197dd0c74b419a4c4cb0791bf23e68e4c3bb (diff) |
internationalization/localization, RT12515
Diffstat (limited to 'httemplate/view/cust_main/attachments.html')
-rwxr-xr-x | httemplate/view/cust_main/attachments.html | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/httemplate/view/cust_main/attachments.html b/httemplate/view/cust_main/attachments.html index bdd4f5917..570b65120 100755 --- a/httemplate/view/cust_main/attachments.html +++ b/httemplate/view/cust_main/attachments.html @@ -1,19 +1,19 @@ % if ( scalar(@attachments) ) { - <% include('/elements/init_overlib.html') %> + <& /elements/init_overlib.html &> - <% include("/elements/table-grid.html") %> + <& /elements/table-grid.html &> <TR> - <TH CLASS="grid" BGCOLOR="#cccccc">Date</TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Date') |h %></TH> % if ( $conf->exists('cust_main_note-display_times') ) { - <TH CLASS="grid" BGCOLOR="#cccccc">Time</TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Time') |h %></TH> % } - <TH CLASS="grid" BGCOLOR="#cccccc">Person</TH> - <TH CLASS="grid" BGCOLOR="#cccccc">Filename</TH> - <TH CLASS="grid" BGCOLOR="#cccccc">Description</TH> - <TH CLASS="grid" BGCOLOR="#cccccc">Type</TH> - <TH CLASS="grid" BGCOLOR="#cccccc">Size</TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Person') |h %></TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Filename') |h %></TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Description') |h %></TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Type') |h %></TH> + <TH CLASS="grid" BGCOLOR="#cccccc"><% mt('Size') |h %></TH> <TH CLASS="grid" BGCOLOR="#cccccc"></TH> </TR> @@ -48,34 +48,35 @@ % my $clickjs = popup('edit/process/cust_main_attach.cgi?'. % "custnum=$custnum;attachnum=$attachnum;". % "undelete=1", -% 'Undelete attachment'); -% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(undelete)</A>!; +% mt('Undelete attachment')); +% $edit .= linkstr($clickjs, mt('undelete')); % } % if ($curuser->access_right('Purge attachment')) { % my $clickjs = popup('edit/process/cust_main_attach.cgi?'. % "custnum=$custnum;attachnum=$attachnum;". % "purge=1", -% 'Purge attachment', -% 'Permanently remove this file?'); -% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(purge)</A>!; +% mt('Purge attachment'), +% mt('Permanently remove this file?') ); +% $edit .= linkstr($clickjs,mt('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", -% 'Edit attachment properties'); -% $edit .= qq! <A HREF="javascript:void(0);" $clickjs>(edit)</A>!; +% mt('Edit attachment properties')); +% $edit .= linkstr($clickjs,mt('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 .= qq! <A HREF="javascript:void(0);" $clickjs>(delete)</A>!; +% $edit .= linkstr($clickjs,mt('delete')); % } % if ($curuser->access_right('Download attachment') ) { -% $edit .= qq! <A HREF="!.popurl(1).'attachment.html?'.$attachnum.qq!">(download)</A>!; +% $edit .= qq! <A HREF="!.popurl(1).'attachment.html?'.$attachnum.qq!">(! +% . mt('download') .')</A>'; % } % } @@ -131,6 +132,11 @@ sub note_datestr { $strip; } +sub linkstr { + my ($clickjs, $label) = (shift,shift); + ' <A HREF="javascript:void(0);" '. $clickjs . '>(' . mt($label) . ')</A>'; +} + sub size_units { my $bytes = shift; return $bytes if $bytes < 1024; |