mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
fix edit %s i18n
This commit is contained in:
parent
1fa5d85ebc
commit
56d41cc8dc
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class AddCards(QDialog):
|
|||
def onHistory(self):
|
||||
m = QMenu(self)
|
||||
for nid, txt in self.history:
|
||||
a = m.addAction(_("Edit %s" % txt))
|
||||
a = m.addAction(_("Edit %s") % txt)
|
||||
a.connect(a, SIGNAL("triggered()"),
|
||||
lambda nid=nid: self.editHistory(nid))
|
||||
m.exec_(self.historyButton.mapToGlobal(QPoint(0,0)))
|
||||
|
|
Loading…
Reference in a new issue