Source List nomenclature: Whole files get imported to the SOURCE list.
authorBen Loftis <ben@harrisonconsoles.com>
Tue, 10 Dec 2019 20:10:11 +0000 (14:10 -0600)
committerBen Loftis <ben@harrisonconsoles.com>
Tue, 10 Dec 2019 20:10:32 +0000 (14:10 -0600)
gtk2_ardour/sfdb_ui.cc

index 4b35bde51a03756de3983c443c1cbdf67d53a756..940e7dd0350d830885e3164331d3e334a2029cca 100644 (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");
        }