~sinzui/gdp/trunk

« back to all changes in this revision

Viewing changes to plugins/gdpbzr.py

  • Committer: Curtis Hovey
  • Date: 2013-08-16 12:31:56 UTC
  • Revision ID: curtis@hovey.name-20130816123156-d0qqro6nammy8419
Fixed spelling.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                <menuitem action="ShowMissing"/>
54
54
                <separator />
55
55
                <menuitem action="ShowTags"/>
 
56
                <menuitem action="TagRevision"/>
56
57
                <menuitem action="ShowAnnotations"/>
57
58
                <menuitem action="VisualiseBranch"/>
58
59
                <separator />
150
151
            ('ShowTags', None, _("Show _tags"),
151
152
                None, _("Show the tags in the branch."),
152
153
                bzr.show_tags),
 
154
            ('TagRevision', None, _("Tag revision"),
 
155
                None, _("Tag a revision in the branch."),
 
156
                bzr.tag_revision),
153
157
            ('AddFiles', None, _("Add files"),
154
158
                None, _("Add files to the branch."),
155
159
                bzr.add_files),
167
171
                None,
168
172
                _("Merge changes from another branch into the working tree."),
169
173
                bzr.merge_changes),
170
 
            ('PullChanges', None, _("_Pu changes"),
 
174
            ('PullChanges', None, _("_Pull changes"),
171
175
                None, _("Pull changes into the working tree."),
172
176
                bzr.pull_changes),
173
177
            ('PushChanges', None, _("_Push changes"),