comparison hgext/convert/convcmd.py @ 13685:e9628665b670 stable

i18n: don't mark trivial string for translation
author Martin Geisler <mg@lazybytes.net>
date Wed, 16 Mar 2011 17:38:25 +0100
parents b14ed1692b27
children 9ff22f600c6c
comparison
equal deleted inserted replaced
13684:cfe8d35313f3 13685:e9628665b670
69 if not type or name == type: 69 if not type or name == type:
70 return sink(ui, path) 70 return sink(ui, path)
71 except NoRepo, inst: 71 except NoRepo, inst:
72 ui.note(_("convert: %s\n") % inst) 72 ui.note(_("convert: %s\n") % inst)
73 except MissingTool, inst: 73 except MissingTool, inst:
74 raise util.Abort(_('%s\n') % inst) 74 raise util.Abort('%s\n' % inst)
75 raise util.Abort(_('%s: unknown repository type') % path) 75 raise util.Abort(_('%s: unknown repository type') % path)
76 76
77 class progresssource(object): 77 class progresssource(object):
78 def __init__(self, ui, source, filecount): 78 def __init__(self, ui, source, filecount):
79 self.ui = ui 79 self.ui = ui