mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-18 04:25:10 +01:00
Make it clear when reverting that the checkpoint is no longer necessarily what it originally was
This commit is contained in:
parent
99308e0f86
commit
40621fe116
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ def data(self, index, role=Qt.DisplayRole):
|
|||
def label_for_row(self, row):
|
||||
msg = self.states[row].message
|
||||
if self.pos == row:
|
||||
msg = _('Current state') if not msg else _('%s [Current]') % msg
|
||||
msg = _('Current state') + ('' if not msg else _(' [was %s]') % msg)
|
||||
elif not msg:
|
||||
msg = _('[Unnamed state]')
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue