aboutsummaryrefslogtreecommitdiff
path: root/log.rb
diff options
context:
space:
mode:
Diffstat (limited to 'log.rb')
-rw-r--r--log.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/log.rb b/log.rb
index 368440c..6780027 100644
--- a/log.rb
+++ b/log.rb
@@ -107,7 +107,8 @@ class Log
@log.sort!
end
def to_html(unlinkedrevision,history)
- ret = "<table summary='Historytable' ><tr><th>Version</th><th>Date</th><th>Comment</th></tr>"
+ ret = "<table><tr><th>"
+ ret += _("Version") + "</th><th>" + _("Date") + "</th><th>" + _("Comment") + "</th></tr>"
self.reverse_each{|l|
ret += l.to_html(unlinkedrevision != l.rev,history)
}