/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-16 14:13:48 UTC
  • mto: This revision was merged to the branch mainline in revision 6146.
  • Revision ID: jriddell@canonical.com-20110916141348-ymlt715bu8l2a4tu
more plurals

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
    revision as _mod_revision,
75
75
    revisionspec,
76
76
    tsort,
77
 
    i18n,
78
77
    )
 
78
from bzrlib.i18n import gettext, ngettext
79
79
""")
80
80
 
81
81
from bzrlib import (
2113
2113
                          len(row) > 1 and row[1] == 'fixed']
2114
2114
 
2115
2115
        if fixed_bug_urls:
2116
 
            return {'fixes bug(s)': ' '.join(fixed_bug_urls)}
 
2116
            return {ngettext('fixes bug', 'fixes bug', len(fixed_bug_urls)):\
 
2117
                    ''.join(fixed_bug_urls)}
2117
2118
    return {}
2118
2119
 
2119
2120
properties_handler_registry.register('bugs_properties_handler',