mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Use "importing-added" string in importing detail table (#3104)
Supplement to the task of commit 184ad80
(Clone "added" string for importing)
This commit is contained in:
parent
15506328e9
commit
ddccfb805f
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ class Anki2Importer(Importer):
|
||||||
self._logNoteRow(self.dst.tr.importing_updated(), row)
|
self._logNoteRow(self.dst.tr.importing_updated(), row)
|
||||||
if add:
|
if add:
|
||||||
for row in add:
|
for row in add:
|
||||||
self._logNoteRow(self.dst.tr.adding_added(), row)
|
self._logNoteRow(self.dst.tr.importing_added(), row)
|
||||||
if dupesIdentical:
|
if dupesIdentical:
|
||||||
for row in dupesIdentical:
|
for row in dupesIdentical:
|
||||||
self._logNoteRow(self.dst.tr.importing_identical(), row)
|
self._logNoteRow(self.dst.tr.importing_identical(), row)
|
||||||
|
|
Loading…
Reference in a new issue