##// END OF EJS Templates
mq, i18n: mark strings for translation
Martin Geisler -
r7597:81f68565 default
parent child Browse files
Show More
@@ -965,10 +965,10 b' class queue:'
965 raise
965 raise
966 top = self.applied[-1].name
966 top = self.applied[-1].name
967 if ret[0]:
967 if ret[0]:
968 self.ui.write(
968 self.ui.write(_("Errors during apply, please fix and "
969 "Errors during apply, please fix and refresh %s\n" % top)
969 "refresh %s\n") % top)
970 else:
970 else:
971 self.ui.write("Now at: %s\n" % top)
971 self.ui.write(_("Now at: %s\n") % top)
972 return ret[0]
972 return ret[0]
973 finally:
973 finally:
974 del wlock
974 del wlock
@@ -1599,7 +1599,7 b' class queue:'
1599 index = self.full_series_end() + i
1599 index = self.full_series_end() + i
1600 self.full_series[index:index] = [patchname]
1600 self.full_series[index:index] = [patchname]
1601 self.parse_series()
1601 self.parse_series()
1602 self.ui.warn("adding %s to series file\n" % patchname)
1602 self.ui.warn(_("adding %s to series file\n") % patchname)
1603 i += 1
1603 i += 1
1604 added.append(patchname)
1604 added.append(patchname)
1605 patchname = None
1605 patchname = None
@@ -1783,7 +1783,7 b' def top(ui, repo, **opts):'
1783 return q.qseries(repo, start=t-1, length=1, status='A',
1783 return q.qseries(repo, start=t-1, length=1, status='A',
1784 summary=opts.get('summary'))
1784 summary=opts.get('summary'))
1785 else:
1785 else:
1786 ui.write("No patches applied\n")
1786 ui.write(_("No patches applied\n"))
1787 return 1
1787 return 1
1788
1788
1789 def next(ui, repo, **opts):
1789 def next(ui, repo, **opts):
@@ -1791,7 +1791,7 b' def next(ui, repo, **opts):'
1791 q = repo.mq
1791 q = repo.mq
1792 end = q.series_end()
1792 end = q.series_end()
1793 if end == len(q.series):
1793 if end == len(q.series):
1794 ui.write("All patches applied\n")
1794 ui.write(_("All patches applied\n"))
1795 return 1
1795 return 1
1796 return q.qseries(repo, start=end, length=1, summary=opts.get('summary'))
1796 return q.qseries(repo, start=end, length=1, summary=opts.get('summary'))
1797
1797
@@ -1800,10 +1800,10 b' def prev(ui, repo, **opts):'
1800 q = repo.mq
1800 q = repo.mq
1801 l = len(q.applied)
1801 l = len(q.applied)
1802 if l == 1:
1802 if l == 1:
1803 ui.write("Only one patch applied\n")
1803 ui.write(_("Only one patch applied\n"))
1804 return 1
1804 return 1
1805 if not l:
1805 if not l:
1806 ui.write("No patches applied\n")
1806 ui.write(_("No patches applied\n"))
1807 return 1
1807 return 1
1808 return q.qseries(repo, start=l-2, length=1, status='A',
1808 return q.qseries(repo, start=l-2, length=1, status='A',
1809 summary=opts.get('summary'))
1809 summary=opts.get('summary'))
General Comments 0
You need to be logged in to leave comments. Login now