Mercurial > public > mercurial-scm > hg-stable
diff mercurial/sshrepo.py @ 6953:63b5f4c73c98
i18n: mark strings for translation in Mercurial
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Sun, 31 Aug 2008 16:12:02 +0200 |
parents | c5580db9c3aa |
children | 4674706b5b95 |
line wrap: on
line diff
--- a/mercurial/sshrepo.py Sun Aug 31 16:12:02 2008 +0200 +++ b/mercurial/sshrepo.py Sun Aug 31 16:12:02 2008 +0200 @@ -42,7 +42,7 @@ cmd = '%s %s "%s init %s"' cmd = cmd % (sshcmd, args, remotecmd, self.path) - ui.note('running %s\n' % cmd) + ui.note(_('running %s\n') % cmd) res = util.system(cmd) if res != 0: self.raise_(repo.RepoError(_("could not create remote repo"))) @@ -60,7 +60,7 @@ cmd = cmd % (sshcmd, args, remotecmd, self.path) cmd = util.quotecommand(cmd) - ui.note('running %s\n' % cmd) + ui.note(_('running %s\n') % cmd) self.pipeo, self.pipei, self.pipee = os.popen3(cmd, 'b') # skip any noise generated by remote shell