~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/shelf_ui.py

  • Committer: Patch Queue Manager
  • Date: 2011-09-19 12:22:23 UTC
  • mfrom: (6143.1.8 i18n-plurals)
  • Revision ID: pqm@pqm.ubuntu.com-20110919122223-243tgzmfebanxxbi
(jr) Use ngettext instead of "words(s) with brackets" for plurals (Jonathan
 Riddell)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
class ShelfReporter(object):
44
44
 
45
 
    vocab = {'add file': 'Shelve adding file "%(path)s"?',
46
 
             'binary': 'Shelve binary changes?',
47
 
             'change kind': 'Shelve changing "%s" from %(other)s'
48
 
             ' to %(this)s?',
49
 
             'delete file': 'Shelve removing file "%(path)s"?',
50
 
             'final': 'Shelve %d change(s)?',
51
 
             'hunk': 'Shelve?',
52
 
             'modify target': 'Shelve changing target of'
53
 
             ' "%(path)s" from "%(other)s" to "%(this)s"?',
54
 
             'rename': 'Shelve renaming "%(other)s" =>'
55
 
                        ' "%(this)s"?'
 
45
    vocab = {'add file': gettext('Shelve adding file "%(path)s"?'),
 
46
             'binary': gettext('Shelve binary changes?'),
 
47
             'change kind': gettext('Shelve changing "%s" from %(other)s'
 
48
             ' to %(this)s?'),
 
49
             'delete file': gettext('Shelve removing file "%(path)s"?'),
 
50
             'final': gettext('Shelve %d change(s)?'),
 
51
             'hunk': gettext('Shelve?'),
 
52
             'modify target': gettext('Shelve changing target of'
 
53
             ' "%(path)s" from "%(other)s" to "%(this)s"?'),
 
54
             'rename': gettext('Shelve renaming "%(other)s" =>'
 
55
                        ' "%(this)s"?')
56
56
             }
57
57
 
58
58
    invert_diff = False
94
94
 
95
95
class ApplyReporter(ShelfReporter):
96
96
 
97
 
    vocab = {'add file': 'Delete file "%(path)s"?',
98
 
             'binary': 'Apply binary changes?',
99
 
             'change kind': 'Change "%(path)s" from %(this)s'
100
 
             ' to %(other)s?',
101
 
             'delete file': 'Add file "%(path)s"?',
102
 
             'final': 'Apply %d change(s)?',
103
 
             'hunk': 'Apply change?',
104
 
             'modify target': 'Change target of'
105
 
             ' "%(path)s" from "%(this)s" to "%(other)s"?',
106
 
             'rename': 'Rename "%(this)s" => "%(other)s"?',
 
97
    vocab = {'add file': gettext('Delete file "%(path)s"?'),
 
98
             'binary': gettext('Apply binary changes?'),
 
99
             'change kind': gettext('Change "%(path)s" from %(this)s'
 
100
             ' to %(other)s?'),
 
101
             'delete file': gettext('Add file "%(path)s"?'),
 
102
             'final': gettext('Apply %d change(s)?'),
 
103
             'hunk': gettext('Apply change?'),
 
104
             'modify target': gettext('Change target of'
 
105
             ' "%(path)s" from "%(this)s" to "%(other)s"?'),
 
106
             'rename': gettext('Rename "%(this)s" => "%(other)s"?'),
107
107
             }
108
108
 
109
109
    invert_diff = True