diff --git a/anki/importing/__init__.py b/anki/importing/__init__.py index eb61cfd96..3e13f967f 100644 --- a/anki/importing/__init__.py +++ b/anki/importing/__init__.py @@ -260,7 +260,7 @@ from anki.importing.wcu import WCUImporter Importers = ( (_("Text separated by tabs or semicolons (*)"), TextImporter), - (_("Anki 1.0 deck (*.anki)"), Anki10Importer), - (_("Mnemosyne 1.x deck (*.mem)"), Mnemosyne10Importer), - (_("CueCard deck (*.wcu)"), WCUImporter), + (_("Anki Deck (*.anki)"), Anki10Importer), + (_("Mnemosyne Deck (*.mem)"), Mnemosyne10Importer), + (_("CueCard Deck (*.wcu)"), WCUImporter), )