~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-16 22:28:36 UTC
  • mfrom: (5830.2.22 i18n-msgextract)
  • Revision ID: pqm@pqm.ubuntu.com-20110516222836-prryayncmfqqh6w3
(vila) Extract messages for translation. (INADA Naoki)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6155
6155
            self.outf.write('%s %s\n' % (path, location))
6156
6156
 
6157
6157
 
 
6158
class cmd_export_pot(Command):
 
6159
    __doc__ = """Export command helps and error messages in po format."""
 
6160
 
 
6161
    hidden = True
 
6162
 
 
6163
    def run(self):
 
6164
        from bzrlib.export_pot import export_pot
 
6165
        export_pot(self.outf)
 
6166
 
 
6167
 
6158
6168
def _register_lazy_builtins():
6159
6169
    # register lazy builtins from other modules; called at startup and should
6160
6170
    # be only called once.