Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py

changeset 5579
2afb925a84e6
parent 5389
9b1c800daff3
child 5587
ea526b78ee6c
equal deleted inserted replaced
5575:835f789ded71 5579:2afb925a84e6
426 if infoDict["remote"] == (0, 0, 0, 0): 426 if infoDict["remote"] == (0, 0, 0, 0):
427 rinfo = self.tr("synched") 427 rinfo = self.tr("synched")
428 else: 428 else:
429 li = [] 429 li = []
430 if infoDict["remote"][0]: 430 if infoDict["remote"][0]:
431 li.append(self.tr("1 or more incoming")) 431 li.append(self.tr("1 or more incoming changesets"))
432 if infoDict["remote"][1]: 432 if infoDict["remote"][1]:
433 li.append(self.tr("{0} outgoing") 433 li.append(self.tr("%n outgoing changeset(s)", "",
434 .format(infoDict["remote"][1])) 434 infoDict["remote"][1]))
435 if infoDict["remote"][2]: 435 if infoDict["remote"][2]:
436 li.append(self.tr("%n incoming bookmark(s)", "", 436 li.append(self.tr("%n incoming bookmark(s)", "",
437 infoDict["remote"][2])) 437 infoDict["remote"][2]))
438 if infoDict["remote"][3]: 438 if infoDict["remote"][3]:
439 li.append(self.tr("%n outgoing bookmark(s)", "", 439 li.append(self.tr("%n outgoing bookmark(s)", "",

eric ide

mercurial