[FIX]trml2pdf.py : translation issue for the Page x of y on report which is hard coded changed it to x/y

bzr revid: skh@tinyerp.com-20120424061009-hlg4hq8srmjxgteo
This commit is contained in:
skh 2012-04-24 11:40:09 +05:30
parent bcc52b0629
commit dbec5e9ae6
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class NumberedCanvas(canvas.Canvas):
key = key + 1
self.setFont("Helvetica", 8)
self.drawRightString((self._pagesize[0]-30), (self._pagesize[1]-40),
"Page %(this)i of %(total)i" % {
" %(this)i / %(total)i" % {
'this': self._pageNumber+1,
'total': self.pages.get(key,False),
}