mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
fix i18n of dupes string
This commit is contained in:
parent
580ea4fc0c
commit
d495a66811
1 changed files with 2 additions and 2 deletions
|
@ -1161,8 +1161,8 @@ update cards set usn=?, mod=?, did=? where odid=0 and id in """ + ids2str(
|
|||
self.mw.progress.start()
|
||||
res = self.mw.col.findDupes(fname, search)
|
||||
t = "<html><body>"
|
||||
t += _("Found %d duplicates in %d notes.") % (
|
||||
sum(len(r[1]) for r in res), len(res))
|
||||
t += _("Found %(a)d duplicates in %(b)d notes.") % dict(
|
||||
a=sum(len(r[1]) for r in res), b=len(res))
|
||||
t += "<p><ol>"
|
||||
for val, nids in res:
|
||||
t += '<li><a href="%s">%s</a>: %s</a>' % (
|
||||
|
|
Loading…
Reference in a new issue