diff options
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/bug/time.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/bug/time.html.tmpl b/template/en/default/bug/time.html.tmpl index c58675b96..9bfabe6d5 100644 --- a/template/en/default/bug/time.html.tmpl +++ b/template/en/default/bug/time.html.tmpl @@ -22,7 +22,7 @@ [% BLOCK formattimeunit %] [%# INTERFACE: # time_unit: the number converting, converts to 2 decimal places - # unless the last character is a 0, then it truncates to + # unless the last character is a 0, then it truncates to # 1 decimal place #%] [% time_unit = time_unit FILTER format('%.2f') %] @@ -31,11 +31,11 @@ [% BLOCK calculatepercentage %] [%# INTERFACE: - # act: actual time + # act: actual time # rem: remaining time # %] [% IF (act + rem) > 0 %] - [% (act / (act + rem)) * 100 + [% (act / (act + rem)) * 100 FILTER format("%d") %] [% ELSE %] 0 |