Comment 8 for bug 353081

Revision history for this message
Ricardo Pérez López (ricardo) wrote :

Martin, your fix does not translate the "(version %d)" part. I've fixed that replacing this line:

  result += ' (%s %s)' % (self._('version'), handler_info['version'])

with this one:

  result += ' (' + self._('version %s') % handler_info['version'] + ')'

The problem is that the right string is 'version %s', not 'version'.

Please, include this fix to solve the problem completely.