Source List nomenclature: Whole files get imported to the SOURCE list.

This commit is contained in:
Ben Loftis 2019-12-10 14:10:11 -06:00
parent 963f2a470a
commit 50d118f8b1
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ string2importmode (string const & str)
return ImportAsTrack;
} else if (str == _("to selected tracks")) {
return ImportToTrack;
} else if (str == _("to region list")) {
} else if (str == _("to source list")) {
return ImportAsRegion;
} else if (str == _("as new tape tracks")) {
return ImportAsTapeTrack;
@ -142,7 +142,7 @@ importmode2string (ImportMode mode)
case ImportToTrack:
return _("to selected tracks");
case ImportAsRegion:
return _("to region list");
return _("to source list");
case ImportAsTapeTrack:
return _("as new tape tracks");
}